O’Reilly Velocity Conference is Coming!

I wanted to give everyone a quick reminder that O'Reilly's Velocity Conference is coming up from June 24-26 in Santa Clara, CA. Velocity conference gets me super excited because it's the conference that focuses on front-end performance, not simply front-end techniques. Too often we're so happy when our widget, site, or app works that we don't take the time to stop, analyze performance, and adjust.
Velocity Conference addresses mobile and desktop performance, CSS performance, JavaScript performance, and network performance. Top speakers like Laura Swanson of Etsy, Stoyan Stefanov of Facebook, Pamela Fox of Khan Academy, and several other performance speakers will be sharing their knowledge and insight.
Discount Code: AFF20
Due to the big response of my first post, O'Reilly has provided me another discount code of AFF20 to get you 20% off the conference cost. Hang on to that cash for drinks, dinner, and networking. Or sweeten the pot for your employer by letting them know you're saving 20%. Either way, enjoy the discount code!
![9 Mind-Blowing WebGL Demos]()
As much as developers now loathe Flash, we're still playing a bit of catch up to natively duplicate the animation capabilities that Adobe's old technology provided us. Of course we have canvas, an awesome technology, one which I highlighted 9 mind-blowing demos. Another technology available...
![JavaScript Promise API]()
While synchronous code is easier to follow and debug, async is generally better for performance and flexibility. Why "hold up the show" when you can trigger numerous requests at once and then handle them when each is ready? Promises are becoming a big part of the JavaScript world...
![Elegant Overflow with CSS Ellipsis]()
Overflow with text is always a big issue, especially in a programmatic environment. There's always only so much space but variable content to add into that space. I was recently working on a table for displaying user information and noticed that longer strings were...
![Duplicate the jQuery Homepage Tooltips Using MooTools]()
The jQuery homepage has a pretty suave tooltip-like effect as seen below:
Here's how to accomplish this same effect using MooTools.
The XHTML
The above XHTML was taken directly from the jQuery homepage -- no changes.
The CSS
The above CSS has been slightly modified to match the CSS rules already...