Posts written by:
Peter Schuck
Google Closure Guide: Compiling Without Errors
Get Google Closure compiling without any errors
Joyful Tech: GraphQL, Chrome Security, and Firebug
Check out these neat tech articles about browsers, machine learning, and mobile.
Using HdrHistogram with Ruby
Get more accurate performance profiling results with HdrHistogram
Programmatically accessing ClojureScripts Externs Inference
Prevent Google Closure from clobbering third party JavaScript libraries by using ClojureScript externs inference programmatically.
Parallelizing HTTP Requests in Clojure
We show how to use pmap and doall to parallelize HTTP requests in Clojure
Leveling up Clojure’s Hash Maps
We improved ClojureScript’s hash-map performance by 2x-100x
A tale of two selectors in HTML and CSS
A regex solution to escaping leading numeric CSS selectors in JavaScript.
Transducers: Clojure's Next Big Idea
<p>Recently Rich Hickey <a href="http://blog.cognitect.com/blog/2014/8/6/transducers-are-coming">announced</a> transducers for Clojure, the next big idea in Clojure after <a href="http://clojure.com/blog/2012/05/08/reducers-a-library-and-model-for-collection-processing.html">reducers</a>.</p> <p>In Clojure, we often work with <a href="http://clojure.org/data_structures#Data%20Structures-Collections">collections</a> in various types of <a href="http://clojure.org/sequences">sequences</a> (lazy or not), and <a href="http://clojure.com/blog/2013/06/28/clojure-core-async-channels.html">core.async channels</a>. The workhorse functions in Clojure...</p>