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
# activating newly create virtualenv | |
$ source django-mimo/bin/activate | |
# your prompt should change to something similar the following | |
(django-mimo)$ | |
# in order to get back to system all you need to do is | |
(django-mimo)$ deactivate | |
$ |
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
sudo easy_install -U pip |
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
sudo pip install -U virtualenv |
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
// ==UserScript== | |
// @name No new Twitter banner | |
// @description just remove the top banner which tell you new Twitter available. | |
// @author ayanamist | |
// @include https://twitter.com/* | |
// @include http://twitter.com/* | |
// @match https://twitter.com/* | |
// @match http://twitter.com/* | |
// ==/UserScript== | |
try { |
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
javascript:(function(){setInterval(function(){$('#btn_upvote').click()},10000);})(); |
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
salary_errors = { | |
'required': 'This field is required', | |
'invalid': 'Enter a whole number (Ex: 45000)' | |
} | |
salary = forms.IntegerField(label=_('Your annual net salary'), error_messages=salary_errors, required=False) |
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
#ignore files for django project | |
*.db | |
*.pyc | |
*.log |
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
./manage.py collectstatic -n | |
You have requested to collect static files at the destination | |
location as specified in your settings file. | |
This will overwrite existing files. | |
Are you sure you want to do this? | |
Type 'yes' to continue, or 'no' to cancel: yes |
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
# long way of doing it. | |
v = (v == 0 ? 1 : 0); | |
# shorter less cool way of doing it needs to be initialized right. | |
v = 1 - v; | |
# god like way |
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
Last login: Mon Sep 12 13:57:29 2011 | |
myusuf3@flute:~$ sudo passwd | |
[sudo] password for myusuf3: | |
Enter new UNIX password: | |
Retype new UNIX password: | |
passwd: password updated successfully | |
myusuf3@flute:~$ |