This gist's comment stream is a collection of webdev apps for OS X. Feel free to add links to apps you like, just make sure you add some context to what it does — either from the creator's website or your own thoughts.
— Erik
#!/bin/bash | |
# Based on Nathan de Vries' findings http://goo.gl/jbtzX | |
MSPID=$(ps x | grep "MobileSafari" | grep -v grep | awk '{ print $1 }') | |
if [ -z "$MSPID" ]; then | |
echo "Run \"Mobile Safari.app\" in the Simulater to enable remove debugging." | |
exit 1 | |
fi |
(function(){ | |
var event_names = { | |
"click" : "" , | |
"tweet" : "", | |
"retweet" : "source_tweet_id", | |
"follow" : "screen_name", | |
"favorite" : "tweet_id" | |
}; | |
for(var event_name in event_names) |
i386 : iPhone Simulator | |
x86_64 : iPhone Simulator | |
arm64 : iPhone Simulator | |
iPhone1,1 : iPhone | |
iPhone1,2 : iPhone 3G | |
iPhone2,1 : iPhone 3GS | |
iPhone3,1 : iPhone 4 | |
iPhone3,2 : iPhone 4 GSM Rev A | |
iPhone3,3 : iPhone 4 CDMA | |
iPhone4,1 : iPhone 4S |
/* | |
* Main CSS by Joshua Pekera | |
*/ | |
/* Table of Content | |
================================================== | |
:: Global Site Styles | |
:: Header & Global Nav | |
:: Side Nav | |
:: Content Containers & Grids |
license: gpl-3.0 |
/* !START Responsive Queries*/ | |
// ----------------------------------------------------------------------------------------------------- | |
/* !Mobile Default - Landscape phone to portrait tablet */ | |
// ------------------------------------------------------ | |
@media (max-width: 767px) { | |
/* Styles */ | |
}// Close Query | |
/* !Mobile - Landscape Specific */ |
/* Typekit delayed loading of Ansyc Fonts */ | |
.wf-loading h1, .wf-loading h2, .wf-loading h3, .wf-loading p, .wf-loading a { visibility: hidden; } | |
/* Font-Face */ | |
@font-face { | |
font-family: @sansFontFamily; | |
src: url(../fonts/proxima-nova/proximanova-regular-webfont.eot?1307578394); | |
src: url('../fonts/proxima-nova/proximanova-regular-webfont.eot?iefix') format('eot'),url(../fonts/proxima-nova/proximanova-regular-webfont.woff?1307578394) format('woff'),url(../fonts/proxima-nova/proximanova-regular-webfont.ttf?1307578394) format('truetype'),url('../fonts/proxima-nova/proximanova-regular-webfont.svg#webfont2rpW2ohz') format('svg') | |
} |