Export Plugin for iPhoto
Posted in Apple, Objective C, Python, Software on Aug 10th, 2006 No Comments »
iPhoto plugin to export in Flash
Posted in Apple, Objective C, Python, Software on Aug 10th, 2006 No Comments »
iPhoto plugin to export in Flash
Posted in Games and puzzles, Python, Software on Apr 30th, 2006 No Comments »
This is a game invented in 1883 by Edouard Lucas d’Amiens, a french mathematician. He loved anagrams, and he used the pseudonim Professor N. Claus (de Siam), which is an anagram of his name, to publish about the game.
The rules are very simple:
Only one disc can be moved at a time
A larger disc can’t [...]
Posted in Python on Feb 22nd, 2006 No Comments »
My project d2g is currently reading a description file for dependencies, then generating a text file that can be fed to graphviz to generate a picture of the graph. yapgvb is a wrapper in Python for graphviz, so I’ll migrate my code to use, so no additional step will be required.
Posted in Python on Jan 20th, 2006 No Comments »
The package pydot, a Python interface to Graphviz’s Dot language, may be a better way to generate the graphs than writing intermediate dot files. Will review
According to the site, pydot provides:
An interface for creating both directed and non directed graphs from Python. Currently all attributes implemented in the Dot language are supported (up to [...]
Posted in Python, Software on Jan 19th, 2006 No Comments »
The PyTables package is a Python interface to HDF5, which is a general purpose library and file format for storing scientific data made at NCSA. HDF5 can store two primary objects: datasets and groups. A dataset is essentially a multidimensional array of data elements, and a group is a structure for organizing objects in an [...]
Posted in Python on Jan 19th, 2006 No Comments »
Found “GiNaC is Not a CAS“, a symbolic algebra manipulation system. Through swiginac it will be possible to use it from Python. The only concern is that may be an overkill.
Posted in Python on Jan 4th, 2006 1 Comment »
I hacked a Python program to export the iPhoto albums into the format I need to use zphoto and publish them on the website as Flash animations. I’d like to extend it to be a iPhoto PlugIn and this article has info on writing plugIns for Cocoa
Posted in Python on Jan 3rd, 2006 No Comments »
This article CHARMING PYTHON (Special Installment) — Revisiting XML Tools for Python – looks very interesting for the project I’m working on
More Modules: xml_pickle And xml_objectify
I have produced my own set of high-level modules for dealing with XML, called xml_pickle and xml_objectify. I have also written enough about these elsewhere (see Resources) that there is [...]
Posted in Python on Jan 2nd, 2006 No Comments »
Will try pygene - simple python genetic algorithms/programming library to test some ideas on strategy selection tools
Posted in Python on Jan 2nd, 2006 No Comments »
I think I found a good way to quickly create native looking applications on OS X. I like to use Python, and there is a library to bridge the Objective C libraries to Python named PyObjC. There is an IDE using this framework named PyOXIDE, but seems a bit buggy