teach yourself to code

I believe everyone can and should learn how to program.

 Right now, educational institutions conflate programming with computer science, which scares off the math-shy like me. At the same time, frameworks like Ruby-on-Rails have made web development so accessible that most anyone who can follow instructions can build a simple app. I want more people recognize programming as a tool for whatever else they want to pursue, and maybe even end up loving it a little... 

 

Retina.js | Retina graphics for your website

When your users load a page, retina.js checks each image on the page to see if there is a high-resolution version of that image on your server. If a high-resolution variant exists, the script will swap in that image in-place.

The script assumes you use Apple's prescribed high-resolution modifier (@2x) to denote high-resolution image variants on your server.

For example, if you have an image on your page that looks like this:
<img src="/images/my_image.png" />

The script will check your server to see if an alternative image exists at this path:
"/images/my_image@2x.png"

 

The Current State of HTML5 Forms

HTML5 is the newest specification for HTML, the language that web browsers read to display web pages. HTML5 has many new features intended to make creating websites easier and people's experience in using those websites better. Among those features are many enhancements to web forms.

Since HTML5 is fairly new and not all the details have been worked out yet, not all web browsers support HTML5 features the same way. This page is intended to explore those new new features and help you understand which browsers are supporting which features and to what degree. As a whole, this represents the current state of HTML5 forms.