Permanent move

November 21, 2008 by nucflash

Hi,

It’s been a while since the last time I blogged here. The important fact is that I moved to a self-maintained installation of WordPress . The reason I do not delete this blog is because no one can take the name after I delete it.

Thank you all for your comments.

See you there,
Manos._

reBlog

January 30, 2008 by nucflash

reBlog is a nice server side aggregator based on Feed-on-Feeds. What you can do with it is to put your favorites feeds on, choose posts you like, comment on them or tag them and publish them all together later in a new feed. It’s pretty handy if you like to publish a feed with posts you’d like to write about, but you dont have time to..

All nice and pretty until you hit the “Publish Feed” link and instead of your feed you get an error:

Warning: Unknown class passed as parameter in …/reBlog/refeed/library/RF/ClientController.class.php on line 740

reBlog is in Beta as yet, so such things are meant to happen. After looking at the source code for a few minutes I found the offending snippet.

Well, you need to open the the file ClientController.php in library/RF directory which is found in your reBlog installation.

Go to line 737 and find the following snippet:

if(is_subclass_of($ARGS['user'], 'RF_User'))
return $ARGS['user'];


if(is_numeric($ARGS['user']))
return new RF_User(array('id' => intval($ARGS['user'])));

and put the last two lines before the first two so it looks like:

if(is_numeric($ARGS['user']))
return new RF_User(array('id' => intval($ARGS['user'])));


if(is_subclass_of($ARGS['user'], 'RF_User'))
return $ARGS['user'];

Save the file and try to click again on “Publish feed” link. You should be up and running now. You are all set!

Datasets available on the Web

January 29, 2008 by nucflash

Recently I stumbled upon a great post at Datawrangling.com mentioning datasets available on the Web. In the same post I read about the collaborative effort to gather datasets at theinfo.org.