React has managed to be successful at scale thanks to the fact that it makes finding the root cause of bugs easier through various mechanisms that I explain in this talk.
September 22, 2011 URLON: URL Object Notation (48)
#json, #urlon, #rison {
width: 100%;
font-size: 12px;
padding: 5px;
height: 18px;
color: #560061;
}
I am in the process of rewriting MMO-Champion Tables and I want a generic way to manage the hash part of the URL (#table__search_results_item=4%3A-slot). I no longer […]
October 8, 2011 Find HTMLEntity for any Character (13) I've always be annoyed when I want to use a character such as ยป in HTML as I struggle to find the corresponding HTML Entity. This is why I made this small utility. Just paste the sexy UTF-8 character you found and it will give you the associated HTML-ready code :)
Enter any weird […]
December 22, 2011 Javascript – One line global + export (10) I've been working on code that works on Browser, Web Workers and NodeJS. In order to export my module, I've been writing ugly code like this one:
(function () {
/* ... Code that defines MyModule ... */
var all;
if (typeof self !== 'undefined') {
all = self; // Web […]
November 15, 2014 React Architecture – OSCON (10) Learn about all the history of React and all the optimizations that happen behind the scene to make it fast by default.
October 8, 2011 Copy SQL Row Changing ID (10) I've come across an SQL issue. I need to make a fake spell for the WoW database. However creating one from scratch is too annoying, there are like 30 non-NULL values to fill. Instead what I want is to copy an existing spell with the new id. It appeared to be less trivial than […]