Valve Handbook for New Employees

So you’ve gone through the interview process, you’ve signed the contracts, and you’re finally here at Valve. Congratulations, and welcome. Valve has an incredibly unique way of doing things that will make this the greatest professional experience of your life, but it can take some getting used to. This book was written by people who’ve …

Spotify Play Button

This should work: Too bad it opens up Spotify, instead of streaming the audio inline. But on the other hand, I can think of many reasons why that’s disabled. And way too cool that the embedded player actually follows along with progress meters and playing indicators as you progress listening a track and/change it in …

CSS :nth-letter()

Adobe is working on implementing :nth-letter() in Webkit: The desired syntax was :nth-letter(), where the argument would (ideally) take the same values that :nth-child() can (e.g, a simple index, even/odd, or an expression like 2n+4). This code: <p id=”sentence”>My fourth letter is awesome.</p> #sentence:nth-letter(3) { color: red; font-family: “Comic Sans MS”; font-size: 3em; font-weight: bold; …