Dec 012009

Ignore everything between {% comment %} and {% endcomment %}

Posted by weboom at 2:03 am Tagged with: ,
Dec 012009

First, download Django-1.1.1.tar.gz. Then:
tar xzvf Django-1.1.1.tar.gz
cd Django-1.1.1
sudo python setup.py install

Posted by weboom at 12:33 am Tagged with: , , ,
Nov 302009

$ sshfs pyncus@pyncus.com:/home/pyncus /mnt/remote-fs
fuse: mountpoint is not empty
fuse: if you are sure this is safe, use the ‘nonempty’ mount option
If you see this error, try the below as suggested.
$ sshfs -o nonempty pyncus@pyncus.com:/home/pyncus /mnt/remote-fs

Posted by weboom at 11:53 pm Tagged with: , ,
Nov 302009

Aptana Studio 1.5 on Eclipse 3.5 Instructions (Recommend)

Go to Help -> Install New Software…
In the “Work with:” text box, enter: http://update.aptana.com/install/studio
Click Add…
Specify the Name of the Update site (i.e. Aptana Studio Plugin)
Click OK
Select the “Aptana Studio” checkbox
Click the Next Button
Confirm the items you are installing
Click [...]

Posted by weboom at 2:58 am Tagged with: ,
Nov 302009

Use WINE.
Follow direction:
http://notepad-plus.sourceforge.net/uk/nppLinux.php

Posted by weboom at 2:34 am Tagged with: ,
Nov 302009

Wine lets you run Windows software on other operating systems. With Wine, you can install and run these applications just like you would in Windows.

Posted by weboom at 2:21 am Tagged with:
Nov 292009

You can use shutil for high-level file operation (copy, move, delete etc.) in Python.
e.g.,
>>>import shutil
>>>shutil.copy(src,dest)
src is a source file.
dest is a target directory.

Posted by weboom at 10:10 pm Tagged with: ,
Nov 292009

>>>import os
>>>os.path.isdir(fileordirectoryname)
If directory, its output will be True.
If not, it will be False.

Posted by weboom at 10:08 pm Tagged with:
Nov 292009

>>>import os
>>>os.listdir(’.’)
This will make a list containing the names of files and subdirectories.

Posted by weboom at 10:05 pm Tagged with:
Nov 292009

>>>import os
>>>os.chdir(’..’)
>>>os.chdir(’/home/weboom/’)

Posted by weboom at 9:59 pm Tagged with: , ,
Switch to our mobile site
Page 2 of 21«12345»1020...Last »Top Footer