- ARCHIVE / TechLife
- DB visualize : The Universal Database Tool
I’ve been searching for something similar for along time. Just hook up a database, and et voila you can see it, modify and export it with a clean and fast interface. Among the many (really a lot) features you have: Database Browser: Tree based navigation through all database objects. Browse object details and invoke management […]
- NetNewsWire – Great RSS reader for mac/iphone!
For my online and offline RSS needs I’ve been using Shrook for a while – but since recently I got an iPhone the issue of syncing it with my mac gracefully has become quite important. Shrook does have a complementary iPhone reader, but unfortunately it lacks two important features: 1) it doesn’t remember the history […]
- GAE SQL Designer
GAE SQL designer is a simple app that allows you to Draw E-R designs, Edit tables and rows, Manage keys, Create relations (FK constraints), Save & Load designs and Import DB schemas. Finally – it’s online and it’s free! Check it out at http://gaesql.appspot.com/ (docs).
- TextMate Basics Tutorial
TextMate software “brings Apple’s approach to operating systems into the world of text editors. By bridging UNIX underpinnings and GUI, TextMate cherry-picks the best of both worlds to the benefit of expert scripters and novice users alike.” If you are using Textmate this tutorial will show you around the basic features of TextMate and also […]
- MacPython/Leopard – PythonInfo Wiki
Some people have legitimate reasons for wanting to install IDLE on Leopard. E.g., even though Leopard's Xcode 3.0 (and later) supports Python development, it does so in a heavyweight, support-all-of-Cocoa fashion. And educators teaching Python who wish to do so in a platform-agnostic way may also be best served by IDLE. The following steps will […]
- Using the OS X Terminal Application
This tips page provides a detailed introduction to using the unix command line that the Terminal application provides. Check it out here: http://www.timefold.com/osx/tips/shell.html
- pysmell – Python auto-complete – works with TextMate too!
One of the reasons that kept me away (sigh) from TextMate is the lack of autocompletion support.. especially in Python. Seems like those days have ended – I just downloaded and installed Pysmell, and it works great!!! The instructions are very clear, you install it, dbl click the TextMate bundle file and you’re already half […]
- Komodo-Edit :: a nice free python editor!
Finding the perfect IDE for a programming language is always an ongoing process – even more if your language is python – i’ve been happily using eclipse/pydev for a while now, but recently i run into KomodoEdit and I liked it. Mostly, cause it’s lightweight and it’s built with a ‘snippet-oriented’ philosophy (something like textmate). […]
- Python easy_install – The PEAK Developers’ Center
Easy Install is a python module bundled with setuptools that lets you automatically download, build, install, and manage Python packages. That is to say – super easy installation of a long list of Python modules. You can download it from here . Installation on Mac OS: 1. Download the appropriate egg for your version of […]
- Python’s phenotype
Phenotype: any observable characteristic or trait of an organism: such as its morphology, development, biochemical or physiological properties, or behavior. .. IDLE 1.2 >>> type(‘aaa’) <type ‘str’> >>> type(‘aaa’) <type ‘str’> >>> type(‘aaa’) == type(‘a’) True >>> type(type(‘aaa’) == type(‘a’)) <type ‘bool’> >>> type(type(type(‘aaa’) == type(‘a’))) <type ‘type’> >>> type(type(type(type(‘aaa’) == type(‘a’)))) <type ‘type’> >>> […]