tomaskulich
tomaskulich
The following query is currently considered bad (no quotes around enum type): ``` { post( type: SPONSORED, name: "Why you should work more" ){id}} ```
searching opening '(' on the first line seems like a decent heuristics for the beginning of the form. ``` let topline = search('^(', 'bn') - 1 ``` The bottomline however...
According to: http://developer.xero.com/documentation/getting-started/http-requests-and-responses/#get-individual to download pdf invoice you have to: set 'Accept: application/pdf' header don't treat the response as xml :) I have to do this anyways, so if you're...
https://nodejs.org/api/domain.html Sadly, node domains are now deprecated so you probably shouldn't use them (nor you should use this middleware) :( To overcome this drawback I created coroutine-based library for writing...
I understand, it's beneficial (for the sake of accurateness) to run the measured function 10 times in a loop. But, why this is the value which is actually reported? Why...
Frustrated with how error handling and forced termination works with standard means for writing asynchronous code (Promises, js-csp, I'm not sure what approach does node-csp take), I created my own...
Not sure, if you want to merge this.. we did several modifications to the codebase, which you may not like - we removed some tests - we also removed some...
Some inspiration from Clojure community: http://blog.factual.com/using-clojure-to-generate-java-to-reimplement-clojure