So I was working on a class project (a small interpreter for a mini scheme like language, more about it some other time), and I bumped into a weird C++ thing. There is no std::string::tolower() or std::string::toupper() function. You'll have to do something like
std::transform(str.begin(), str.end(), str.begin(), std::tolower())
for example to tolower all the chars in a string. As it is not that difficult to see, the "Transform way" involves more typing, and well...awkward a bit.
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!