TwitterBug

App Image
   April 16th, 2008
840 views / 312 downloads
Admin Administrator: davidbalbert

Category: not specified    Maturity: not specified
Tags: Twitter  AWT  Xml  bugview  Http  base64 

Download Latest Version

TwitterBug is a simple proof of concept Twitter client that pulls the last 20 updates from your friends list and displays them on the BUGview. It uses com.Ostermiller.util.Base64 to encode the username and password for Basic HTTP authentication and the built in XmlNode and XmlParser classes to parse and print the results.

Updates:


Future Plans:


  • Make the UI not suck.

  • Use BUGlocate to do some kind of geo-tweeting. Perhaps an “I am here” tweet with a link to google maps.

  • Switch over to using com.buglabs.bug.program.Base64.


Download


Version 3 created on April 24th, 2008     download jar
Version 2 created on April 24th, 2008     download jar
Version 1 created on April 16th, 2008     download jar

This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

The full license can be found in COPYING.txt


3 Comments

Comment_icon Login to add comment

jconnolly

Bug Labs team jconnolly said on April 16th, 2008 04:11:31 AM

sweet! can't wait to check this out.

jconnolly

Bug Labs team jconnolly said on April 19th, 2008 03:35:32 PM

Looks great Dave! About the line-wrapping, you could always use a java.awt.TextArea and a loooong string to store the parsed data, instead of a series of Labels and a ScrollPane. The constructor for TextArea allows you to specify whether you want a vertical or horizontal (or both) scrollbar. If you disable the horizontal scrollbar, it will do the line-wrapping for you automagically.

davidbalbert

davidbalbert said on April 24th, 2008 02:09:26 PM

Thanks for the suggestion John.