Felix Gilcher

Results 27 comments of Felix Gilcher

This https://serverfault.com/questions/45439/what-is-the-maximum-length-of-a-wifi-access-points-ssid#45509 indicates that the standard limits WI-FI SSIDs to 32 characters.

You can hack around this by checking out the gem in another place and then use a path dependency or just build the gem and install it from there. Another...

This repo seems unmaintained. However, you are mistaken: Loading YAML without extra Ruby-specific processing is best practice for _untrusted_ data, for example for input from clients. Your own config files...

I do have a use-case: I have a set of documents in a database where individual users may have read permissions to single documents. Now I want to retrieve a...

I can take a stab at this on monday. Need to set up a dev environment anyways. It's possible to run multiple processes in a single container by using a...

db:seed should work against a remote database, however, the current way it's laid out in the Dockerfile won't work for two reasons: - The database that is added to the...

I'll just grab that if you don't mind

It's possible to run run the db:create command on remote machines by overwriting local_database? in active_record. However, there's a bit of a problem since I'm uncertain that docker/docker-compose always assigns...

we also have some broken migration that tries to create a primary key with a null component.

Ok, I sort of have this working, but it needs major tweaking. First of all it makes little sense to use ADD to add the application to the container. That...