2014-12-08 17:08:23 +00:00
|
|
|
<kbd>mp_suggest</kbd> is a simple little organizational tool for MP3
|
|
|
|
collections. I wrote it a few years ago to help me organize my own
|
|
|
|
collection, and when the Hy Programming Language came out, I decided it
|
|
|
|
was time for a minor exercise. Rewriting mp\_suggest in Hy was a
|
|
|
|
perfect opportunity.
|
2014-12-07 00:05:37 +00:00
|
|
|
|
|
|
|
Writing mp_suggest was an interesting exercise in returning to Lisp
|
|
|
|
after all these years. I find that I really enjoyed it (although,
|
|
|
|
honestly, Hy's debugging facilities leave a lot to be desired). The
|
|
|
|
style used inside mp_suggest is most definitely not Lispy; looking
|
|
|
|
through it, with its persistent use of cheap anonymous functions and
|
|
|
|
closures and its function-level metaprogramming, I guess the best
|
|
|
|
language I could compare it to is Coffeescript. I like Coffeescript a
|
|
|
|
lot, but I don't get many opportunities to use it professionally, but
|
|
|
|
the sensibilities of Coffeescript (especially Reginald Braithwaite's
|
|
|
|
Ristrettology and his other books on functional programming) heavily
|
|
|
|
influenced the design decisions I made in mp_suggest.
|
2014-12-06 08:45:42 +00:00
|
|
|
|
|
|
|
* Licensing
|
|
|
|
|
|
|
|
This program is released under the terms of the GNU General Public
|
2014-12-08 17:08:23 +00:00
|
|
|
License (GNU GPL).
|
2014-12-06 08:45:42 +00:00
|
|
|
|
|
|
|
You can find a copy of the license in the file COPYING.
|
|
|
|
|
|
|
|
* Using:
|
|
|
|
|
|
|
|
mp_suggest comes with a complete list of commands that can be seen by
|
|
|
|
running the command with no arguments. See the man page that comes
|
|
|
|
with it.
|
|
|
|
|
|
|
|
* To do:
|
|
|
|
|
|
|
|
The TODO file is empty for a reason. This was mostly an exercise in
|
|
|
|
writing Hy.
|