Skip to content

Instantly share code, notes, and snippets.

@ItsMeooooooo
ItsMeooooooo / resizeProportional
Last active December 20, 2015 14:28
The -geometry flag is to resize the image, it requires a dimension parameter in the format WIDTHxHEIGHT
mogrify -geometry x240 /foo/bar/nattebums.png
@ItsMeooooooo
ItsMeooooooo / removeExif
Created August 3, 2013 12:47
Remove EXIF data from a file
mogrify -strip /foo/bar/mypic.jpg
@ItsMeooooooo
ItsMeooooooo / getLoad
Created August 3, 2013 12:45
Get Load with a python oneliner
python -c 'import os;print os.getloadavg()[0]'
@ItsMeooooooo
ItsMeooooooo / flac2ogg
Created August 3, 2013 11:36
A short oneliner for converting a folder with *flac files to *ogg
find . -name "*flac" -exec oggenc -q 7 {} \;
import os, subprocess, redis, thread, json, time, daemon, re
red = redis.Redis("localhost", password=os.getenv("REDISPASS"))
class InterCom(object):
def __init__(self, id):
self.id = id
self.prefix = "server-%s-" % self.id
def getCvar(self, i):
@ItsMeooooooo
ItsMeooooooo / css browser switch
Created July 22, 2013 17:25
css browser switch
<!doctype html>
<!--[if IE]><![endif]-->
<!--[if lt IE 7 ]> <html lang="en" class="ie6"> <![endif]-->
<!--[if IE 8 ]> <html lang="en" class="ie8"> <![endif]-->
<!--[if IE 9 ]> <html lang="en" class="ie9"> <![endif]-->
<!--[if (gt IE 9)|!(IE)]><!--><html lang="en"><!--<![endif]-->