Skip to content

Instantly share code, notes, and snippets.

View r35krag0th's full-sized avatar
🤖
Beep Boop.

Bob Saska r35krag0th

🤖
Beep Boop.
View GitHub Profile
@r35krag0th
r35krag0th / PianoControl.sh
Created November 13, 2012 02:54
A cleaner PianoBar Controller; incomplete
#!/bin/zsh
ControlFile="$HOME/.config/pianobar/ctl"
IssueCommand() {
CommandToIssue=$1
#echo "Sending '$CommandToIssue'..."
echo -n $CommandToIssue > $ControlFile
}
@r35krag0th
r35krag0th / NomVenue.py
Created August 22, 2012 15:47
Lunch Magic
class NomVenue:
name = None
meatIndex = 0
boozeIndex = 0
patioEnabled = False
def __init__(self, someName="Unknown Venue", isPatioEnabled=False, theMeatIndex=0, theBoozeIndex=0):
self.name = someName
self.setMeatIndex(theMeatIndex)
self.setBoozeIndex(theBoozeIndex)
<?php
$a = md5('240610708');
$b = md5('QNKCDZO');
echo "A\n";
var_dump($a);
echo "\nB\n";
var_dump($b);

Keybase proof

I hereby claim:

  • I am r35krag0th on github.
  • I am bobsaska (https://keybase.io/bobsaska) on keybase.
  • I have a public key whose fingerprint is 66E7 9900 BE3C B097 813A 2937 3ACF D041 DFBD D652

To claim this, I am signing this object:

@r35krag0th
r35krag0th / Install_Requirements.sh
Created March 13, 2014 19:44
PIP Requirements Example
pip install -r Requirements.txt