webdu 2012: web developer conference

Show all feed information | Ping Blog Update

Rubik's Cube Analogies in IT Development World 4 days ago

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 …

Graceful Migration From ES3 to ES5 last month

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

On Obtrusive Polyfills 2 months ago

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 2 months ago

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 2 months ago

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 2 months ago

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 …

JavaScript Test Framewors: more than 30 + 1 2 months ago

After @szafranek hint and suggestion, wru landed almost at the end of this Wikipedia List of unit testing frameworks page. If you use this tweet size hand made imperfect script in the wikipedia page console: …

If You Don't Get It, Go And Get It! 2 months ago

Oh well, a rant against another one ... how lovely is this? Just trying to make your week end, right? I am talking about this misleading post with indeed 29530+ views and just 1 Favorited entry (right now) that must be the post author itself since I can't even check and click that red link ... …

Berlin JS - RegExp Slides 3 months ago

Here they are ! (published live)

JSON.stringify Recursion + Max Execution Stack Exceeded 3 months ago

I believe this is a common problem, and we had a similar one today while debugging. JSON methods do not support recursion ... which is the only thing I am really missing back to PHP serialize days. Recursion Is Bad Well, I would say cyclic references are never that good but sometimes these may …

Andrea Giammarchi

Full Stack Web.Next Developer Senior SW Engineer at NOKIA http://webreflection.blogspot.com/

@evilhackerdude something like this, maybe less obtrusive? https://t.co/Mxj2eNCT does the trick through some@WebReflection

Berlin