Programming
Testing Tip : Selenium
0Selenium IDE is an integrated development environment for Selenium tests. It is implemented as a Firefox extension, and allows you to record, edit, and debug tests.
Web Dev. Tip : Programmable Web
0ProgrammableWeb is where you can keep-up with what’s new and interesting with mashups, Web 2.0 APIs, and the new Web as Platform.
Python Links
0The Static Method Thing (Python is not Java!)
http://tomayko.com/writings/the-static-method-thing
AmpChat Code (Amp Example)
https://pangalactic.us/repo/ampchat
An Enhanced Interactive Python shell.
http://ipython.scipy.org/moin/
requires PyReadline:
http://ipython.scipy.org/moin/PyReadline/Intro
Wingware’s Python IDE
http://www.wingware.com/
Misc.
Oracle
http://wiki.oracle.com/page/python?t=anon
ORM Mapper
http://www.sqlalchemy.org/
Python ByteCode
http://thermalnoise.wordpress.com/2007/12/30/exploring-python-bytecode/
Disassembler
http://www.python.org/doc/2.6.1/library/dis.html
Calculate an Upcoming Birthday in PL/SQL.
0ADD_MONTHS(s.dateofbirth,CEIL(MONTHS_BETWEEN(sysdate, s.dateofbirth)/12)*12)
Leap-day proof :)