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.
Dec 29th
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...
Dec 28th
12 notes
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...
Dec 12th
19 notes
Acquired →
Dec 7th
Creating an API →
Dec 2nd
1 note