Skip to content

Instantly share code, notes, and snippets.

@draringi
draringi / bsdcan-v1.01-v1.02.txt
Created March 11, 2016 01:19
Initial work on detecting changes in BSDCan's Schedule
Conference Changes:
Version: v1.0.1 -> v1.0.2
Event Doc Sprints Changes:
Start Time: 18:00 -> 19:00
@draringi
draringi / lsevents-output.txt
Created March 6, 2016 20:31
Output of lsevents example from ottaconf (https://github.com/draringi/ottaconf)
Title | People | Type
----------------------------------------------------------------------------------------+--------------------------------------------+----------
The LLDB Debugger in FreeBSD | Ed Maste | lecture
Feature-rich and fast SCSI target with CTL and ZFS | Alexander Motin |
Key signing party (in the Hacking Lounge) | Glen Barber | workshop
BSDA | Dru Lavigne | other
OpenZFS BoF | Allan Jude | meeting
BSDs and Privacy Technologies

Keybase proof

I hereby claim:

  • I am draringi on github.
  • I am mgwsoftware (https://keybase.io/mgwsoftware) on keybase.
  • I have a public key whose fingerprint is 3B20 407B ABD3 026B F7E7 24E6 F09C 3956 77DD 58C8

To claim this, I am signing this object:

@draringi
draringi / hello_bluetooth.hex
Created November 14, 2014 15:33
RF-SlideOS Bluetooth test app
:020000022000DC
:10600000074B10B51A781C1C002A07D1054B002B32
:1060100002D0054800E000BF0123237010BDC04638
:106020002834002000000000C862020008B5084BB8
:10603000002B03D00748084900E000BF0748036869
:10604000002B03D0064B002B00D0984708BDC0465C
:1060500000000000C86202002C340020C862020068
:10606000000000001FB509490C2201A800F064F8E7
:10607000074B01A81B689847064B1B689847064CBE
:106080003C20002123689847FAE7C046906202004E
@draringi
draringi / hashtagger.py
Created June 15, 2013 04:12
Hash tagger: A simple python script for turning a standard string into a string of hashtagged terms
#!/usr/bin/python2
import re, sys, argparse
parser=argparse.ArgumentParser(description='Turns a normal string into a string of hashtagged terms.')
parser.add_argument('string', metavar = 'TEXT')
args = parser.parse_args()
words = re.findall(r"\w+",args.string)
for word in words:
sys.stdout.write("#"+word+" ")
sys.stdout.write("\n")
def(self, *args, *kwargs):
if(self.id = None):
super(Translation, self).save(*args, **kwargs)
self.revision_set.create(submitter = self.translator, diff = self.text)
super(Translation, self).save(*args, **kwargs)