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 Very Happy

Posted by Davy Mitchell on 2008-01-10 21:48:21.
Categories: Python, Internet, Software Tags :
Like this post? Digg it or Del.icio.us it. |



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 Cool

Posted by Davy Mitchell on 2008-01-10 13:41:02.
Categories: Angus, Photos Tags :
Like this post? Digg it or Del.icio.us it. |



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.
Categories: Internet, IronPython, Python, MoodNews Tags :   
Like this post? Digg it or Del.icio.us it. |



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.
Categories: General, Internet, Python Tags :
Like this post? Digg it or Del.icio.us it. |



Google Shared Items Permalink

This is a test of a Firedrop2 plugin but -*hey*- this is quality content Cool and the JS in the sidebar can go.

  1. RTM in the Australian Financial Review
  2. Scientists Recycle CO2 with Sunlight to Make Fuel
  3. NEW YEAR TREK DEFIES WEATHER
  4. IronPython and Conferences 2008
  5. UK Moves to Outlaw 'Hacker Tools'
  6. Biblical Scenes As Seen From Google Earth
  7. The UK's Fastest Supercomputer
  8. Islamists blow up Somali colonel
  9. Shell to Grow Algae for Oil
  10. Amazing Wind Turbine Construction Video
  11. Kenyans burned to death in church
  12. Egypt records 19th bird flu death
  13. [book] How to Think Like a (Python) Programmer
  14. Google Products You Forgot All About
  15. Solar Tree Bears Fruit
  16. Web icon set to be discontinued
  17. Home computing pioneer honoured
  18. Malaysian row over word for 'God'
  19. COUNCILLOR ACCUSED OF SELLING TOWN SHORT
  20. Remote Pairing with Copilot and Skype

Posted by Davy Mitchell on 2008-01-07 21:53:23.
Categories: Python, Internet, General, Fun Tags :  
Like this post? Digg it or Del.icio.us it. |



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.
Categories: Python, Christian, General, Internet, Podcast Tags :     
Like this post? Digg it or Del.icio.us it. |




Locations of visitors to this page