Fullasagoog

Show all feed information | Ping Blog Update

Breaking Array Extras 3 months ago

Every now and then somebody comes out with this problem: How do I stop an iteration such forEach() ? Well, there are at least a couple of ways to do that ... Dropping The Length The first tacky way to stop executing a function is to drop the length of the array. Every extra receives the initial …

An In House, Yep Nope Like, JS Loader 3 months ago

Two days ago I've submitted a JavaScript loader to 140byt.es since this loader, once minified, fits into 136 bytes . The reason the entry is 140 in the site is that I've left on purpose /**/ to easily spot where you should put JS files to load. And That's Not It Once we have an Array, we have …

My Personal Github Flow 3 months ago

I've created many repositories in my programming history, starting from the good old Google Code , passing through Mercurial HG and svn, ending up using on daily basis the awesome Github . There is something I've spotted every time I've created a new repo, I needed a way to do always the same …

Jokes A Part ... 4 months ago

... is really that easy to start from the scratch or abandon everything, but that's not, by any meaning, an evolution, is rather a reboot. Unfortunately, written software cannot reboot that easily, and we all know that, except few exceptions where is really needed and we call that refactoring! …

JavaScript Modules, Maybe 4 months ago

So, you might know already, but ES guys are talking these days about modules and things, as usual, went out of control since everyone wants its own best module version, ever! Current Status Synchronous, asynchronous, AMD, require() ... apparently these are all right for some use case, but wrong …

JavaScript EventTarget 4 months ago

This is about the W3C EventTarget interface, something standard in the DOM side, but still confusing in the JavaScript one where EventEmitter in node.js, or many other kind of constructors, are simply simulating what has been there for years, and standardized across all browser engines. Now In …

Opera Mobile Is The Best Browser! 4 months ago

I really do not understand why the Web keeps ignoring this browser which is able to provide the best browsing experience out of old hardware too ! It's not me saying that, there are all test you might want to double check or try by yourself. Opera Mobile VS Chrome mobile, a browser available only …

The Difficult Road To Vine Via Web 4 months ago

One of the coolest and most rumored app of these days looked so fun, and conceptually simple, that I could not resist to challenge myself trying to reproduce it via HTML5 and all possible experimental things I know that are working these days for both desktop and mobile. Wine This is the name I …

Resurrecting The With Statement 4 months ago

You might think this must be a joke, well no , this is a lie behind "use strict"; directive. Roots Of The Hack // global "use strict"; function strict() { "use strict"; // top of the function return { withStrict: function(){ return this; // undefined }(), withoutStrict: Function("return this")() …

experimental.js 4 months ago

This is a tiny post about a tiny utility, something Modernizr like , but actually much simplified , like about 330 bytes minzipped. Of course the power is kinda limited, but for most common things such requestAnimationFrame or CSS transition it should be more than enough. Basic Example You can …