Skip to content

Instantly share code, notes, and snippets.

View J3RN's full-sized avatar
👨‍💻
Learning WebAssembly

Jonathan Arnett J3RN

👨‍💻
Learning WebAssembly
View GitHub Profile
#!/usr/bin/env python
import RPi.GPIO as GPIO
from time import *
GPIO.setmode(GPIO.BCM)
GPIO.setup(18, GPIO.OUT)
GPIO.setup(12, GPIO.OUT)
GPIO.setup(13, GPIO.OUT)
@J3RN
J3RN / contractions.txt
Last active August 31, 2015 20:19
List of Common English Contractions
ain't
aren't
can't
could've
couldn't
couldn't've
didn't
doesn't
don't
hadn't
@J3RN
J3RN / deploy.rake
Last active February 26, 2020 16:34 — forked from njvitto/deploy.rake
# Deploy and rollback on Heroku in staging and production
task :deploy_staging => ['deploy:set_staging_app',
'deploy:push',
'deploy:migrate',
'deploy:restart']
task :deploy_production => ['deploy:set_production_app',
'deploy:push',
'deploy:migrate',
'deploy:post_deploy',
'deploy:restart']