Skip to content

Instantly share code, notes, and snippets.

View zeraphie's full-sized avatar

Izzy Skye zeraphie

View GitHub Profile
@ncbateman
ncbateman / gist:c8119b411383bbeeaf82
Created May 27, 2015 09:40
Twitter Api oAuth 1.1 simple
<?php
$consumerKey = /*CONSUMER KEY*/;
$consumerSecret = /* CONSUMER SECRET*/;
$authContext = stream_context_create(array(
'http' => array(
@pburtchaell
pburtchaell / styles.css
Last active February 25, 2024 12:24
VH and VW units can cause issues on iOS devices. To overcome this, create media queries that target the width, height, and orientation of iOS devices.
/**
* VH and VW units can cause issues on iOS devices: http://caniuse.com/#feat=viewport-units
*
* To overcome this, create media queries that target the width, height, and orientation of iOS devices.
* It isn't optimal, but there is really no other way to solve the problem. In this example, I am fixing
* the height of element `.foo` —which is a full width and height cover image.
*
* iOS Resolution Quick Reference: http://www.iosres.com/
*/