TwitterBug

App Image


This application uses:
Bugview 
   April 16th, 2008   ·   1696 views  /  802 downloads

Admin Administrators: Bug Labs teamdavidbalbert

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

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 Date Uploaded by Notes  
Version 3 April 24th, 2008 davidbalbert  (more) (collapse) download
Version 2 April 24th, 2008 davidbalbert  (more) (collapse) download
Version 1 April 16th, 2008 davidbalbert  (more) (collapse) download

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 teamjconnolly said on April 16th, 2008 04:11:31 AM

sweet! can't wait to check this out.

jconnolly

Bug Labs teamjconnolly 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

Bug Labs teamdavidbalbert said on April 24th, 2008 02:09:26 PM

Thanks for the suggestion John.