Tomboy notes
Labels: freebase, idea, lazyweb, semantic web, tomboy, want, Zemanta
Labels: freebase, idea, lazyweb, semantic web, tomboy, want, Zemanta
The latest release of the NB_Store module for e-commerce sites based on DotNetNuke CMS seems to support GoodRelations in RDFa.
See here for details:
http://nbstore.codeplex.com/releases/view/45017
Labels: good relations, rdfa, semantic web
Labels: outlook, ridiculous, usability
Labels: automation, want
This application alone received more than 1 million contributions over 14 months with the top contributor casting more than 120k judgments and the top 10 contributors casting half of the total judgments.
Labels: freebase, Science and Technology
$stdin = fopen("php://stdin");
$path = ...; // /path/to/apt/lock/file/majigger
if (!is_writable($path)) {
print "Another package manager appears to be working; would you like to queue this installation? [Y|n]";
$ans = fgets($stdin);
if ($ans === "n") {
exit(0);
}
while (!is_writable($path)) {
sleep(1);
}
}
install($package);