December 2011
5 posts
1 tag
internet collapsed for me
Hi everyone!
I have just thought about internet collapsing for me. Everyday I am reading only several blogs and sites like planetrubyonrails.com / tumblr / gmail / github and that’s it. I have no idea what I can find interesting in our days in internet. But it’s enough now.
3 tags
mutex js gist
var Mutex = function() { this.queues = []; this.locked = false;};Mutex.prototype = { push: function(callback) { var self = this; this.queues.push(callback); if (!this.locked) { this.locked = true; var f = this.queues.pop(); try { f(function() { self.locked = false; }); } catch(ex) { self.locked = false; } } }};
view raw...
5 tags
backbone js snippets
Hi, everyone.
Not far a long time ago I’ve started to work on one project where we was using backbone for creating offline website version. It means we have a goal to create possibility to delay our requests to the server and works without postbacks.
We took example with backbone localstorage from backbone docs...
Acquired →
Creating an API →