Friday, March 7, 2008

KeyControl 1.0

KeyControl 1.0
A game that tests your typing ability and reaction time.
About KeyControl
A game that tests your typing ability and reaction time. The quicker you react to changes on the screen, the more you score. And as you play, the game gets harder - you have to react faster and faster to beat the computer. Your scores are automatically submited to this web site, so you can compare scores with other players. Warning: KeyControl is addictive!

Swapfile 0.2.2 (GPL)

A tool that can reverse the bytes and also the bits of a file. Read More

Apex Video to MP3 WMA WAV Converter 4.18 (Freeware)

Apex Video to MP3 WMA WAV Converter 4.18 (Freeware)
Convert avi mpeg mov rm wmv vcd dvd video to mp3 wav wma audio with ease

Check out our Christmas Tree widget!!

Check out our Christmas Tree widget!!
We thought everyone could use a Christmas Tree widget that counts down the days (like you need more reminding of how fast it is approaching)!

Go to the Christmas Tree page on the site http://springwidgets.com/widgets/view/46 to get your own tree for your page or to pop to your desktop. It can be configured to your liking. We're working on a Menorah and Kwanzaa also . . . keep checking back!


Romeo Burner 2.3.0.71 (Trial)

The friendliest CD and DVD burning software, and it also allows to erase CD-RW or DVD-RW discs. Read More

EcoModo - The Best of Treehugger [Roundups]

EcoModo - The Best of Treehugger [Roundups]
This week at TreeHugger: An organization called The Greener Grass has an idea that, if it works, would mean you've broken, donated, thrown away, recycled or otherwise replaced your last cell phone....

The Electoral College Widget 1.0

Daily information about “The Electoral College,” a project focusing on the 2008 USA presidential elections.
About The Electoral College Widget
Over the next year, the “The Electoral College” will focus on the 2008 US presidential elections. The Electoral College is a hybrid new media art|journalism project that recognizes the unique moment in history of this election, and the opportunities and challenges presented for democratic, civic engagement. This widget provides daily information on the project. The first card, “IOWA,” features text from “A History of Iowa” by Iowa State University Professor of History Dorothy Schwieder, on the Iowa Official Register Web site. Texts for the widget are drawn from a range of sources, including campaign Web sites and original writing by Electoral College contributors. Photographs by The Electoral College.
Read More

UIC Athletics Widget! 1.0

UIC Athletics Widget! 1.0
Stay up-to-date on UIC Flames sports with breaking news, scores and events with the UIC Athletics Widget.
About UIC Athletics Widget!
The UIC Athletics Widget is your direct connection to the UIC Flames. Get the latest news, results and information on upcoming events, or just get yourself fired up with the UIC fight song, anytime of day. The widget also provides quick links to the UIC Athletics website, ticket sales and merchandise. Show off your school spirit with the UIC Athletics Widget.

How Pioneer Is Keeping World's Best TV Secret Sauce (Mostly) Secret [Kuro]

Pioneer's Kuro plasma sets are the best TVs on the market, right now, bar none. So it was a little disconcerting to hear that they're officially quitting plasma panel production and outsourcing it. ... Read More

How to display your RSS subscriber count

How to display your RSS subscriber count

You've all seen the little FeedBurner subscriber counters on sites that display a site or more often a blogs number of RSS subscribers. Whilst this is a nice widget to display on your site there isn't much in the way of customizing to display something different.

Plaint text subscriber count

There is a way to display the number of readers you have for your feed by using FeedBurners API. This means you can display your subscriber count within some text, for example as part of a blog post. You could also have a separate message somewhere on you site saying X number of readers subscribe to this site.

You can use the PHP code below. You need to have PHP5 otherwise the SimpleXMLElement command will not work.

//get cool feedburner count
$whaturl="http://api.feedburner.com/awareness/1.0/GetFeedData?uri=YourFeedburnerFeedLinkHere";

//Initialize the Curl session
$ch = curl_init();

//Set curl to return the data instead of printing it to the browser.
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
//Set the URL
curl_setopt($ch, CURLOPT_URL, $whaturl);
//Execute the fetch
$data = curl_exec($ch);
//Close the connection
curl_close($ch);

$xml = new SimpleXMLElement($data);
$fb = $xml->feed->entry['circulation'];

//end get cool feedburner count
?>

The next line of PHP needs to be located where you want the subscriber count number to appear. This code needs to occur after the code above for it to work.

I borrowed this code from Mark over at 45n5 so thanks Mark.

This post is from the Newsniche website and should not be reproduced elsewhere. Why not subscribe to the RSS feed and get this information delivered straight to your News reader.