George Brocklehurst

Results 10 comments of George Brocklehurst

I'm still active, but I've moved on from 1Password to [pass(1)][1], which is natively a CLI, built on open tech (like PGP and Git), and generally more useful to me...

Thanks for the pull request. Is there any chance you could duplicate this problem in the test suite? There's a test vault you could add a similar kind of password...

Choosy is my app. The low-level mechanism for how Choosy sends URLs to applications is an Apple Event, but from the receiving app's perspective you don't need to worry too...

I've had some success with adding `ENV["RUBY_DEBUG_ENABLE"] = "0"` to my `prerequire` file to prevent the `debug` gem from executing. This environment variable means that even if the `debug` gem...

Another situation I've run into where this kind of thing could be useful: ``` ruby do_something(T.must(an_array.first)) if an_array.any? ```

This also seems to effect strike-through (which is very important for [bad jokes in Constable posts][1]). When previewing an announcement, `~single tildes~` render as strike-through. After an announcement has been...

@paulcsmith Thanks for the directions! I was able to successfully create announcements on staging, first using curl, and then using https://github.com/thoughtbot/srs-bsns/pull/25

I've not been able to get this working yet. I'm not sure if it's because of the changes in the newest version of Spotify or because of the changes in...

The method is on a `Repo` class: having `Repo.comments` return issue comments and `Repo.repo_comments` return repo comments seems very confusing to me.

[Sorbet playground reproduction](https://sorbet.run/?arg=--enable-experimental-requires-ancestor#%23%20typed%3A%20true%0Aextend%20T%3A%3ASig%0A%0Amodule%20Mixin%0A%20%20extend%20T%3A%3AHelpers%0A%20%20requires_ancestor%20%7B%20Object%20%7D%0A%0A%20%20module%20ClassMethods%0A%20%20%20%20def%20my_class_method%3B%20end%0A%20%20end%0A%20%20mixes_in_class_methods%28ClassMethods%29%0A%0A%20%20def%20mixin_instance_method%0A%20%20%20%20self.class.my_class_method%0A%20%20end%0Aend%0A%0Aclass%20SomeClass%0A%20%20include%20Mixin%0A%0A%20%20def%20class_instance_method%0A%20%20%20%20self.class.my_class_method%0A%20%20end%0Aend)