Skip to content

Instantly share code, notes, and snippets.

View skopp's full-sized avatar

Rashaad Essop skopp

View GitHub Profile
@skopp
skopp / gitio
Created May 1, 2013 20:23 — forked from defunkt/gitio
#!/usr/bin/env ruby
# Usage: gitio URL [CODE]
#
# Turns a github.com URL
# into a git.io URL
#
# Copies the git.io URL to your clipboard.
url = ARGV[0]
code = ARGV[1]
==========================
Docutils Front-End Tools
==========================
:Author: David Goodger
:Contact: [email protected]
:Revision: $Revision: 7302 $
:Date: $Date: 2012-01-03 19:23:53 +0000 (Tue, 03 Jan 2012) $
:Copyright: This document has been placed in the public domain.

The Python Tutorial

Python is an easy to learn, powerful programming language. It has efficient high-level data structures and a simple but effective approach to object-oriented programming. Python's elegant syntax and dynamic typing, together with its interpreted nature, make it an ideal language for scripting

@skopp
skopp / pythonista.rst
Created May 1, 2013 08:59
Code like a Pythonista - Tutorial

Code Like a Pythonista: Idiomatic Python

# GitPad.exe - Use Notepad as your Git commit editor
This single executable allows you to use Notepad as your editor any time Git
requires one (commits, interactive rebase, etc).
![Notepad editing a commit](http://f.cl.ly/items/3A3Y3P3B3Y3P1B0e2Q0Y/Grab.png)
## How to install (short version)
# [Click This Link](https://github-gitpad.s3.amazonaws.com/GitPad.zip)
@skopp
skopp / authoring_books_with_github.md
Created May 1, 2013 00:59
#book #authoring #teach #github
layout title description path
barewithrelated
Book Authoring Using Git and GitHub
Formats, tips and techniques for using Git and GitHub as the version control and collaborative platform for writing short and long form books.
usecases/_posts/2001-01-01-book-authoring-using-git-and-github.md

Git and GitHub are not just for writing programming code. They can also be an effective tool for writing articles and books. Matthew McCullough has written a quick guide to writing books in lightweight formats. This article will be folded into this Teaching repository over the coming months.

What is this?

@skopp
skopp / README.md
Last active December 16, 2015 20:10
Simple API creation using PHP scripts
// Named constants with unique integer values
var C = {};
// Tokenizer States
var START = C.START = 0x11;
var TRUE1 = C.TRUE1 = 0x21;
var TRUE2 = C.TRUE2 = 0x22;
var TRUE3 = C.TRUE3 = 0x23;
var FALSE1 = C.FALSE1 = 0x31;
var FALSE2 = C.FALSE2 = 0x32;
var FALSE3 = C.FALSE3 = 0x33;
@skopp
skopp / README.md
Last active December 16, 2015 20:10
JSON Parser

Experimental version of JSON Parser

Note: not working currently. Come back soon!