found drama

get oblique

Tag Archives: promises

Remy Sharp: My five promise patterns

by !undefined

My five promise patterns:

Remy Sharp’s write-up of several patterns that have emerged from his usage of promises. By itself I feel like this one winds up reading a lot like a few other Promise-related posts that I’ve seen (and/or like an inverse of this anti-patterns post) — but his discussion around throw vs. reject is worth the price of admission.

Linkdump for April 6th

by Rob Friesel

JDK8 + Facebook React: Rendering single page apps on the server August Lilleaas takes a look at using Java 8's Nashorn JavaScript engine to do some server-side rendering tricks with React components. (Bonus points for using Clojure, August…) While there are literally an infinite number of ways to solve some of the problems he's talking […]

Linkdump for March 5th

by Rob Friesel

Debugging JavaScript in a Hostile Environment E.J. Dyksen, writing at Mutually Human. It's an interesting story of how they handled the debugging for this particular environment (WebBrowser Control in a VB app), even if the solution itself is not especially novel. The one surprise (to me) was that the Angular $log service was not mentioned. […]

Linkdump for July 8th

by Rob Friesel

Five Patterns to Help You Tame Asynchronous JavaScript Decent post by Jim Coward (writing for the Tech.pro blog) covering callbacks, the observer pattern, messaging, promises, and finite state machines — all as approaches to dealing with your async JavaScript. It's a decent read and is a fairly comprehensive survey. There is some nit-picking that can […]

Linkdump for June 18th

by Rob Friesel

Pre-generating Justified Views Ross Harmes on how the Flickr team achieved a 7× speed increase in page render times: The first time you come to any Flickr page, we store the width of your browser window in a cookie. We can then read that cookie on the server on subsequent page loads. Gotta love a […]

Linkdump for March 31st

by Rob Friesel

Broken Promises Drew Crawford’s response to James Coglan's post about Node.js and Promises. (And yes, it has the same title as Mikeal Rogers' post — vide infra…) Also long, also worth reading. His promises : callbacks :: for-loops : while-loops analogy may or may not be completely appropriate, but I thought it was reasonably illustrative […]