Randal Hanak's Blog
Wednesday, August 13, 2014
Parallel Javascript
›
ParallelJS started its life as River Trail, a JavaScript language extension for Firefox by Intel. River Trail provides a new constructor, P...
4 comments:
Tuesday, July 15, 2014
Reactive Manifesto
›
1. Event Driven via Asynchronous Communication In an event-driven application, the components interact with each other through the producti...
Friday, May 2, 2014
Improved Type Inference in C++11: auto, decltype, and the new function declaration syntax
›
int x = 3; decltype(x) y = x; // same thing as auto y = x; You can use decltype for pretty much any expression, including to express the t...
Tuesday, December 3, 2013
Structuring Single Page Applications
›
Knockout js, Require js, Templating 1. I came up with a custom solution to a problem we were having at my job. We needed to be able to add...
Tuesday, November 19, 2013
Infinite scroll performance with lots of elements
›
The problem when using infinite scroll with LOTS of elements is the browser gets bogged down. This guy eloquently gives a great explanatio...
Grid of elements with variable heights and a sorted order
›
Assumptions You have a grid of elements each with a fixed width and a variable height. Example. Images that have fixed width and a variable...
Thursday, October 17, 2013
Make your JQuery plugin loadable with Require.JS
›
A simple and easy way to make your JQuery plugin work in an AMD and NON-AMD context is the following snippet. See how it cleverly uses the ...
›
Home
View web version