This file contains hidden or 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
| #setuptools | |
| wget http://pypi.python.org/packages/source/s/setuptools/setuptools-0.6c11.tar.gz#md5=7df2a529a074f613b509fb44feefe74e | |
| tar zxf setuptools-0.6c11.tar.gz | |
| cd setuptools-0.6c11/ | |
| sudo python setup.py install | |
| #pip | |
| wget http://pypi.python.org/packages/source/p/pip/pip-1.1.tar.gz#md5=62a9f08dd5dc69d76734568a6c040508 | |
| tar zxf pip-1.1.tar.gz | |
| cd pip-1.1/ |
This file contains hidden or 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
| """ | |
| Snippet from Django Docs | |
| """ | |
| class MultiDBModelAdmin(admin.ModelAdmin): | |
| # A handy constant for the name of the alternate database. | |
| using = 'other' | |
| def save_model(self, request, obj, form, change): | |
| # Tell Django to save objects to the 'other' database. | |
| obj.save(using=self.using) |
This file contains hidden or 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
| Navigation: | |
| cmd-p Goto Anything ('@' for functions, ':' for line number) | |
| cmd-r Function finder | |
| ctl-g Goto line number | |
| cmd-sft-p Command palette | |
| cmd-sft-f Find in Files | |
| cmd-opt-r Toggle regex when finding | |
| cmd-opt-# Columns | |
| ctr-# Switch columns |
This file contains hidden or 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
| [color] | |
| branch = auto | |
| diff = auto | |
| status = auto | |
| [color "branch"] | |
| current = yellow reverse | |
| local = yellow | |
| remote = green | |
| [color "diff"] | |
| meta = yellow bold |
This file contains hidden or 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
| #When dropbox is not working on ubuntu 12 | |
| #you tried to execute on terminal: | |
| #dropbox start | |
| #and the error is something like this: | |
| #Starting Dropbox.../home/YOUR_USER/.dropbox-dist/libstdc++.so.6: version `GLIBCXX_3.4.11' not found (required #by /usr/lib/x86_64-linux-gnu/libproxy.so.1) | |
| #Failed to load module: /usr/lib/x86_64-linux-gnu/gio/modules/libgiolibproxy.so | |
| #Done! | |
| #FIX | |
| cd /home/YOUR_USER/.dropbox-dist/ |
This file contains hidden or 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
| #INSTALL | |
| sudo add-apt-repository ppa:gloobus-dev/gloobus-preview | |
| sudo apt-get update | |
| sudo apt-get install gloobus-preview gloobus-sushi | |
| #For the oppenoffice documents to work, you should install unoconv too | |
| sudo apt-get install unoconv |
This file contains hidden or 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
| #Se o erro for algo parecido com isto: | |
| #building 'lxml.etree' extension | |
| #gcc -pthread -fno-strict-aliasing -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fPIC -I/usr/include/python2.7 -c src/lxml/lxml.etree.c -o build/temp.linux-x86_64-2.7/src/lxml/lxml.etree.o -w | |
| #In file included from src/lxml/lxml.etree.c:239:0: | |
| #src/lxml/etree_defs.h:9:31: erro fatal: libxml/xmlversion.h: Arquivo ou diretório não encontrado | |
| #compilação terminada. | |
| #error: command 'gcc' failed with exit status 1 | |
| #basta instalar libxml2-dev e libxslt-dev |
This file contains hidden or 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
| ps -u username -o rss,command | grep -v peruser | awk '{sum+=$1} END {print sum/1024}' |
This file contains hidden or 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 the terminal open the file environment | |
| $: sudo gedit /etc/environment | |
| #Insert the line at the botton of the file | |
| UNITY_FORCE_START=1 |
This file contains hidden or 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
| ps ax|grep gunicorn |