Skip to content

Instantly share code, notes, and snippets.

View geobabbler's full-sized avatar
💭
Working

William Dollins geobabbler

💭
Working
View GitHub Profile
@cageyjames
cageyjames / parse_wordpress_xml.py
Created November 26, 2012 21:02
WordPress.xml to Markdown (Octopress)
""" parse_wordpress_xml.py
Takes a WordPress XML export file and converts it to Octopress flavored Markdown files.
Author: James Fee (http://github.com/cageyjames)
"""
import string
import sys
@chaosmail
chaosmail / install_python3.sh
Last active March 24, 2024 20:02
Install Python 3.4.3 on Ubuntu
## Common Packages
# ---------------
sudo apt-get -y update
sudo apt-get -y upgrade
sudo apt-get -y install software-properties-common libssl-dev openssl wget
## Install latest Python 3
# -----------------------
PY_VERSION=3.4.3
PY_URL="https://www.python.org/ftp/python/$PY_VERSION/Python-$PY_VERSION.tgz"