Max Chernyak
Max Chernyak
Starting paperclip somewhere around 2.3.16, saving attachment with delayed_paperclip causes infinite saving loop as the model's `attachment_updated_at` attribute gets "touched" upon saving, and delayed_paperclip is recognizing that attachment has changed....
Sometimes I need to go a step further and not just see the history for a certain line, but also the diff of a commit in that history, to get...
After merging [python3 PR](https://github.com/sballin/alfred-search-notes-app/pull/16), looks like there are now 2 places where python2 reappeared: 1. [update.py](https://github.com/sballin/alfred-search-notes-app/blob/272ed164597e0954357ed1d2d1fbddf186f7e1f6/update.py#L1) 2. [info.plist](https://github.com/sballin/alfred-search-notes-app/blob/1c0f15af39ae7e6a70428c1dfaeaa58b07e0d382/info.plist#L767) This triggered the macOS "Software needs to be updated" dialog for me,...
_This worked in 3.2.1, and broke in 3.4.0._ Say I set user per-host likes this: ``` ruby # production stage server 'foo.example.org', user: 'deployer', roles: [:util] role :util_exec, 'foo.example.org', user:...
I have a task similar to this: ``` ruby namespace :provision do task :redis, roles: :redis do roundsman.run_list('recipe[redis::server]') end end ``` And roles like this ``` ruby role :web, 'web01'...
If a server doesn't need the app deployed on it, it doesn't mean I don't want to run chef on it. How come all tasks in roundsman are tagged with...
With today's release of 3062 the new sidebar icons have been added to ST3. They don't work well with the theme, the spinner goes on forever on start, and folders...
I have a model, say `Order`, and it `has_many` say `line_items`. Each line item has a `status` field. There are only 5 possible statuses, so I want to make a...
Thank you for a very useful plugin. ❤️ I believe ST4 has dark mode support at theme level. Is that right? 🤔 However, wouldn't it be much more powerful if...
Great lib, love how small and efficient it is. Would be great if it could produce immutable objects, either frozen by default, or with skipped attribute writers. Curious to hear...