Jun 212009
1. install django
2. intall pinax
3.
$ source ./pinax-env/bin/activate //this seems to use python under pinax not general python
4. create project
(pinax-env) $ pinax-admin clone_project social_project yourprojectname
5. go to yourprojectname directory
$python manage.py syncdb
$python manage.py runserver www.amazon.com:8081
$ svn update <directorynameyouwanttoupdate>
Jun 182009
Checkout:
svn co –username <your_user_name> –password <your_password> http://utexas.edu/svn/repos/project
Jun 182009
In linux and unix, find command is very powerful command
the reasons are (from my opinions)
1. in linux, unix, every configurations are done in text
2. if you know some strings, you may want to find a file containing those strings
3. this will be extremely helpful when you work with linux system
$find . -exec grep “stringyouwanttofind” ‘{}’ \; -print
\; represents the end of argument of exec
{ } inserts each file
$find . -name “filenameyouwanttofind” -print
$ find . -name “*.py” -exec grep “stringyouwanttofind” ‘{}’ \; -print
