Skip to content

Instantly share code, notes, and snippets.

View garthhumphreys's full-sized avatar
🎯
Focusing

Garth Humphreys garthhumphreys

🎯
Focusing
View GitHub Profile
@garthhumphreys
garthhumphreys / gist:17d6a1809b6f57be6b5a
Created January 20, 2016 08:49 — forked from blanc0/gist:65a0c4f3dc148c66ad38
PhantomJS + Selenium Testing
'''
You'll need to install npm, nodejs and phantomjs
$ apt-get install nodejs nodejs-dev npm phantomjs
$ pip install selenium-python
'''
@garthhumphreys
garthhumphreys / randomCountry.py
Created October 31, 2012 03:57
Print to screen a random country
#!/usr/bin/python -tt
import random
def main():
"""
This script randomly prints to screen a soverign country from a list of 206 countries
"""
try:
@garthhumphreys
garthhumphreys / RGBColor.h
Created March 30, 2012 16:48
RGBColor Macro
/* rgb color */
#define RGBCOLOR(r,g,b) \
[UIColor colorWithRed:r/256.f green:g/256.f blue:b/256.f alpha:1.f]
/* rgb color with alpha (rgba) */
#define RGBACOLOR(r,g,b,a) \
[UIColor colorWithRed:r/256.f green:g/256.f blue:b/256.f alpha:a]
#!/usr/bin/env bash
# Requirements:
# pdf2swfBatch-poly2bitmap.sh needs to be installed in order to use this, see http://www.swftools.org/
# This is the advanced version of converting pdf to swfs by flattening pages to bitmap.
#
# Copyright (C) 2012 Garth Humphreys, http://garthhumphreys.com, http://konec.ky
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
@garthhumphreys
garthhumphreys / python_resources.md
Last active August 29, 2015 14:12 — forked from jookyboi/python_resources.md
Python-related modules and guides.

Packages

  • lxml - Pythonic binding for the C libraries libxml2 and libxslt.
  • boto - Python interface to Amazon Web Services
  • Django - Django is a high-level Python Web framework that encourages rapid development and clean, pragmatic design.
  • Fabric - Library and command-line tool for streamlining the use of SSH for application deployment or systems administration task.
  • PyMongo - Tools for working with MongoDB, and is the recommended way to work with MongoDB from Python.
  • Celery - Task queue to distribute work across threads or machines.
  • pytz - pytz brings the Olson tz database into Python. This library allows accurate and cross platform timezone calculations using Python 2.4 or higher.

Guides

@garthhumphreys
garthhumphreys / 0_reuse_code.js
Last active August 29, 2015 14:12
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
# Work in progress
# Need to test in virtualbox
sudo apt-get install libxml2-dev libxslt-dev
sudo apt-get install python-lxml
virtualenv --distribute venv
source venv/bin/activate