Single Serving Site taking you to other, useless (but fun!) Single Serving Sites. The Useless Web →
Ratchet — Prototype iPhone apps with simple HTML, CSS and JS components.
Disappearing Romney
Why Doesn’t MTV Play Music Videos Anymore?
Blame the Implementation, Not the Technique
Twitter Cards
Twitter cards make it possible for you to attach media experiences to Tweets that link to your content. Simply add a few lines of HTML to your webpages, and users who Tweet links to your content will have a “card” added to the Tweet that’s visible to all of their followers. Example Code: <meta name="twitter:card" …
Working at a startup
BigScreen — Using the JavaScript Full Screen API
BigScreen makes it easy to use full screen on your site or in your app. It smoothes out browser inconsistencies and bugs, especially if the element you’re working with is inside of an <iframe>. It will also intelligently fall back to the older video full screen API if the element contains a <video> and the …
Continue reading “BigScreen — Using the JavaScript Full Screen API”
Zero-config development with Apache’s VirtualDocumentRoot and xip.io
# Use name-based virtual hosting. NameVirtualHost *:80 UseCanonicalName Off # ~/Sites/ vhost configuration – sends foo.bar.dev to ~/Sites/bar/foo <VirtualHost *:80> VirtualDocumentRoot /Users/dave/Sites/%2/%1 <Directory "/Users/dave/Sites"> Options Indexes FollowSymLinks MultiViews AllowOverride All Order allow,deny Allow from all </Directory> </VirtualHost> What that VirtualDocumentRoot does is map the above company and project to the %2 and %1 variables, respectively. …
Continue reading “Zero-config development with Apache’s VirtualDocumentRoot and xip.io”