Anthony Liekens

Results 4 comments of Anthony Liekens

You shouldn't write `rails g scaffold Abuse scoop_id:integer, user_id:integer, cause_id:integer, content:text` but `rails g scaffold Abuse scoop_id:integer user_id:integer cause_id:integer content:text` (note the lack of commas)

Running Ruby 2.3.1 in rbenv, OpenSSL 0.9.8. Code runs fine while developed on a Mac, but I get the following "Actor crashed!" when running the same setup on a Debian...

+1 for having timezone support in `fromdate`, even if that means working with UTC (or the computer's locale) internally and as `todate` output timezone. Although dates aren't in the JSON...

Yay, I have figured out a way to correctly parse datetimes with timezones in `jq`, but it requires a bit of hacking. Here's how I can now parse my (Ruby's)...