Dec 312009

Excerpt from here
Cloud computing is a general term for anything that involves delivering hosted services over the Internet. These services are broadly divided into three categories: Infrastructure-as-a-Service (IaaS), Platform-as-a-Service (PaaS) and Software-as-a-Service (SaaS). The name cloud computing was inspired by the cloud symbol that’s often used to represent the Internet in flow charts and diagrams.
A [...]

Posted by weboom at 2:20 am 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 122009

Check this site:
http://www.venukb.com/2006/08/20/install-eclipse-plugins-the-easy-way/

Posted by weboom at 12:10 am Tagged with: , ,
Nov 032009

Use RSE
Download it here.
File -> New -> Other
Under Remote System Explorer, select “connection” and click next.
Select connection type (SSH only for me)
Then, add RSE perspective,
you can browse remote files, have shells and remote terminals.

Posted by weboom at 1:13 am Tagged with: ,
Sep 212009

Two main reasons why dedicated IP is needed:
1. better  search engine
- many different opinions on this, but it looks that dedicated IP seems to be helpful for search engine result
2. SSL support
- e-commerce website needs SSL which requires a unique IP address.
One note is that webfaction.com does not provide dedicated IP but private IP address.
Private [...]

Posted by weboom at 11:24 pm Tagged with: , ,
Aug 022009

Foreign key is set in one-to-many relation.
For example,
Publisher – Book
—-
class Book(models.Model):
publisher = models.ForeignKey(Publisher)
—–
There are two cases:
>>> b = Book.objects.get(id=78)
>>>b.publisher
>>>p=Publisher.objects.get(name=’Aplus’)
>>>p.book_set.all()
Note that book_set
is just a QuerySet.
Thus it can be filtered and sliced.
>>>p.book_set.filter(name__icontains=’django’).order_by(’name’)[0:2]

Posted by weboom at 6:11 am Tagged with: ,
Aug 022009

Use
objects.order_by()
—————-
e.g.,
>>>Card.objects.order_by(”name”)
for reverse order
>>>Card.objects.order_by(”-name”)

Posted by weboom at 5:40 am Tagged with: , , ,
Aug 012009

1. Select
File
2. Select
Import
3. select
Existing project into workspace
Then, follow your instinct.
—————–
if you can’t see the window,
try to select
Window
and then
New window

Posted by weboom at 5:18 am Tagged with: , ,
Jul 292009

If you got the above error,
check if ‘templatetags’ directory has
__init__.py file or not.

Posted by weboom at 5:35 am Tagged with: , , ,
Jul 282009

See here

Posted by weboom at 8:31 pm Tagged with: , ,
Switch to our mobile site
Page 1 of 3123»Top Footer