Nathan Broadbent
Nathan Broadbent
Related: #42 This change ensures that all exceptions are reported, even if they don't include any state. In my own app, I'm also going to add some logic that removes...
Hello, I've been using dentaku for a few years, and it's been really great! Thanks for all your work on it! I just ran into a crash where I need...
I've been spending some time fixing up the [react-native-blur](https://github.com/react-native-community/react-native-blur) library, which is not great on Android. The docs need some updates, but right now their suggested usage works on iOS,...
Hello, I upgraded sassc to 2.2.1, and my production Rails app is now crashing when I visit my ActiveAdmin dashboard. Here are the crash logs from my server: https://gist.github.com/ndbroadbent/3d0f78235dc9056ca9eb9464d53b4a9c ```...
Hello, this is for Redis version `4.1.3`. I am trying to make sure that my application never crashes during a primary failover on Elasticache. I added this to my Redis...
Ran into a super weird issue that took a little while to figure out. If you open `~/Library/Preferences/convox/racks` in Finder on a Mac, it will create a `.DS_Store` file inside...
We have also been maintaining a set of capistrano recipes for our organisation, and I think it would be great to join forces. We can provide the other half of...
Before: ```ruby return if flash[:notice].is_a?(Array) || ( flash[:notice].present? && ( flash[:notice][/foo/] || flash[:notice][/bar/] ) ) ``` After: ```ruby return if flash[:notice].is_a?(Array) || (flash[:notice].present? && (flash[:notice][/foo/] || flash[:notice][/bar/])) ``` (I replaced...
Instead of issuing multiple certificates for each subdomain, it would be useful if we could create a single certificate that includes multiple subdomains. Not sure about the best way to...
I just saw that the generators and migrations are for ActiveRecord. My client is using MongoDB, so I'm going to have to add support for the `mongoid` gem. Fortunately you...