Tim Hibbard

CEO for EnGraph software
posts - 628 , comments - 1632 , trackbacks - 459

My Links

News



Add to Google

Twitter












Tag Cloud

Article Categories

Archives

Post Categories

Image Galleries

EnGraph Blogs

Links

Other

Roll

RSS

There are 27 entries for the tag RSS
Get notified via email of twitter mentions
TwitApps was a great tool, it would email you when somebody @mentioned you on twitter. But, alas, they are shutting down and leaving what I think is a huge hole. So I built my own service that does the exact same thing. To use the service, visit MentionNotifier, and subscribe to your @mentions. To get notified of updates, follow @MentionNotifier or @timhibbard on twitter. Here are some of the FAQ’s: Q: What is this? A: It is a service to notify you by email when somebody has mentioned you in a tweet. ......

Posted On Wednesday, September 23, 2009 11:44 AM | Comments (3) |

Simple class to parse Twitter with LINQ
In ParaPlan 4.0, we use twitter to maintain a change log. I wanted to display this information to our users, so I wrote a little class that calls the RSS feed and uses LINQ to parse the data. All I need is the message and the date, so that is all it pulls out. Here is the class: public class Twitter { public string Message { get; set; } public DateTime PubDate { get; set; } public static List<Twitter> Parse(string User) { var rv = new List<Twitter>(); var url = "http://twitter.com/statuse... ......

Posted On Monday, January 5, 2009 2:53 PM | Comments (9) |

Update on Sprint blocking my mail server - Part 2
Somebody from Sprint must have read my blog post about not being able to receive text messages from Where's Tim. Either that or somebody decided that we were not sending spam through our servers. Either way, I am now getting text messages people send me on Where's Tim. I also publish these messages in a GeoRSS enabled RSS feed. Since the feed does have GeoRSS, you can even view the last 100 messages on Where's Tim. Technorati tags: Where's Tim, GeoRSS, Sprint ......

Posted On Wednesday, January 17, 2007 2:10 PM | Comments (0) |

.NET function to produce RSS pubDate
According to the RSS specification, the pubDate element (when the item was published) must be formatted like this : Mon, 28 May 1979 19:45:32 GMT I've posted an article with C# / VB.NET functions that will accept a DateTime object and return a string properly formatted to meet the pubDate specification. Technorati tags: RSS, pubDate, Code, .NET ......

Posted On Sunday, November 5, 2006 1:39 PM | Comments (1) |

C# / VB.NET function to generate pubDate from DateTime
According to the RSS specification, the pubDate element (when the item was published) must be formatted like this : Mon, 28 May 1979 19:45:32 GMT Here is a function that will accept a DateTime object and return a string formatted properly for pubDate: C# private string BuildPubDate(DateTime d) { try { string RV = ""; string day = d.Day.ToString(); if (day.Length == 1) { day = "0" + day; } string month = d.Month.ToString(); if (month == "1") { month = "January"; } else if (month == "2") { month = ......

Posted On Sunday, November 5, 2006 1:34 PM | Comments (6) |

National Geographic talks about GeoRSS
Joab Jackson published an article in National Geographic that give a very basic introduction of GeoRSS and a couple examples of it's use. One of the examples was Where's Tim!! GeoRSS is a way to add geographic information to an RSS feed. Most generically, it is used to add a latitude / longitude point to an item. To add GeoRSS to your existing feed, add the namespace to your rss element like this: rss version="2.0" xmlns:georss="http://www.ge... xmlns:gml="http://www.openg... ......

Posted On Thursday, October 19, 2006 5:54 PM | Comments (1) |

Sami is flying somewhere today
I was looking at Sami's Where's Tim, and noticed he was at the Stockholm airport. Now, I don't know this for a fact, but I think he gets GPS data when he is actually on the plane. I've seen speeds upto 325 kph in his location RSS feed. That's over 200 mph. I'm going to keep my eye on him today. He was in Paris a couple weeks ago. It was right around the time that I added flickr support. It was so cool to see the satellite images of where he was and pictures that other people had taken of where he ......

Posted On Tuesday, October 3, 2006 8:51 AM | Comments (0) |

Trying out NewsGator
On recommendation from Jeff, I'm trying out NewsGator. After 12 hours of use, this is what I think: Love the mobile app. The interface is pretty and smart. It marks my items read on the server side, so I don't read posts twice. It also allows me to "clip" a feed, so that I can look at it later from the computer. The app is a bit buggy though and often just exits. The NewsGator Online is ok. Nothing special except that I can see how many people subscribe to a particular feed. It's a little slow, but ......

Posted On Wednesday, September 27, 2006 7:52 AM | Comments (1) |

RSS to GeoRSS Converter
Geo-Names has released a utility that will scan an RSS feed for geographical content and spit out a GeoRSS feed. So you can grab the RSS feed for this blog and convert it to GeoRSS. Since Where's Tim understands GeoRSS, you can view the geographical data of my feed in relation to my current location here. You can also use the same utility to spit out KML and view the data in Google Earth ......

Posted On Tuesday, September 26, 2006 9:15 AM | Comments (3) |

VB.net code for adding GeoRSS tags to the FeedMap service
This code shows how to use an ASPX page to render RSS with embedded GeoRSS tags. It calls from the FeedMap service. I talk more about the functionality in this blog post. Imports System.Xml Partial Class FeedMap Inherits System.Web.UI.Page Dim place As String = "" Dim lat As Double = 0 Dim lon As Double = 0 Dim count As Integer = 50 Dim rssUrl As String = "" Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load Try place = Request.QueryString("place") Catch ......

Posted On Thursday, September 21, 2006 7:08 AM | Comments (1) |

Adding GeoRSS extensions to FeedMap
Chandu Thota, a Microsoft MapPoint developer has a service called FeedMap. A lot of people have FeedMap badges on their blog that shows the blogs around their location. The one thing missing from this service is GeoRSS tags, so I took a look at his API and created an RSS feed with GeoRSS extensions. My service is driven by query strings. You can pass in a place, or a lat and a lon, and also an optional count like this: http://timhibbard.com/where... or this ......

Posted On Wednesday, September 20, 2006 9:01 PM | Comments (0) |

GeoRSS is the future of geographic data
GeoRSS is an extension of RSS that allows for geographic information to be associated with a blog post, an event, a gps location, a photograph or any other information where geographic information would help better describe the item. Several websites are recognizing the value of GeoRSS and are adding these extensions to their feeds. Most recently, Wordpress is using GeoRSS to add maps to their posts. One of the things that Jeff and I talked about on our roadtrip is adding GeoRSS tags to ESS. ESS, ......

Posted On Tuesday, September 19, 2006 7:55 PM | Comments (0) |

Flickr adds geocoding feature
Today, Flickr released geocoding for photos on a Yahoo map. Hopefully, they will add GeoRSS tags to their RSS feeds so I can easily overlay pictures on Where's Tim (like I talked about earlier). As a side note. Jeff Croft and Matt Croydon have already geocoded their pictures, so Lawrence has way more geocoded pictures than any other city around. It shows that this little town has geek power :) Via TechCrunch ......

Posted On Monday, August 28, 2006 11:36 AM | Comments (0) |

GeoRSS on Where's Tim
We released a new version of Where's Tim this morning that supports GeoRSS feeds. Use a georss query string with the url of the feed as the query string value like this: http://timhibbard.com/where... or you can create an xml file that contains information about GeoRSS feeds that looks like this: <?xml version="1.0" encoding="utf-8" ?> <GeoRSSFeeds> <feed url="http://timhibbard... ......

Posted On Monday, August 28, 2006 9:22 AM | Comments (0) |

Sprint SMS gets upgrade
Sprint SMS sucked this past weekend, but as PCSIntel reports, there is a good reason. Sprint has been working on a new system that will allow you to view sent and received SMS as well as compose messages directly from your My PCS web page. It would be really cool if they syndicated my messages in RSS so I could plug them into my Google Desktop and search against them ......

Posted On Monday, August 21, 2006 7:02 AM | Comments (0) |

Using GeoRSS - Geocoding RSS Feeds
Like Lance talked about yesterday, I added GeoRSS tags to my Where's Tim Location feed. Essentially, all I needed to do was reference the GeoRSS namespaces: xmlns:georss="http://www.ge... xmlns:gml="http://www.openg... and add the georss:point tag By adding that one little tag, I was then able to drop that RSS feed on top of mapufacture and get this. And Lance was able to mashup the RSS feed using RSSBus with a Yahoo local search and find the closest pizza place to me, and also ......

Posted On Friday, June 16, 2006 10:15 AM | Comments (0) |

New Yahoo Maps
Yahoo Map Image released new maps the other day. We use them on Where's Tim when we need a static map image. Check out the new maps on the location RSS feed and Where's Tim Mobile. [Where's Tim] [EnGraph] ......

Posted On Friday, April 28, 2006 6:37 PM | Comments (0) |

Good Morning Kansas interview on ABC 49
Well, like I said yesterday, I was pretty nervous for my interview with Good Morning Kansas on ABC 49 in Topeka. Kyle was nice enough to go along and we got there around 5:45 AM. Heidi greeted us at the door and said that she had been watching on Where's Tim and already knew I was here!! We went over some basic stuff about the site and she explained that I would be going into the studio around 6:00 and get familiar with the set and the anchors. We went in the studio and she introduced me to Blake ......

Posted On Tuesday, March 28, 2006 10:55 AM | Comments (1) |

More RSS for Where's Tim
We added two new rss feeds for Where's Tim -The text messages people send me - More info -The "Get directions to Tim" requests - More info Eventually, we will also put this data on the site, but for now we have temp pages for the text messaging and directions. We still have the news feed, my location feed and cool people that linked here feed. We will always keep our Where's Tim rss page up to date with new rss information ......

Posted On Saturday, February 11, 2006 6:30 PM | Comments (0) |

EnGraph gets some Emily Chang love

Emily Chang lists Where's Tim on her eHub list of cool web 2.0 applications. She sent me a text message on Where's Tim to tell me we had been listed :)

Of course, if you subscribed to the Who linked to Where's Tim RSS feed you would have already known that!!

Posted On Sunday, February 5, 2006 7:51 AM | Comments (0) |

RSS Feeds for Where's Tim
Where's Tim now has RSS feeds! You can get feeds for: -When my location changes -Who was kind enough to link to Where's Tim -News and development changes The location feed can also be customized via query strings. For example this url: http://www.timhibbard.com/w... will create an RSS feed that will have a map embedded in it that is 500 pixels tall, 311 pixels wide and a zoom level of 9. You can also go to this page, and a form will ......

Posted On Tuesday, January 24, 2006 8:45 AM | Comments (0) |

RSS Feeds for U.S. Congress Votes

Adrian Holovaty (formally of Lawrence Journal World) reports that washingtonpost.com has released RSS feeds for every vote in the U.S. Congress since 1991. Very cool.

I can't wait to see the mashups that come out of this.

Posted On Monday, December 5, 2005 5:34 PM | Comments (0) |

All about Where's Tim Hibbard
New! Check out the new ClickOnce Where's Tim Tasktray alerter! http://timhibbard.com/where... When I tell people that I keep a GPS enabled Nextel phone in my car and anybody, at anytime can see my current position, they always ask, “Well, aren’t you worried about that?” I always say, “No, one day everybody will use their current location to assist them in their everyday lives.” While most people aren’t as comfortable with this level of transparency, I believe the social and business benefits of ......

Posted On Tuesday, November 29, 2005 9:07 AM | Comments (9) |

News feed for Where's Tim

The RSS feed for Where's Tim wasn't working quite right. It's back now.

http://www.timhibbard.com/wherestim.xml

Also, if you need a quick and dirty Windows application to create RSS feeds, check out RSS Builder. It is an open source program and he is looking for developers to help him out.

Posted On Tuesday, November 8, 2005 5:53 PM | Comments (0) |

Location XML Standard
I don't know much about XML standards, so maybe Jeff can help me out with this. I think there should be a location based standard that RSS aggregators and future websites (like Where's Tim) can consume. There would only need to be a few items needed.- Title of location- latitude- longitude- Time stamp- Web linkPeople could syndicate their current location, companies could syndicate their store locations. Cell phone companies could have a standard data format for their location based services. As ......

Posted On Monday, October 3, 2005 7:09 AM | Comments (0) |

KC .NET UG - April
Yesterday's KC .NET UG meeting was good, especially considering the speaker wasn't there! Jeff Julian and another guy (sorry, I don't know your name. If you read this, please let me know your blog address) talked about using RSS and blogs to get information and drive traffic to your website. Jim Erwin and Doug Butscher sat behind me and we had a good discussion about paired development, I'd like to see EnGraph try that sometime, but deadlines are already tight. Kyle Archer came along and he had a ......

Posted On Wednesday, April 27, 2005 4:10 PM | Comments (1) |

Tribute to the community
A couple days ago, I posted how we finally got a RSS feed up. The problem is since we are hosted on UNIX, I couldn't put a nice blog system like .TEXT up. We are moving to a Windows based server soon, and then I can use something like that. Anyways, I still wanted a RSS file so I found a RSS generator called RSS Builder built by Wim Bokkers. The only problem I had was that RSS Builder didn't support the comments tag. Since we don't have an actual blog, I wanted to put an email address in the comment ......

Posted On Thursday, October 28, 2004 3:14 PM | Comments (1) |

Powered by: