Skip to content

Instantly share code, notes, and snippets.

@d6e
d6e / wearable_computing.md
Last active August 29, 2015 14:02
Some notes I've compiled on wearable computing

Wearable Computing notes

Chorded keyboard - a keyboard where characters are entered by suppressing multiple keys at the same time. biambic/triambic/quadambic - number of keys on a keyed keyboard

The Microwriter

  • A type of 6 key (hexambic) chorded keyboard
https://en.wikipedia.org/wiki/Microwriter
ghost in the shell
samuria champloo
haruhi
deathnote
hellsing
spirited away
princess mononoke
Sword of the Stranger
full metal alchemist
kino no tabi

Keybase proof

I hereby claim:

  • I am paralleldanielle on github.
  • I am danielle (https://keybase.io/danielle) on keybase.
  • I have a public key whose fingerprint is A754 9DF6 4573 C864 3AA1 E5DB 2B6B 80EC A83D 658D

To claim this, I am signing this object:

@d6e
d6e / gist:11236957
Created April 24, 2014 00:11
unicorn_term_tabs.py
#!/usr/bin/env python
"""
Set terminal tab / decoration color by the server name.
Get a random colour which matches the server name and use it for the tab colour:
the benefit is that each server gets a distinct color which you do not need
to configure beforehand.
"""
@d6e
d6e / gist:9281091
Created February 28, 2014 22:12
keybase.md
### Keybase proof
I hereby claim:
* I am paritybit0 on github.
* I am paritybit (https://keybase.io/paritybit) on keybase.
* I have a public key whose fingerprint is 3F00 CA46 4E08 1B22 04AE 7842 EF64 151C D1B1 B13E
To claim this, I am signing this object:
#!/bin/sh
####################################################################
# #
# Basic Backup Script for MediaWiki. #
# Created by Daniel Kinzler, brightbyte.de, 2008 #
# #
# This script may be freely used, copied, modified and distributed #
# under the sole condition that credits to the original author #
# remain intact. #
@d6e
d6e / s3Backup.sh
Last active August 29, 2015 13:56
#!/bin/bash
#
# Backup Script
#
#=====================================================================
#=====================================================================
# Set the following variables to your system needs
#=====================================================================
# Directory to save daily tar.gz backup files to e.g /backups
@d6e
d6e / history.txt
Created January 23, 2014 18:19 — forked from oxtopus/history.txt
sudo apt-get update
sudo apt-get install python-dev git python-pip automake libtool libssl-dev
git clone https://github.com/numenta/nupic.git
mkdir -p nta/eng
echo "
export NTA=$HOME/nta/eng
export NUPIC=$HOME/nupic
export BUILDDIR=/tmp/ntabuild
export MK_JOBS=3
source $HOME/nupic/env.sh" >> ~/.bashrc
@d6e
d6e / linkscraper
Created November 11, 2013 09:50
For scraping links
#!/usr/bin/python
from bs4 import BeautifulSoup
from urllib2 import urlopen
import re
import os
def getAllLinks(url):
print "getting links..."
soup = BeautifulSoup(urlopen(url).read()) # make some soup