Skip to content

Instantly share code, notes, and snippets.

View shrunyan's full-sized avatar

Stuart Runyan shrunyan

View GitHub Profile
@shrunyan
shrunyan / iphone-splash-screen.html
Last active December 19, 2015 12:28 — forked from burin/gist:3840737
Adds a splash screen to an iPhone web app.
<!-- standard viewport tag to set the viewport to the device's width
, Android 2.3 devices need this so 100% width works properly and
doesn't allow children to blow up the viewport width-->
<meta name="viewport" id="vp" content="initial-scale=1.0,user-scalable=no,maximum-scale=1,width=device-width" />
<!-- width=device-width causes the iPhone 5 to letterbox the app, so
we want to exclude it for iPhone 5 to allow full screen apps -->
<meta name="viewport" id="vp" content="initial-scale=1.0,user-scalable=no,maximum-scale=1" media="(device-height: 568px)" />
<!-- provide the splash screens for iPhone 5 and previous -->
<link href="assets/splashs/splash_1096.png" rel="apple-touch-startup-image" media="(device-height: 568px)">
<link href="assets/splashs/splash_iphone_2x.png" rel="apple-touch-startup-image" sizes="640x960" media="(device-height: 480px)">
@shrunyan
shrunyan / gist:5860985
Created June 25, 2013 18:25
Wordpress: Load different header based on the page your looking at. @source http://pastie.org/private/lnkpqeh4eyaguhdxn51w
<?php
// Header.php - Load individual header files based on view
if ( is_home() ) {
include(TEMPLATEPATH.'/header-index.php');
}
else if ( is_single() ) {
@shrunyan
shrunyan / fartscroll.js
Last active December 17, 2015 07:08
Dynamically insert fartscroll while your co-worker is away from their desk. Insert line 1 into a users console, followed up by line 2.
var script = document.createElement( 'script' ); script.type = 'text/javascript'; script.src = 'http://code.onion.com/fartscroll.js'; document.getElementsByTagName('body')[0].appendChild( script );
fartscroll();
# custom login link
RewriteRule ^login$ http://localhost/whitelabel/wp-login.php [NC,L]