Josh Nichols
Josh Nichols
I think it's still using vim for git commits, which is it's own problem: ``` Hint: Waiting for your editor to close the file... Error detected while processing /root/.vimrc: line...
https://www.intego.com/mac-security-blog/unlock-the-macos-docks-hidden-secrets-in-terminal/ ``` defaults write com.apple.dock static-only -bool true; killall Dock ```
- [keeping your mac clean](https://medium.com/@waxzce/keeping-macos-clean-this-is-my-osx-brew-update-cli-command-6c8f12dc1731) - [CleanMyMac](https://macpaw.com/cleanmymac) - periodically shutdown `brew services`
### :zap: Summary Sometimes there are failures coming from `git`, but the output isn't shown so it is very hard to start debugging. `LEFTHOOK_VERBOSE=1` can help, but I think it'd...
I wanted to test this in our app, but I saw some sorbet errors: ``` TypeError: T.let: Expected type OpenStruct, got type Hash with value {"..."=>"..."} Caller: some_ruby.rb:71 ``` The...
I was building a pinglish check, and wanted to include more application logic, but was worried about including it in `config/application.rb`. I figured out a way to include this in...
Trying to add pinglish to a Rails app, but there doesn't seem to be a 'preferred' way of adding. Methods I've seen: - in `config.ru`, like any Rack app -...
**Describe the bug** ~I've been using neovide via the homebrew HEAD recipe for awhile now. I've noticed when it's running, neovide doesn't have its icon, just whatever is the default...
After staying over for a few days, had some random comments. Security alarm went off when I was leaving at stupid-o-clock. Not sure if that can be automated around, or...
In #hubot, @arnaudmm was trying to use the`notice` method like: ``` coffeescript robot.hear /^!toto$/, (msg) -> robot.adapter.notice "#systest2", "tototo" ``` This didn't work because the first argument is an `envelope`...