Drew Raines
Drew Raines
In this [example](http://tinyurl.com/hkp3buy) with hindent 5.1.0, my `Opts` builder gets auto-formatted into something that IMO is more confusing: ``` haskell opts :: Options.Parser Opts opts = Opts argument str (metavar...
I needed the ability to perform a copy-in-place for the purposes of updating metadata on an object. This is S3's sanctioned (and only) way to update, for example, x-amz-meta headers....
Given: ``` POST /_search {"query":{"match":{"f":1}}} ``` It'd be great if upon `C-c C-c`, it would transform into: ``` POST /_search { "query": { "match": { "f": 1 } } }...
I was using a config that included `www.facebook.com` and `www.google.com`, along with a us-east-1 elb dualstack hostname, and all of this expands to quite an IP list once you figure...
We have the unfortunate scenario where we need to use the Jenkins matrix builder along with some label expressions. Long story short, we end up with workspace directory names that...
Running `cljsh -l` in a leiningen project dir on my OS X system opens a new Terminal.app instance and shell, where I see this. Is it expecting an arg? No...