Skip to content

Instantly share code, notes, and snippets.

View kyleturman's full-sized avatar

Kyle Turman kyleturman

View GitHub Profile
@kyleturman
kyleturman / dribbble.php
Last active December 22, 2015 20:59
Dribbble Recent Shots
<?php
/**
* PHP wrapper for the Dribbble API.
* Released under the MIT License.
*
* @author Martin Bean <[email protected]>
* @package Dribbble API PHP Wrapper
* @version 2.0
*/
/* Foundation v2.2.1 http://foundation.zurb.com */
/* Artfully Masterminded by ZURB */
/* --------------------------------------------------
Table of Contents
-----------------------------------------------------
:: Reset & Standards
:: Links
:: Lists
:: Tables
strong {
display: inline-block;
font-weight: normal;
overflow: hidden;
margin-top: 2px;
position: relative;
vertical-align: top;
span {
display: block;
@kyleturman
kyleturman / OpenClosed.php
Created October 27, 2012 22:33
OpenClosed
<?php
/*
OpenClosed function
Author: Kyle Turman
Displays whether a business is open or closed based on hours given.
*/
@kyleturman
kyleturman / gist:2875714
Created June 5, 2012 15:34
Google Maps
var point = new google.maps.LatLng(39.7260208, -105.0001613);
var myOptions = {
zoom: 15,
center: point,
mapTypeId: google.maps.MapTypeId.ROADMAP,
streetViewControl: false,
mapTypeControl: false
}