Hacker School
Hacker School is a three-month, full-time school in New York for becoming a better programmer. We're free as in beer, and provide space, a little structure, time to focus, and a friendly community…

Hacker School
Hacker School is a three-month, full-time school in New York for becoming a better programmer. We're free as in beer, and provide space, a little structure, time to focus, and a friendly community…

Google Chrome Blog: All your tabs, accessible everywhere
Imagine you've looked up directions to a cool new restaurant on your home computer. Later, when you're leaving work, you realize you can't quite remember how to get there. If only you coul…

CSS: Specificity Wars | And all that Malarkey
Stuff and Nonsense. Malarkey is Andy Clarke, a UK based designer, author and speaker who has a passion for design, CSS and web accessibility. Andy has been working on the web for almost ten years. He …

Pure CSS GUI icons (experimental) – Nicolas Gallagher
An experiment that uses pseudo-elements to create 84 simple GUI icons using CSS and semantic HTML. Shared as an exercise in creative problem solving and working within constraints. This is not a “prod…
This is probably the best regular expression development tool I& ever used. It basically allows you to build your regex on the fly without having to guess.
This is probably the best regular expression development tool I've ever used. It basically allows you to build your regex on the fly without having to guess.
#devRegex Tester – RegexPal
Any character except newline. \. A period (and so on for \* , \( , \\ , etc.) ^, The start of the string. $, The end of the string. \d , \w , \s, A digit, word character [A-Za-z0-9_] , or whitespace. …
CSS3 Transition
Free HTML XHTML CSS JavaScript jQuery XML DOM XSL XSLT RSS AJAX ASP .NET PHP SQL tutorials, references, examples for web building.
Introducing Amazon Silk
Today in New York, Amazon introduced Silk, an all-new web browser powered by Amazon Web Services (AWS) and available exclusively on the just announced Kindle Fire. You might be asking, “A brow…
LukeW | Mobile First
LukeW Ideation + Design provides resources for mobile and Web product design and strategy including presentations, workshops, articles, books and more on usability, interaction design and visual desig…

If you’ve every struggled with getting Facebook like or share buttons to view exactly the content your site has, this is the page for you.This is Facebook’s debugger tool. It allows you to see exactly what Facebook’s page scraper sees. It also tells you what it’s using for all parts of the data share and lots of advice.This is probably the most valuable tool I’ve used for Facebook sharing.Enjoy.
One of the nicest things about working with WordPress is the power of its API. When creating themes and/or plugins, the platform makes it incredibly easy to serialize and retrieve data. In fact, the API abstracts many of the common challenges of working with data such as data sanitization and efficiently retrieving data on request. Throughout the next two post, well take a look at the Transients API, why it matters, how to use it, and take a look at a practical implementation that we can use in future projects.Generally speaking, all of the above is accomplished with the WordPress Options API which is great for saving, updating, and reading options, but if youre working with a large set of data the Options API may not be providing the most optimal performance possible. Specifically, you may be able to improve the overall performance of your work (and its extensibility with other software) if you were to take advantage of the Transients API.
Source: http://wp.tutsplus.com/tutorials/getting-started-with-the-wordpress-transients-api-part-1/