Functional Programming
joolean you are thinking of currying. I don't know much Scheme, but you can emulate currying. Here is a curry routine for JavaScript.
function curry(fun, param) {
function n(param2) {
return fun(param,param2)
}
return n;
}
iRATE
I implemented a similarity-search plugin for iRATE. With a correctly configured plugin one can pick any song and discover music that sounds similar. Unfortunately, most users find following installation instructions tiring and end up with a non-working plugin. I have to address that issue.
I wish users would just do the Right Thing(tm).
FOAF updates: Trust rankings are now exported, making the data available to other users and websites. An external FOAF URI has been added, allowing users to link to an additional FOAF file.
Keep up with the latest Advogato features by reading the Advogato status blog.
If you're a C programmer with some spare time, take a look at the mod_virgule project page and help us with one of the tasks on the ToDo list!