Skip to content

Instantly share code, notes, and snippets.

View brstream's full-sized avatar

Douglas Bachman brstream

View GitHub Profile
@brstream
brstream / htm_to_txt.sh
Last active September 23, 2016 09:08 — forked from hugorodgerbrown/md_to_rst.sh
Shell script for converting a batch of *.htm files into *.txt using pandoc.
# This script was created to convert a directory full
# of markdown files into rst equivalents. It uses
# pandoc to do the conversion.
#
# 1. Install pandoc from http://johnmacfarlane.net/pandoc/
# 2. Copy this script into the directory containing the .md files
# 3. Ensure that the script has execute permissions
# 4. Run the script
#
# By default this will keep the original .md file
@brstream
brstream / Preferences.sublime-settings
Created October 4, 2013 02:15
Sublime settings preferences
{
"font_size": 16,
"ignored_packages":
[
""
]
}
@brstream
brstream / Python: Hello World
Last active December 17, 2015 00:29 — forked from cx20/hello.py
Python: Hello World
#!/usr/bin/python
print "Hello, Python World!"
@brstream
brstream / gist:5520919
Created May 5, 2013 14:05
HTML: Starting Template
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.0/jquery.min.js"></script>