Mike Thornton

Results 21 comments of Mike Thornton

An alternative to this, or addition, would be a way to paste a URL into the Zulip App. I get emails with Zulip App URLs. If I open them in...

5 instances are queued up so you can quickly play the same sound up to 5 times simultaneous. For example, a bullet sound from a machine gun.

Agreed it's a better defeat to have =. What about short ops with values? I've been thinking about how to do settings like telling clom which param format to use....

Curl doesn't like the `=`: ``` $ curl -iv --max-redirs=0 http://google.com curl: option --max-redirs=0: is unknown curl: try 'curl --help' or 'curl --manual' for more information $ curl -iv --max-redirs...

I guess we go with `with_settings` as it's less likely to clash with an actual command.

You could also forget the namespace. Ex: ``` >>> from clom import clom >>> clom.git.log.with_opts('-l', stat=22) 'git log -l --stat 22' >>> clom.git.log.with_optx('-l', stat=22) 'git log with_optx --stat 22 -l'...

tailer should work on any file-like-object. One of the reasons it was created was to work on sockets and StringIO because normal tail does not.

Stabilization of the API. Are all the common use cases handled? Example, we just added support for `|`. What about `(cmd1 & cmd2)` for `AND(cmd1, cmd2)` etc. I think the...

I'm using it quite a bit for a lot of fabric automation for deployment/builds/docker. The API has been complete for my use cases. I'll push out 0.8 and validate it...

I unfortunately can't use python 3.x much so I'd like validation that it works well there.