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!
![CSS Animations Between Media Queries]()
CSS animations are right up there with sliced bread. CSS animations are efficient because they can be hardware accelerated, they require no JavaScript overhead, and they are composed of very little CSS code. Quite often we add CSS transforms to elements via CSS during...
![Creating Scrolling Parallax Effects with CSS]()
Introduction
For quite a long time now websites with the so called "parallax" effect have been really popular.
In case you have not heard of this effect, it basically includes different layers of images that are moving in different directions or with different speed. This leads to a...
![MooTools’ AutoCompleter Plugin]()
One of the famous MooTools plugins is Harald Kirschner's AutoCompleter plugin. AutoCompleter takes a term input by the user and searches for matches -- an obviously help to the user. Here's how to make the most of Harald's great plugin.
The XHTML
All we...
![CSS @supports]()
Feature detection via JavaScript is a client side best practice and for all the right reasons, but unfortunately that same functionality hasn't been available within CSS. What we end up doing is repeating the same properties multiple times with each browser prefix. Yuck. Another thing we...