Prerequisites:
$ yum groupinstall 'development tools' $ yum install zlib-devel bzip2-devel openssl-devel wget
Get Python sources:
Salut, | |
Scuze de întărziere, de abia acum am reușit să mă adun... | |
Mai jos îți trimit căteva lucruri care mi-au plăcut. Nu au o ordine și nici nu mă atașez de unul din ele în particular: | |
[1] http://graffitimurals.com.au/wp-content/uploads/Office-Space-Graffiti-Mural.jpg | |
[2] http://vps.graffitikings.co.uk/wp-content/uploads/3.jpg | |
[3] http://graffitimurals.com.au/office-space-street-art/ | |
[4] http://deardesigner.co.uk/wp-content/uploads/2010/08/graffiti-interiors-cherry-bedroom12.jpg |
@media screen { /* To prevent PocketPC from loading the stylesheet */ | |
#workarea ul.menu { /* Simple menu of items */ | |
list-style: none; | |
list-style-image: none; | |
padding:0; | |
margin:0; | |
} | |
.indented { | |
padding-left: 2em; |
[ | |
// Rebind "go to file" to cmd+shift+O | |
{ "keys": ["super+shift+o"], "command": "show_overlay", "args": { | |
"overlay": "goto", | |
"show_files": true | |
}}, | |
// Rebind swap line up/down to cmd+shift+up/down | |
{ "keys": ["super+shift+down"], "command": "swap_line_down" }, | |
{ "keys": ["super+shift+up"], "command": "swap_line_up" }, |
{ | |
"auto_complete": false, | |
"caret_style": "solid", | |
"color_scheme": "Packages/Color Scheme - Default/Dawn.tmTheme", | |
"draw_white_space": "all", | |
"ensure_newline_at_eof_on_save": true, | |
"file_exclude_patterns": | |
[ | |
".DS_Store", | |
"*.pid", |
#!/bin/bash | |
user=cornel | |
name=$(python setup.py sdist --format=zip | tail -n 1 | cut -d "'" -f 2) | |
echo "Uploading $name.zip to eggshop" | |
scp dist/"$name".zip [email protected]:/var/local/eggshop | |
echo "Removing dist/" | |
rm -rf dist |