Skip to content

Instantly share code, notes, and snippets.

@gboudreau
gboudreau / AuthyToOtherAuthenticator.md
Last active July 8, 2024 07:18 — forked from Ingramz/AuthyToOtherAuthenticator.md
Export TOTP tokens from Authy
@mrichardson23
mrichardson23 / bb-python-gpio-test.py
Created March 6, 2012 15:49
BeagleBone GPIO with Python Test
#!/usr/bin/python
# time module is needed for sleep function:
import time
# Open up the pins and set mode in/out
# TODO: Error handling
setupPin = file("/sys/class/gpio/export", "w")
setupPin.write("%d" % (38))
setupPin.close()
@jneen
jneen / example.io
Created January 29, 2011 16:34
a module system for Io
# Assuming this directory structure:
#
# MyModule/
# init.io # => Object clone do( foo := "bar" )
# slot1.io # => "LOL"
# slot2.io # => method("running slot2" println; self)
# slot3/
# subslot1.io # => "this is subslot1"
import("/path/to/MyModule")