By Ammon | Published:
October 20, 2009
I wish this was in huge type on the front page of the Bazaar web site because it is essential to understanding just what the heck is going on when you place you files under version control.
I’m going to use an example to explain this. These events are listed in the order that they [...]
By Ammon | Published:
October 9, 2009
LastPass, my fave password manager, was doing funny things with WordPress, reposting and deleting my blog posts. Weird. Fixed now.
By Ammon | Published:
October 9, 2009
You were right Evan, I was lost but now I’m found:
http://ipython.scipy.org/moin/
HUGE improvement on the beautiful Python interpreter. Tab completion! Bash commands! Yes!
By Ammon | Published:
October 8, 2009
Microsoft has now made it impossible to test their stupid browsers with IE Application Compatibility VPC Images on anything but their crappy Virtual PC running on a Windows machine:
http://forums.virtualbox.org/viewtopic.php?f=2&t=21712
Ooooohhhh the hate. I hope Bill Gates gets the hugest hemroid in the world for this. I hope it explodes all over his wife’s face.
By Ammon | Published:
October 8, 2009
It keeps deleting posts. I’ll figure it out tomorrow.
By Ammon | Published:
October 5, 2009
>>> execfile(‘myscript.py’) # Execute ‘myscript.py’
By Ammon | Published:
October 5, 2009
This is comes in very handy when working in the Python interpreter:
>>> import os
>>> os.getcwd() # Returns the current working directory; usually the directory you were in when you started the interpreter
>>> os.chdir(‘/path/to/directory’) # Change the current working directory to ‘path/to/directory’. Also accepts bash commands like ‘..’ and ‘/’