If you want to update a single document by hand there is a gotcha. When you run a find it looks like you are getting one result but you are actually getting a set of records which contains 1 entry. Log into mongo: > var x =… more »
Category: "Python"
I've been using Mantis for a couple of years. I run a small company and so have to be extremely flexible. As a result I need to tweak the database to do tasks that are not available using the Mantis front end.
The trouble with editing the bugs and bu… more »
CentOS 5.5 is dependant on Python 2.4. Everything will break if you change it, so we must install a newer version of Python in a different place.
Surprisingly my 1&1 CentOS didn't come with gcc installed so I had to install it myself.
yum -y i… more »
Download and install Eclipse
Even though you will be developing Python you will still need Eclipse with the Java SDK. I think this is for 2 reasons. Firstly Python support for Eclipse is in the form of an Eclipse plug-in as opposed to a fully… more »
With all projects we must create an area to place our sources so that we both have a frame of reference.
mkdir c:\python-modules
Next we must download the sources we need. First up is Python itself. Navigate to: http://www.python.org/download/ Download… more »