Jeremy Woertink
Jeremy Woertink
Looks like the indentation guides become bright orange as well. I would recommend maybe a faint gray color. 
It seems when passing in a Time object set to `at_end_of_day` as an arg, it somehow loses the precision and rolls in to the beginning of the next day. Here's...
Yeah... it's a weird edge case. Maybe related to https://github.com/LinusBorg/portal-vue/issues/289 ? Basically, I have this: ``` Create New Post ``` When I run my `yarn dev`, everything is great. When...
When you have a link to a compiled code example, like https://play.crystal-lang.org/#/r/157a, you can view the code when you use Chrome or Safari on OSX. When pasting this in to...
We have Redis on AWS in cluster mode, and it's been fine while using Cable-cr. However, we just tried to use this shard directly to store some data, and ran...
In Cable-cr we have this instance setup https://github.com/cable-cr/cable/blob/a8f7f3d9d8218078ab270720738dc33e0858775b/src/cable/server.cr#L35 it calls `subscribe` when the server is booted, and ran within a spawn https://github.com/cable-cr/cable/blob/a8f7f3d9d8218078ab270720738dc33e0858775b/src/cable/server.cr#L152-L154 If the redis server gets rebooted, then that...
I'm using the new Home app on iOS 10. When I have this plugin added in my `platforms` array in my config, the Home app won't connect to homebridge. If...
I find myself doing something like this a lot in my specs, and figured it might be a cool addition. ```crystal results = [1, 2, 3, 4] results.should contain(2) results.should...
## Purpose Fixes #1647 ## Description Error actions now have access to params instead of going through `context.params` ## Checklist * [x] - An issue already exists detailing the issue/or...
## Purpose Fixes #1698 ## Description This allows you to set your editor using an env var `ENV["EDITOR"]` when running exec. Now you can set it 3 different ways: ```...