Skip to content

Instantly share code, notes, and snippets.

#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Supports:
# CASt
# sound
# bitmap
# field
#
# KEY* (file pointers)
@MrBrax
MrBrax / slink.sh
Last active June 20, 2019 08:20
full stream download live. requires streamlink. first argument is url, second is filename
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
from subprocess import call
import sys, os, getopt
import struct
@MrBrax
MrBrax / keybase.md
Created June 13, 2015 13:44
keybase.md

Keybase proof

I hereby claim:

  • I am MrBrax on github.
  • I am braxen (https://keybase.io/braxen) on keybase.
  • I have a public key whose fingerprint is 9482 D04A B5DA 6F51 66EC E98B 6B14 65FD B3EC 049C

To claim this, I am signing this object:

@MrBrax
MrBrax / gist:9aa9d80b9aa670cdbfc5
Created May 7, 2015 20:38
DarkRP Notify player table
function DarkRP.notify(ply, msgtype, len, msg)
if type(ply) ~= "table" and not IsValid(ply) then return end
umsg.Start("_Notify", ply)
umsg.String(msg)
umsg.Short(msgtype)
umsg.Long(len)
umsg.End()
end