Odeo mi ha abilitato ai suoi podcast: per il momento si può solo ascoltare e non creare (a meno di farlo a mano... il tanto atteso OdeoStudio basato su Flash non me lo fanno ancora usare!!).
Btw, spulciando tra il codice di OdeoSync (in Python) ho trovato che:
- contiene bittorrent
- contiene iPodder
- per realizzare la gui multipiattaforma utilizza wxPython
- e cosa più interessante, ho scoperto l'esistenza si
Psyco
Dal sito dice si che:
Think of Psyco as a kind of just-in-time (JIT) compiler, a little bit like Java's, that emit machine code on the fly instead of interpreting your Python program step by step.[...]
Benefits
2x to 100x speed-ups, typically 4x, with an unmodified Python interpreter and unmodified source code, just a dynamically loadable C extension module.
Drawbacks
Psyco currently uses a lot of memory. It only runs on Intel 386-compatible processors (under any OS) right now. There are some subtle semantic differences (i.e. bugs) with the way Python works; they should not be apparent in most programs.