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 / Install_Requirements.sh
Created March 13, 2014 19:44
PIP Requirements Example
pip install -r Requirements.txt
@r35krag0th
r35krag0th / Testing.php
Created February 1, 2013 00:27
Testing
<?php
echo "Syntax on your beard.";
?>
@r35krag0th
r35krag0th / Get-TLS-Fingerprint.sh
Created November 30, 2012 02:10
Get Pandora TLS Fingerprint
#!/bin/bash
##
## A simple little shell script that will return the current
## fingerprint on the SSL certificate. It's crude but works :D
##
## Author: Bob Saska (r35krag0th) <git@r35.net>
openssl s_client -connect tuner.pandora.com:443 < /dev/null 2> /dev/null | \
openssl x509 -noout -fingerprint | tr -d ':' | cut -d'=' -f2
@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)