This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# Gets screenshot using imagemagick import command | |
# puts it in Dropbox folder and returns dropbox url | |
# to screenshot | |
# Usage: dropshot [suffix] | |
# suffis - is optional, default 'dropshot' | |
# screenshots target directory |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# Grant SELECT on database to given username | |
# ./grant_ro_pgsql_access.sh dbname dbuser | |
# | |
function usage { | |
echo "Usage: $0 dbname dbuser" | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
env PULSE_LATENCY_MSEC=30 LD_PRELOAD=/usr/lib/i386-linux-gnu/libv4l/v4l1compat.so /usr/bin/skype |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<advancedsettings> | |
<network> | |
<cachemembuffersize>20971520</cachemembuffersize> | |
<disableipv6>true</disableipv6> | |
</network> | |
<fanartres>720</fanartres> | |
<imageres>540</imageres> | |
<gputempcommand>echo "$(/opt/vc/bin/vcgencmd measure_temp | grep -o "[0-9]\{2\}") C"</gputempcommand> | |
<cputempcommand>echo "$(/opt/vc/bin/vcgencmd measure_temp | grep -o "[0-9]\{2\}") C"</cputempcommand> | |
<lookandfeel> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[gui] | |
editor = gvim | |
[color] | |
ui = auto | |
diff = auto | |
branch = always | |
status = off | |
[color "branch"] | |
current = yellow reverse | |
local = yellow |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# usage: ./mkchangelog | |
# | |
# author: Marek Wywiał <[email protected]> | |
# | |
# description: Script creates CHANGELOG.txt according to current git tags. Also | |
# supports commits without tags (git log HEAD...first_tag). | |
# Lines starting with 'Merge' will be skipped. | |
# Remember to add 'include CHANGELOG.txt' into your MANIFEST.in if |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
rows, columns = os.popen('stty size', 'r').read().split() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from collections import namedtuple | |
# magic data accessed with magic numbers, f.i.: | |
# print "{} {}".format(row[2], row[3]) | |
row = ('SS', 'asdf', 12.3, 'USD') | |
# let's create something self describing | |
Price = namedtuple('Price', ['symbol', 'name', 'amount', 'currency']) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import re | |
p = re.compile('^(?P<head>\d{2})(?:[-\s]?(?P<tail>\d{3})?$)') | |
zip = "-".join(p.match('11123').groups()) | |
print zip | |
zip = "-".join(p.match('11-123').groups()) | |
print zip |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import math | |
class lazyproperty(object): | |
def __init__(self, func): | |
self.func = func | |
def __get__(self, instance, cls): | |
if instance is None: | |
return self |