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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
========================== | |
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. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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). | |
 | |
## How to install (short version) | |
# [Click This Link](https://github-gitpad.s3.amazonaws.com/GitPad.zip) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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; |
Experimental version of JSON Parser
CSS Working Group Specifications
To download a copy of all specifications:
hg clone https://dvcs.w3.org/hg/csswg
For help using or setting up Mercurial see instructions here. Specification issues are discussed on the public www-style mailing list.