Skip to content

Instantly share code, notes, and snippets.

View skopp's full-sized avatar

Rashaad Essop skopp

View GitHub Profile
@skopp
skopp / h5bp.redux.html
Created October 14, 2012 15:40
H5BP Redux Site Source-Code
<!doctype html public "lice">
<!-- paulirish.com/2008/conditional-stylesheets-vs-css-hacks-answer-neither/ -->
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang="en"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9" lang="en"> <![endif]-->
<!-- Consider adding a manifest.appcache: h5bp.com/d/Offline -->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<title>H5BP Redux - HTML5 Boilerplate on steroids</title>
@skopp
skopp / BoxBillingApi.php
Created November 5, 2012 20:33 — forked from boxbilling/BoxBillingApi.php
BoxBilling API class for PHP
<?php
/**
* BoxBilling
*
* LICENSE
*
* This source file is subject to the license that is bundled
* with this package in the file LICENSE.txt
* It is also available through the world-wide-web at this URL:
* http://www.boxbilling.com/LICENSE.txt
@skopp
skopp / index.html
Created November 9, 2012 20:22 — forked from moski/index.html
Script to include in your blogger posts to enable gist embeds.
<script src="https://raw.github.com/moski/gist-Blogger/master/public/gistLoader.js" type="text/javascript"></script>
@skopp
skopp / template.html
Created November 9, 2012 20:23 — forked from moski/template.html
Gist embed template
<div class="gistLoad" data-id="GistID" id="gist-GistID">Loading ....</div>
@skopp
skopp / html4noobz.html
Created November 9, 2012 21:09
HTML - The absolutely basic structure for a functional hypertext markup document. Gist is a code snippet for a blog post
<!doctype html><html><head>
<link href='http://fonts.googleapis.com/css?family=Titillium+Web:400,600' rel='stylesheet' type='text/css' /></head>
<div>
<style>body,html{background-color:brown;font-family:Titillium,arial,sans-serif;font-weight:400;color:pink;}a{font-family:Titillium,arial,sans-serif;font-weight:600;color:white;}</style>
<body>HI! This is a <a href="#">link</a></body>
</div></body></html>
@skopp
skopp / html-in-one-line.htm
Created November 9, 2012 23:19
A breakdown of a basic - so basic, seasoned devs are advised to refrain from looking at this or risk dying of shock
<!doctype html> ===================================DECLARE DOCUMENT TYPE
--|----^<html> ====================================TELL MACHINE/PARSER THAT 'THIS BELOW IS FRIGGIN H-T-M-TO THE LIZZO'
--|----|---<head> =================================VERY POWERFUL THIS HERE, THAT'S WHY MANY BLOGS ETC. DON'T ALLOW ACCESS TO IT.
--|----|---|------###_Head_Content_### ============HOWEVER, ALL PURE HTML FILES HAVE A HEAD, EVEN IF THERE ARE NO CONTENTS IN IT
--|----|---</head> ================================THE SLASH (/) TELLS MACHINE 'YO YO, END OF THIS SECTION, DAWG'
--|----|--------<body>=============================BODY IS LIKE YOUR BODY. WHAT WITH ITS ORGANS - ESPECIALLY THE HEART.
--|----|--------|-----##Body Content## ============ACTUALLY, THAT'S A GOOD ONE. <HEAD> HAS THE BRAIN OF THE CODE,
--|----|--------</body>============================<BODY> THE HEART OF IT, AND SPLEEN,HOWEVER....
--|----^</html>====================================THIS - IF IT WERE A LIVING BEING, WOULD NEED A SKELETON, NO? IT DOES. IT'S
@skopp
skopp / dabblet.html
Created November 13, 2012 11:51
Untitled
<!doctype html><html><head>
<link href='http://fonts.googleapis.com/css?family=Titillium+Web:400,600' rel='stylesheet' type='text/css' /></head>
<div> &rlarr; &bullet;
<style>body,html{background-color:brown;font-family:Titillium,arial,sans-serif;font-weight:400;color:pink;}a{font-family:Titillium,arial,sans-serif;font-weight:600;color:white;}</style>
<body>HI! This is a &ratio; <3 <a href="#">link</a></body>
@skopp
skopp / settings.json
Created November 13, 2012 11:56
visual ul li css list elements template
{"view":"split","fontsize":"100","seethrough":"","prefixfree":"1","page":"css"}
@skopp
skopp / data-markdown.user.js
Created November 27, 2012 13:40 — forked from paulirish/data-markdown.user.js
*[data-markdown] - use markdown, sometimes, in your HTML
// ==UserScript==
// @name Use Markdown, sometimes, in your HTML.
// @author Paul Irish <http://paulirish.com/>
// @link http://git.io/data-markdown
// @match *
// ==/UserScript==
// If you're not using this as a userscript just delete from this line up. It's cool, homey.
@skopp
skopp / create_repo.py
Created November 28, 2012 04:26 — forked from jkeesh/create_repo.py
Python script to create a remote git repo that checks out the latest commit with a post-receive hook
#
# This script creates a repository and sets it up with a post receive
# hook that checks out the code to the desired directory.
#
# Really nice for setting up an easy way to push code to a remote
# server without lots of overhead.
#
# After running this script simply add a remote locally like
#
# git remote add web ssh://you@server/path/to/repo.git