Skip to content

Instantly share code, notes, and snippets.

View digi604's full-sized avatar

Patrick Lauber digi604

  • Zürich, Switzerland
View GitHub Profile
<App>
<Skin path="env/skins/master.png" name="master">
<Bitmap name="PlayButton" x="20" y="20" w="100" h="20"/>
<BitmapList name="SponsorFlags">
<item x="20" y="20" w="20" h="20"/>
<item x="20" y="40" w="20" h="20"/>
<item x="20" y="60" w="20" h="20"/>
<item x="20" y="80" w="20" h="20"/>
</BitmapList>
<ToggleSkin name="playerPlateVoteBtn" x="500" y="600" w="182" h="29" xLeft="10" xRight="10"/>
@digi604
digi604 / osx_developer_installation.rst
Created August 6, 2012 14:51 — forked from stefanfoulis/osx_developer_installation.rst
Instructions on how to setup an OSX developer machine for (python/django) development

OSX Developer System installation

This guide assumes a fresh install of Mac OSX 10.7 Lion.

Homebrew

import pexpect
class BashProcess:
"""A class for running persistent bash processes."""
def __init__(self):
self.shell = pexpect.spawn('/bin/bash', encoding='utf-8', timeout=300)
self.shell.expect_exact('$')
self.shell.sendline("\n")