Sam Umbach
Sam Umbach
Related: I added the following at the top of `Makefile` to get the build to work without modifying specifying `PATH` on the command line: ``` SHELL:=/bin/bash PATH:=node_modules/.bin:$(PATH) ```
:+1: @jmorcar `readarray` (aka, `mapfile`) was added in Bash 4, so I would present this as an alternative to traditional `read` tricks when Bourne sh or POSIX compatibility isn't a...
Nice catch, @matthewcurry 😃 I support this 💯 . We might want to swap the order of ``` `` ``` and `$()` in the prose and sample code block, too,...
Good eyes, @vtronko 👀 🦅 💯
@bucaran Yes, definitely :confounded: The _idea_ of IFS and word-splitting isn't too complicated or difficult to understand, but the particulars are very tricky. I opened this issue to try to...
Makes sense to me @inlikealion. If that is the case, I think this would be easier to understand with the "room" analogy: ``` In your base stylesheet: /** * Extend...
See also #426 #422 #334 #187 #311 #335
Thanks for the quick reply, @ptaoussanis ! I thought of another potential case (changing the var root binding), so I want to add a test case for this and then...
@trptcolin Is this the same issue described on the mailing list in May 2013? [Bug in reader or repl? reading keyword :#abc](https://groups.google.com/forum/#!topic/clojure/lK7juHxsPCc)
I doubt there's any security concern here, as anyone who could inject a `CLJ_WATSON_SOME_OTHER_PROPERTY=...` env var into a process could presumably inject a `-Dsome.other.property=...` JVM argument instead. There _might_ be...