|
Davy Mitchell's Meandering Weblog Home - Angus - Christian - Energy - Fun - General - Internet - IronPython - MoodNews - NintendoDS - Personal - Photos - Podcast - Politics - Python - Scotland - Software Blog Statistics Tag Cloud RSS More Feeds Archives2007-12-292007-12-15 2007-10-06 2007-09-29 2007-09-01 2007-08-04 2007-07-14 2007-07-07 2007-06-30 2007-06-09 |
More Firedrop2 Fun - Twitter Permalink I really wanted to get Firedrop hooked up to other online services. First up was Google Reader, and now thanks to python-twitter I have got a Twitter client together in next to no time. As you can see I am watching Lost
Posted by Davy Mitchell on
2008-01-10 21:48:21. Beach Shot from the Nokia N80 Permalink At the end of last year I picked up a cheap N80 which has a good camera and Wifi which is pretty cool. I have not done very much outdoor photography with it but here's a good example. When the temperature rises, I'll be snapping away again
Posted by Davy Mitchell on
2008-01-10 13:41:02. The BBC and Web Sliders and Mood News Permalink The BBC have been working on some cool RSS projects and they are going to open source a web slider controls soon too. There's a pretty cool demo to play with. The idea is you 'mix' a level of locality to the news you want. I have always wanted to add a slider to MoodNews and this looks like a good fit. Other slider controls are available! Speaking of the BBC, MoodNews got a mention on the PM blog the other day. PM is probably my favourite news program on radio and accompanies me on my commute home each night.
Posted by Davy Mitchell on
2008-01-09 22:07:21. Firedrop2 Plugin - Show Google Reader Shared Items Permalink This a quick plugin for FireDrop to share your GReader items in your blog. Requires the rather cool FeedParser. Remember to change the URL or you will be sharing my items! # Plugin: Grab Google Reader items
import feedparser class GRSharePlugin(object): button_text = "GR Shared Items" def OnClick(self, mainframe): d = feedparser.parse("http://www.google.com/reader/public/atom/user/14887738374122955936/state/com.google/broadcast") entry = mainframe.active_entry entry['body'] = entry['body'] + '<ol>\r\n' for item in d.entries: entry['body'] = entry['body'] + '<li> <a href=\"' + item.link + '\">\r\n' entry['body'] = entry['body'] + item.title entry['body'] = entry['body'] + '</a>\r\n' entry['body'] = entry['body'] + '</ol>\r\n' mainframe.editor.SetValue(entry.tostring()) mainframe.SaveCurrentEntry()
Posted by Davy Mitchell on
2008-01-07 22:10:22. Google Shared Items Permalink
This is a test of a Firedrop2 plugin but -*hey*- this is quality content
Posted by Davy Mitchell on
2008-01-07 21:53:23. Lifespring! Family Bible Daily Audio Gadget Permalink Here's another Google Gadget for Lifespring - this fits into your personalised homepage. The schedules starts again on the 10th January. To help create this and the Google Calendar for LFB, I used IronPython to download the podcast entries and the CPython Interface (with regular Python) to create the Calendar entries. Click the button to add to your Calendar!
Posted by Davy Mitchell on
2008-01-05 16:51:10. |
|