Fullasagoog

Show all feed information | Ping Blog Update

Ranting About Racing Engines last year

This is happening right now, or better, since this race started a while ago between alternative browsers and the idea of bringing JavaScript every-bloody-where ... On Engines Fragmentations This happens since ever in vehicles engines and we can all see the difference in themes of both prices and …

Asynchronous Storage For All Browsers (+ node.js) last year

I have finally implemented and successfully tested the IndexedDB fallback for Firefox so that now every browser, old or new, should be able to use this interface borrowed from localStorage API but made asynchronous. Asynchronous Key/Value Pairs The main purpose of this asyncStorage API is to …
keywords api, async, asynchronous, bottleneck, browsers, consumption, fallback, firefox, interface, javascript, key value, localstorage, memory, node, null value, storage, stuff, value pairs, web application

Working With Queues last year

Programming with queues is basically what we do in any case: it does not matter if we write code in that way, we simply think in that way. This means that our logic flow is generally distributed in tasks where "on case X" we apply "logic/procedure Y" .. isn't it? The Good'ol GOTO The goto …
keywords asynchronous, document body, ecmascript, expressions, flexibility, javascript, latest versions, queue, queues, scope, scopes, segments, workflow

on "manifestcontentavailable" event last year

Even native apps have something like a preload when it comes to launch them ... and guess what happens during that time? Nothing that different from synchronizing content or looking for an update, isn't it? Same Could Be For Mobile Web Apps If you need your manifest to be loaded, in order to …

Rubik's Cube Analogies in IT Development World last year

Oh well, during my free time without laptop I came up with this talk about Rubik's Cube and Development process. I'll let you enjoy the video, hopefully ..., and leave comments here, if necessary. The big summary is: there's a lot to learn from the cube, so take this as a hint to learn how to …
keywords analogies, daily basis, free time, laptop, rubik s cube

Graceful Migration From ES3 to ES5 last year

Just slides I have showed today here @ nokia for a tech talk, hope you'll enjoy them, cheers

On Obtrusive Polyfills last year

I'll try to make the point short and simple, starting with the tl;dr version: if you create a polyfill and during features detection you realize this cannot work, drop it and let other libs deal with it. Broken Object.defineProperty This is just one case really annoying. Bear in mind I am not …

A Tweet Sized Queue System last year

The Code This is the 138 bytes version: function Queue(args, f) { setTimeout(args.next = function next() { return (f = args.shift()) ? !!f(args) || !0 : !1; }, 0); return args; } While this is the 96 one: function …

I Heard You Like To Write Less last year

I'm @qconlondon waiting for the next talk so I decided to take a couple of minutes to blog about this little experiment. In ES-Discuss developers are still talking about function keyword, if it's needed or not. I believe the fact CoffeeScript has no explicit function is one of the major reasons …

What's localStorage About last year

I've read even too many articles recently talking about storing anything you want in the localStorage ... and I believe this is wrong in so many levels. First of all, localStorage is not a database , 'cause if you consider it a database you should have considered a database do document.cookie …