Michael Ensly

Results 8 comments of Michael Ensly

I actually really like the idea of requiring a pull request and suggest keeping it as is. The letter is from the tech community, not the general public, and being...

@rany2 The `--alias` argument only changes the name of the alias to type in, not the script that alias is calling. Take a look at `TF_CMD` in your example. This...

This PR is intended only to document how the current product can be installed and used in a corporate environment, I like the idea of that option you spoke of...

`~> cat ~/.config/thefuck/rules/cowsay-figlet.py` ```python def match(command): piped_commands = command.script.split('|') index_figlet = next((i for i,x in enumerate(piped_commands) if x.strip().startswith('figlet')), None) index_cowsay = next((i for i,x in enumerate(piped_commands) if x.strip().startswith('cowsay')), None) return...

Unlikely to be soon as I've fixed it for our use-case, but once I get some free time or open-source contribution time at work, this is the top of my...

This workaround also worked for me, which is enough to unblock my work using this library, but I think it is still a bug in Locksmith. Will submit a PR...

One workaround for this is to target the tag on Github. Replace ``` pod 'RxRealm', "~> 5.0.6" ``` with: ``` # FIXME https://github.com/RxSwiftCommunity/RxRealm/issues/201 pod 'RxRealm', :git => 'https://github.com/RxSwiftCommunity/RxRealm.git', :tag =>...

Conversely, I really liked this tutorial because I was trying to learn Angular at the same time. For the solution to the particular problem you encountered, see issue #15 which...