Cymbaline is a learning music player. It sets a score for each track based on your listening habits, and you can set thresholds to create playlists with your favorite tracks automatically. In random mode, it will play your favorite tracks more often. It also allows album-based navigation: you can start playing the next album, skip 2 albums ahead, go to a specific album, etc. It has a random queue mode where you see a list of randomly chosen tracks that play consecutively. The queue is also built based on song scores.
PySuite is a collection of Python Vim plugins. You need Vim compiled with python to use them. It includes: an outliner similar to TVO; a todo list manager; a project manager (load/unload by directory/project, make an outline of Python files, etc); a calendar that supports adding notes to dates; a plugin to track expenses and balances; a sortable table with fields separated by 2+ spaces; resize (set a list of main Vim window sizes and use two shortcuts to resize -/+); helpgrep (enter a few words and use :helpgrep cmd to search for them in any order); pystripdoc (make a copy of the buffer with stripped out Python docstrings and comments); pyfolddoc (fold Python docstrings and comments); and aligncode (align code by '=' or '#' chars).
Scribbler is a quick, easy, minimalistic diary script written in Python. When called without arguments, it allows you to edit today's diary entry. When the -b option is used, it allows you to browse old diary entries. Scribbler uses vim and lynx by default, but you can easily change these settings to your favorite editor/browser.
quality vs. quantity. One of the design goals of python was to make code more readable. I think python is very successful in this regard, so it's easier to take existing code and change it rath...