Skip to content

Instantly share code, notes, and snippets.

View grieve's full-sized avatar

Ryan Grieve grieve

View GitHub Profile

Keybase proof

I hereby claim:

  • I am grieve on github.
  • I am grieve (https://keybase.io/grieve) on keybase.
  • I have a public key ASCt5qzywIYPUfr9tuJkeSR7AYSXc9lKyUzmz8vBdZLuYgo

To claim this, I am signing this object:

@grieve
grieve / skulltag_cvars
Created November 22, 2013 15:20
Doom cvars (dmflags, dmflags2, dmflags3, compatflags, compatflags2), in JSON format with name and description taken from zandronum wiki.
{
"dmflags": [
{
"title": "Disallow health (In Deathmatch)",
"desc": " Prevents health from spawning on the map.",
"value": 1
},
{
"title": "Disallow powerups (In Deathmatch)",
"desc": " Prevents powerups from spawning on the map.",
#!/bin/bash
# ANSI color codes
RS="\[\033[0m\]" # reset
HC="\[\033[1m\]" # hicolor
UL="\[\033[4m\]" # underline
INV="\[\033[7m\]" # inverse background and foreground
CON="\[\033[8m\]" # concealed
FBLK="\[\033[30m\]" # foreground black
FRED="\[\033[31m\]" # foreground red
FGRN="\[\033[32m\]" # foreground green
@grieve
grieve / dropshot.py
Created July 10, 2012 12:55
Simple hack to use gnome-screenshot and dropbox to upload quick public screenshots - required libnotify-bin for notifications
#!/usr/bin/python
import gtk
import simplejson
import urllib2
import subprocess
import datetime
import string
import random
import time