O’Reilly Velocity Conference – Santa Clara Giveaway!

By  on  

O'Reilly Velocity Conference in Santa Clara is right around the bend:  June 20-23, 2016.  Velocity is boasting an awesome lineup of speakers covering several different topics.  Learn to build websites, apps, and services that are fast, scalable, resilient, and highly available!

Velocity 2016

Velocity is my favorite of the O'Reilly Conference series because speed optimization is fun, creative, and has huge payoff for users on desktop and mobile devices!

Bronze Pass Giveaway

My friends at O'Reilly are letting me give away one free Bronze Pass to Velocity Santa Clara.  Want to win?  In the comment section below, share your favorite performance tip.  Bonus points for code samples!

20% Off Discount

If you want to sign up today, you click here and use code PC20DWALSH!

Recent Features

  • By
    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...

  • By
    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...

Incredible Demos

  • By
    pointer Media Query

    As more devices emerge and differences in device interaction are implemented, the more important good CSS code will become.  In order to write good CSS, we need some indicator about device capabilities.  We've used CSS media queries thus far, with checks for max-width and pixel ratios.

  • By
    Camera and Video Control with HTML5

    Client-side APIs on mobile and desktop devices are quickly providing the same APIs.  Of course our mobile devices got access to some of these APIs first, but those APIs are slowly making their way to the desktop.  One of those APIs is the getUserMedia API...

Discussion

  1. Send Link preload headers for your CSS, JS, Fonts, and other assets so that the browser can get a head start on loading them. Bonus: If you use CloudFlare, or another CDN that supports it, the assets will be pushed via HTTP2 Server Push.

    Sample .htaccess code from my blog: https://gist.github.com/adamzr/0c4e14999263aa4854b91f9245e16de8

Wrap your code in <pre class="{language}"></pre> tags, link to a GitHub gist, JSFiddle fiddle, or CodePen pen to embed!