Skip to content

Instantly share code, notes, and snippets.

@myusuf3
myusuf3 / bash.sh
Created May 7, 2011 20:19
opening virtualenv
# 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
$
@myusuf3
myusuf3 / bash.sh
Created May 7, 2011 20:28
installing pip with easy_install
sudo easy_install -U pip
@myusuf3
myusuf3 / bash.sh
Created May 7, 2011 20:29
installing virtualenv with pip
sudo pip install -U virtualenv
@myusuf3
myusuf3 / new-twitter.js
Created May 31, 2011 20:17
Removing thew new twitter banner
// ==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 {
@myusuf3
myusuf3 / awesome.js
Created June 23, 2011 15:46
auto awesome all the time
javascript:(function(){setInterval(function(){$('#btn_upvote').click()},10000);})();
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)
@myusuf3
myusuf3 / .gitignore
Created August 7, 2011 05:43
python/django ignore file
#ignore files for django project
*.db
*.pyc
*.log
@myusuf3
myusuf3 / collectstatic.sh
Created September 5, 2011 18:49
usage of collectstatic.sh
./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
@myusuf3
myusuf3 / toggle.js
Created September 7, 2011 05:21
toggle operators in js
# 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
@myusuf3
myusuf3 / shit_i_forget.sh
Created September 12, 2011 18:03
how to set root password ubuntu
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:~$