Created
April 5, 2011 17:12
-
-
Save ryanbillingsley/904030 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.Windows; | |
using System.Windows.Controls; | |
using System.Windows.Data; | |
using System.Windows.Documents; | |
using System.Windows.Input; | |
using System.Windows.Media; | |
using System.Windows.Media.Imaging; | |
using System.Windows.Navigation; | |
using System.Windows.Shapes; | |
using System.Collections.ObjectModel; | |
using System.Net; | |
using System.Xml.Linq; | |
namespace WpfApplication1 | |
{ | |
/// <summary> | |
/// Interaction logic for MainWindow.xaml | |
/// </summary> | |
public partial class MainWindow : Window | |
{ | |
public MainWindow() | |
{ | |
InitializeComponent(); | |
Loaded+=new RoutedEventHandler(MainWindow_Loaded); | |
} | |
void MainWindow_Loaded(object sender, RoutedEventArgs e) | |
{ | |
tweetList.ItemsSource = _tweets; | |
} | |
private ObservableCollection<Tweet> _tweets = new ObservableCollection<Tweet>(); | |
private void getTweets_Click(object sender, RoutedEventArgs e){ | |
WebClient client = new WebClient(); | |
client.DownloadStringCompleted += (s,ea) => | |
{ | |
XDocument doc = XDocument.Parse(ea.Result); | |
XNamespace ns = "http://www.w3.org/2005/Atom"; | |
var items = from item in doc.Descendants("entry") | |
select new Tweet() | |
{ | |
Title = item.Element(ns + "title").Value, | |
Image = new Uri((from XElement xe in item.Descendants(ns + "link") | |
where xe.Attribute("type").Value == "image/png" | |
select xe.Attribute("href").Value).First<string>()), | |
Link = new Uri((from XElement xe in item.Descendants(ns + "link") | |
where xe.Attribute("type").Value == "image/html" | |
select xe.Attribute("href").Value).First<string>()) | |
}; | |
foreach (Tweet t in items) | |
{ | |
_tweets.Add(t); | |
} | |
}; | |
client.DownloadStringAsync(new Uri("http://search.twitter.com/search.atom?q=wpf")); | |
} | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<feed xmlns:google="http://base.google.com/ns/1.0" xml:lang="en-US" xmlns:openSearch="http://a9.com/-/spec/opensearch/1.1/" xmlns="http://www.w3.org/2005/Atom" xmlns:twitter="http://api.twitter.com/"> | |
<id>tag:search.twitter.com,2005:search/wpf</id> | |
<link type="text/html" href="http://search.twitter.com/search?q=wpf" rel="alternate"/> | |
<link type="application/atom+xml" href="http://search.twitter.com/search.atom?q=wpf" rel="self"/> | |
<title>wpf - Twitter Search</title> | |
<link type="application/opensearchdescription+xml" href="http://search.twitter.com/opensearch.xml" rel="search"/> | |
<link type="application/atom+xml" href="http://search.twitter.com/search.atom?q=wpf&since_id=55316663561760768" rel="refresh"/> | |
<twitter:warning>since_id removed for pagination.</twitter:warning> | |
<updated>2011-04-05T17:11:34Z</updated> | |
<openSearch:itemsPerPage>15</openSearch:itemsPerPage> | |
<link type="application/atom+xml" href="http://search.twitter.com/search.atom?max_id=55316663561760768&page=2&q=wpf" rel="next"/> | |
<entry> | |
<id>tag:search.twitter.com,2005:55316663561760768</id> | |
<published>2011-04-05T17:11:34Z</published> | |
<link type="text/html" href="http://twitter.com/two_under/statuses/55316663561760768" rel="alternate"/> | |
<title>WPF + PRISM = happy. I'm so glad we switched platforms.</title> | |
<content type="html"><b>WPF</b> + PRISM = happy. I&apos;m so glad we switched platforms.</content> | |
<updated>2011-04-05T17:11:34Z</updated> | |
<link type="image/png" href="http://a3.twimg.com/profile_images/1267217149/MattAndBrenda.small_normal.jpg" rel="image"/> | |
<twitter:geo> | |
</twitter:geo> | |
<twitter:metadata> | |
<twitter:result_type>recent</twitter:result_type> | |
</twitter:metadata> | |
<twitter:source><a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a></twitter:source> | |
<twitter:lang>en</twitter:lang> | |
<author> | |
<name>two_under (Matt Usher)</name> | |
<uri>http://twitter.com/two_under</uri> | |
</author> | |
</entry> | |
<entry> | |
<id>tag:search.twitter.com,2005:55316489477177344</id> | |
<published>2011-04-05T17:10:53Z</published> | |
<link type="text/html" href="http://twitter.com/evanhutnick/statuses/55316489477177344" rel="alternate"/> | |
<title>RT @mvalkov: A ton of new features have just landed in #Telerik RadRichTexBox for #Silverlight & #WPF with 2011.Q1 http://bit.ly/fInprQ</title> | |
<content type="html">RT <a href="http://twitter.com/mvalkov">@mvalkov</a>: A ton of new features have just landed in <a href="http://search.twitter.com/search?q=%23Telerik" onclick="pageTracker._setCustomVar(2, 'result_type', 'recent', 3);pageTracker._trackPageview('/intra/hashtag/#Telerik');">#Telerik</a> RadRichTexBox for <a href="http://search.twitter.com/search?q=%23Silverlight" onclick="pageTracker._setCustomVar(2, 'result_type', 'recent', 3);pageTracker._trackPageview('/intra/hashtag/#Silverlight');">#Silverlight</a> &amp; <a href="http://search.twitter.com/search?q=%23WPF" onclick="pageTracker._setCustomVar(2, 'result_type', 'recent', 3);pageTracker._trackPageview('/intra/hashtag/#WPF');">#<b>WPF</b></a> with 2011.Q1 <a href="http://bit.ly/fInprQ">http://bit.ly/fInprQ</a></content> | |
<updated>2011-04-05T17:10:53Z</updated> | |
<link type="image/png" href="http://a3.twimg.com/profile_images/1218218762/a34ef632-eef9-48c8-be04-70da43536d34_normal.png" rel="image"/> | |
<twitter:geo> | |
</twitter:geo> | |
<twitter:metadata> | |
<twitter:result_type>recent</twitter:result_type> | |
</twitter:metadata> | |
<twitter:source><a href="http://www.metrotwit.com/" rel="nofollow">MetroTwit</a></twitter:source> | |
<twitter:lang>en</twitter:lang> | |
<author> | |
<name>evanhutnick (Evan Hutnick)</name> | |
<uri>http://twitter.com/evanhutnick</uri> | |
</author> | |
</entry> | |
<entry> | |
<id>tag:search.twitter.com,2005:55316375832510464</id> | |
<published>2011-04-05T17:10:26Z</published> | |
<link type="text/html" href="http://twitter.com/spebaker/statuses/55316375832510464" rel="alternate"/> | |
<title>Never underestimate the power of nature and the skill of photography - http://ow.ly/4peWK</title> | |
<content type="html">Never underestimate the power of nature and the skill of photography - <a href="http://ow.ly/4peWK">http://ow.ly/4peWK</a></content> | |
<updated>2011-04-05T17:10:26Z</updated> | |
<link type="image/png" href="http://a0.twimg.com/profile_images/1101268031/n1163370304_30121661_2416_normal.jpg" rel="image"/> | |
<twitter:geo> | |
</twitter:geo> | |
<twitter:metadata> | |
<twitter:result_type>recent</twitter:result_type> | |
</twitter:metadata> | |
<twitter:source><a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a></twitter:source> | |
<twitter:lang>en</twitter:lang> | |
<author> | |
<name>spebaker (Spencer Baker)</name> | |
<uri>http://twitter.com/spebaker</uri> | |
</author> | |
</entry> | |
<entry> | |
<id>tag:search.twitter.com,2005:55315841520111616</id> | |
<published>2011-04-05T17:08:18Z</published> | |
<link type="text/html" href="http://twitter.com/neflection/statuses/55315841520111616" rel="alternate"/> | |
<title>WPF 2011の課題曲リストktkr</title> | |
<content type="html"><b>WPF</b> 2011の課題曲リストktkr</content> | |
<updated>2011-04-05T17:08:18Z</updated> | |
<link type="image/png" href="http://a2.twimg.com/profile_images/1083960168/srt10coupe08_021600_w800_bi_normal.jpg" rel="image"/> | |
<twitter:geo> | |
</twitter:geo> | |
<twitter:metadata> | |
<twitter:result_type>recent</twitter:result_type> | |
</twitter:metadata> | |
<twitter:source><a href="http://mixi.jp/promotion.pl?id=voice_twitter" rel="nofollow"> mixi ボイス </a></twitter:source> | |
<twitter:lang>pl</twitter:lang> | |
<author> | |
<name>neflection (neflection)</name> | |
<uri>http://twitter.com/neflection</uri> | |
</author> | |
</entry> | |
<entry> | |
<id>tag:search.twitter.com,2005:55315024041881600</id> | |
<published>2011-04-05T17:05:04Z</published> | |
<link type="text/html" href="http://twitter.com/stackappbot/statuses/55315024041881600" rel="alternate"/> | |
<title>@Zybroxz Stack Overflow post http://bit.ly/hKROqh Double clicking on WPF datagrid WITH RowDetailsTemplate</title> | |
<content type="html"><a href="http://twitter.com/Zybroxz">@Zybroxz</a> Stack Overflow post <a href="http://bit.ly/hKROqh">http://bit.ly/hKROqh</a> Double clicking on <b>WPF</b> datagrid WITH RowDetailsTemplate</content> | |
<updated>2011-04-05T17:05:04Z</updated> | |
<link type="image/png" href="http://a3.twimg.com/profile_images/1035018377/phead_crop_normal.jpg" rel="image"/> | |
<twitter:geo> | |
</twitter:geo> | |
<twitter:metadata> | |
<twitter:result_type>recent</twitter:result_type> | |
</twitter:metadata> | |
<twitter:source><a href="http://stackoftwits.com" rel="nofollow">The Stack of Twits</a></twitter:source> | |
<twitter:lang>en</twitter:lang> | |
<author> | |
<name>stackappbot (StackApp Bot)</name> | |
<uri>http://twitter.com/stackappbot</uri> | |
</author> | |
</entry> | |
<entry> | |
<id>tag:search.twitter.com,2005:55314141036036097</id> | |
<published>2011-04-05T17:01:33Z</published> | |
<link type="text/html" href="http://twitter.com/RobKovach999/statuses/55314141036036097" rel="alternate"/> | |
<title>RT ~ To all WPF's Check out my gal pal @ReaLLisaMarie aka TNA Knockout's Tara's ~ Web of gifts from her ebay store ~ http://bit.ly/gMBPFF</title> | |
<content type="html">RT ~ To all <b>WPF</b>&apos;s Check out my gal pal <a href="http://twitter.com/ReaLLisaMarie">@ReaLLisaMarie</a> aka TNA Knockout&apos;s Tara&apos;s ~ Web of gifts from her ebay store ~ <a href="http://bit.ly/gMBPFF">http://bit.ly/gMBPFF</a></content> | |
<updated>2011-04-05T17:01:33Z</updated> | |
<link type="image/png" href="http://a3.twimg.com/profile_images/1251389473/YuGiOh__normal.png" rel="image"/> | |
<twitter:geo> | |
</twitter:geo> | |
<twitter:metadata> | |
<twitter:result_type>recent</twitter:result_type> | |
</twitter:metadata> | |
<twitter:source><a href="http://twitter.com/">web</a></twitter:source> | |
<twitter:lang>en</twitter:lang> | |
<author> | |
<name>RobKovach999 (Robert W. Kovach)</name> | |
<uri>http://twitter.com/RobKovach999</uri> | |
</author> | |
</entry> | |
<entry> | |
<id>tag:search.twitter.com,2005:55312918102806528</id> | |
<published>2011-04-05T16:56:41Z</published> | |
<link type="text/html" href="http://twitter.com/len_tyai/statuses/55312918102806528" rel="alternate"/> | |
<title>RT @mvalkov: A ton of new features have just landed in #Telerik RadRichTexBox for #Silverlight & #WPF with 2011.Q1 http://bit.ly/fInprQ</title> | |
<content type="html">RT <a href="http://twitter.com/mvalkov">@mvalkov</a>: A ton of new features have just landed in <a href="http://search.twitter.com/search?q=%23Telerik" onclick="pageTracker._setCustomVar(2, 'result_type', 'recent', 3);pageTracker._trackPageview('/intra/hashtag/#Telerik');">#Telerik</a> RadRichTexBox for <a href="http://search.twitter.com/search?q=%23Silverlight" onclick="pageTracker._setCustomVar(2, 'result_type', 'recent', 3);pageTracker._trackPageview('/intra/hashtag/#Silverlight');">#Silverlight</a> &amp; <a href="http://search.twitter.com/search?q=%23WPF" onclick="pageTracker._setCustomVar(2, 'result_type', 'recent', 3);pageTracker._trackPageview('/intra/hashtag/#WPF');">#<b>WPF</b></a> with 2011.Q1 <a href="http://bit.ly/fInprQ">http://bit.ly/fInprQ</a></content> | |
<updated>2011-04-05T16:56:41Z</updated> | |
<link type="image/png" href="http://a0.twimg.com/profile_images/1111247930/n503815719_945807_2151_1_normal.jpg" rel="image"/> | |
<twitter:geo> | |
</twitter:geo> | |
<twitter:metadata> | |
<twitter:result_type>recent</twitter:result_type> | |
</twitter:metadata> | |
<twitter:source><a href="http://www.metrotwit.com/" rel="nofollow">MetroTwit</a></twitter:source> | |
<twitter:lang>en</twitter:lang> | |
<author> | |
<name>len_tyai (Ivy)</name> | |
<uri>http://twitter.com/len_tyai</uri> | |
</author> | |
</entry> | |
<entry> | |
<id>tag:search.twitter.com,2005:55312699151757313</id> | |
<published>2011-04-05T16:55:49Z</published> | |
<link type="text/html" href="http://twitter.com/aston_carter/statuses/55312699151757313" rel="alternate"/> | |
<title>New #job: WPF Developer - City of London Location: City of London Salary: GBP60k - GBP90k .. http://tinyurl.com/5u6g5ak #jobs #hiring</title> | |
<content type="html">New <a href="http://search.twitter.com/search?q=%23job" onclick="pageTracker._setCustomVar(2, 'result_type', 'recent', 3);pageTracker._trackPageview('/intra/hashtag/#job');">#job</a>: <b>WPF</b> Developer - City of London Location: City of London Salary: GBP60k - GBP90k .. <a href="http://tinyurl.com/5u6g5ak">http://tinyurl.com/5u6g5ak</a> <a href="http://search.twitter.com/search?q=%23jobs" onclick="pageTracker._setCustomVar(2, 'result_type', 'recent', 3);pageTracker._trackPageview('/intra/hashtag/#jobs');">#jobs</a> <a href="http://search.twitter.com/search?q=%23hiring" onclick="pageTracker._setCustomVar(2, 'result_type', 'recent', 3);pageTracker._trackPageview('/intra/hashtag/#hiring');">#hiring</a></content> | |
<updated>2011-04-05T16:55:49Z</updated> | |
<link type="image/png" href="http://a0.twimg.com/profile_images/198326318/AC_tn_normal.png" rel="image"/> | |
<twitter:geo> | |
</twitter:geo> | |
<twitter:metadata> | |
<twitter:result_type>recent</twitter:result_type> | |
</twitter:metadata> | |
<twitter:source><a href="http://www.broadbean.com" rel="nofollow">Adcourier</a></twitter:source> | |
<twitter:lang>en</twitter:lang> | |
<author> | |
<name>aston_carter (Aston Carter)</name> | |
<uri>http://twitter.com/aston_carter</uri> | |
</author> | |
</entry> | |
<entry> | |
<id>tag:search.twitter.com,2005:55311621500829697</id> | |
<published>2011-04-05T16:51:32Z</published> | |
<link type="text/html" href="http://twitter.com/mvalkov/statuses/55311621500829697" rel="alternate"/> | |
<title>A ton of new features have just landed in #Telerik RadRichTexBox for #Silverlight & #WPF with 2011.Q1 http://bit.ly/fInprQ</title> | |
<content type="html">A ton of new features have just landed in <a href="http://search.twitter.com/search?q=%23Telerik" onclick="pageTracker._setCustomVar(2, 'result_type', 'recent', 3);pageTracker._trackPageview('/intra/hashtag/#Telerik');">#Telerik</a> RadRichTexBox for <a href="http://search.twitter.com/search?q=%23Silverlight" onclick="pageTracker._setCustomVar(2, 'result_type', 'recent', 3);pageTracker._trackPageview('/intra/hashtag/#Silverlight');">#Silverlight</a> &amp; <a href="http://search.twitter.com/search?q=%23WPF" onclick="pageTracker._setCustomVar(2, 'result_type', 'recent', 3);pageTracker._trackPageview('/intra/hashtag/#WPF');">#<b>WPF</b></a> with 2011.Q1 <a href="http://bit.ly/fInprQ">http://bit.ly/fInprQ</a></content> | |
<updated>2011-04-05T16:51:32Z</updated> | |
<link type="image/png" href="http://a0.twimg.com/profile_images/725374104/LinkedIn_normal.png" rel="image"/> | |
<twitter:geo> | |
</twitter:geo> | |
<twitter:metadata> | |
<twitter:result_type>recent</twitter:result_type> | |
</twitter:metadata> | |
<twitter:source><a href="http://www.metrotwit.com/" rel="nofollow">MetroTwit</a></twitter:source> | |
<twitter:lang>en</twitter:lang> | |
<author> | |
<name>mvalkov (Mike Valkov)</name> | |
<uri>http://twitter.com/mvalkov</uri> | |
</author> | |
</entry> | |
<entry> | |
<id>tag:search.twitter.com,2005:55309992378642432</id> | |
<published>2011-04-05T16:45:04Z</published> | |
<link type="text/html" href="http://twitter.com/stackappbot/statuses/55309992378642432" rel="alternate"/> | |
<title>@Zybroxz Stack Overflow post http://bit.ly/hZCI0L WPF How to refresh data on the Main Form MainWindow.xaml</title> | |
<content type="html"><a href="http://twitter.com/Zybroxz">@Zybroxz</a> Stack Overflow post <a href="http://bit.ly/hZCI0L">http://bit.ly/hZCI0L</a> <b>WPF</b> How to refresh data on the Main Form MainWindow.xaml</content> | |
<updated>2011-04-05T16:45:04Z</updated> | |
<link type="image/png" href="http://a3.twimg.com/profile_images/1035018377/phead_crop_normal.jpg" rel="image"/> | |
<twitter:geo> | |
</twitter:geo> | |
<twitter:metadata> | |
<twitter:result_type>recent</twitter:result_type> | |
</twitter:metadata> | |
<twitter:source><a href="http://stackoftwits.com" rel="nofollow">The Stack of Twits</a></twitter:source> | |
<twitter:lang>en</twitter:lang> | |
<author> | |
<name>stackappbot (StackApp Bot)</name> | |
<uri>http://twitter.com/stackappbot</uri> | |
</author> | |
</entry> | |
<entry> | |
<id>tag:search.twitter.com,2005:55309906370240512</id> | |
<published>2011-04-05T16:44:43Z</published> | |
<link type="text/html" href="http://twitter.com/iKasInt/statuses/55309906370240512" rel="alternate"/> | |
<title>New #job: C# WPF GUI DEVELOPER- PRIME SERVICES Location: City of London Salary: GBP500 - GBP650 .. http://tinyurl.com/6yqvep9 #jobs #hiring</title> | |
<content type="html">New <a href="http://search.twitter.com/search?q=%23job" onclick="pageTracker._setCustomVar(2, 'result_type', 'recent', 3);pageTracker._trackPageview('/intra/hashtag/#job');">#job</a>: C# <b>WPF</b> GUI DEVELOPER- PRIME SERVICES Location: City of London Salary: GBP500 - GBP650 .. <a href="http://tinyurl.com/6yqvep9">http://tinyurl.com/6yqvep9</a> <a href="http://search.twitter.com/search?q=%23jobs" onclick="pageTracker._setCustomVar(2, 'result_type', 'recent', 3);pageTracker._trackPageview('/intra/hashtag/#jobs');">#jobs</a> <a href="http://search.twitter.com/search?q=%23hiring" onclick="pageTracker._setCustomVar(2, 'result_type', 'recent', 3);pageTracker._trackPageview('/intra/hashtag/#hiring');">#hiring</a></content> | |
<updated>2011-04-05T16:44:43Z</updated> | |
<link type="image/png" href="http://a0.twimg.com/profile_images/1167670700/London_Logo_normal.JPG" rel="image"/> | |
<twitter:geo> | |
</twitter:geo> | |
<twitter:metadata> | |
<twitter:result_type>recent</twitter:result_type> | |
</twitter:metadata> | |
<twitter:source><a href="http://www.broadbean.com" rel="nofollow">Adcourier</a></twitter:source> | |
<twitter:lang>en</twitter:lang> | |
<author> | |
<name>iKasInt (Ikas International)</name> | |
<uri>http://twitter.com/iKasInt</uri> | |
</author> | |
</entry> | |
<entry> | |
<id>tag:search.twitter.com,2005:55308507708272641</id> | |
<published>2011-04-05T16:39:10Z</published> | |
<link type="text/html" href="http://twitter.com/Starsratrescue/statuses/55308507708272641" rel="alternate"/> | |
<title>SRR New Store! Look what I just found at the Shopping Mall on Facebook http://t.co/I8eonzT via @Payvment</title> | |
<content type="html">SRR New Store! Look what I just found at the Shopping Mall on Facebook <a href="http://t.co/I8eonzT">http://t.co/I8eonzT</a> via <a href="http://twitter.com/Payvment">@Payvment</a></content> | |
<updated>2011-04-05T16:39:10Z</updated> | |
<link type="image/png" href="http://a0.twimg.com/profile_images/546938493/Maximus_normal.jpg" rel="image"/> | |
<twitter:geo> | |
</twitter:geo> | |
<twitter:metadata> | |
<twitter:result_type>recent</twitter:result_type> | |
</twitter:metadata> | |
<twitter:source><a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a></twitter:source> | |
<twitter:lang>en</twitter:lang> | |
<author> | |
<name>Starsratrescue (Stars Rat Rescue)</name> | |
<uri>http://twitter.com/Starsratrescue</uri> | |
</author> | |
</entry> | |
<entry> | |
<id>tag:search.twitter.com,2005:55308264216342528</id> | |
<published>2011-04-05T16:38:12Z</published> | |
<link type="text/html" href="http://twitter.com/jonasvdaa/statuses/55308264216342528" rel="alternate"/> | |
<title>Internship update - Today was easy to summarize: fun and frustrating. It started out as a war with WPF to... http://tumblr.com/xhq208e1ah</title> | |
<content type="html">Internship update - Today was easy to summarize: fun and frustrating. It started out as a war with <b>WPF</b> to... <a href="http://tumblr.com/xhq208e1ah">http://tumblr.com/xhq208e1ah</a></content> | |
<updated>2011-04-05T16:38:12Z</updated> | |
<link type="image/png" href="http://a2.twimg.com/profile_images/1244907162/vem91lkR_normal" rel="image"/> | |
<twitter:geo> | |
</twitter:geo> | |
<twitter:metadata> | |
<twitter:result_type>recent</twitter:result_type> | |
</twitter:metadata> | |
<twitter:source><a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a></twitter:source> | |
<twitter:lang>en</twitter:lang> | |
<author> | |
<name>jonasvdaa (Jonas)</name> | |
<uri>http://twitter.com/jonasvdaa</uri> | |
</author> | |
</entry> | |
<entry> | |
<id>tag:search.twitter.com,2005:55307310653911041</id> | |
<published>2011-04-05T16:34:25Z</published> | |
<link type="text/html" href="http://twitter.com/eBC_Jobs_SW/statuses/55307310653911041" rel="alternate"/> | |
<title>Chico: Software Engineer Cocoa, Carbon, C++, Win32, WPF, Multimedia - (Nevada City) http://bit.ly/hiXpLi #eBC #Jobs</title> | |
<content type="html">Chico: Software Engineer Cocoa, Carbon, C++, Win32, <b>WPF</b>, Multimedia - (Nevada City) <a href="http://bit.ly/hiXpLi">http://bit.ly/hiXpLi</a> <a href="http://search.twitter.com/search?q=%23eBC" onclick="pageTracker._setCustomVar(2, 'result_type', 'recent', 3);pageTracker._trackPageview('/intra/hashtag/#eBC');">#eBC</a> <a href="http://search.twitter.com/search?q=%23Jobs" onclick="pageTracker._setCustomVar(2, 'result_type', 'recent', 3);pageTracker._trackPageview('/intra/hashtag/#Jobs');">#Jobs</a></content> | |
<updated>2011-04-05T16:34:25Z</updated> | |
<link type="image/png" href="http://a1.twimg.com/profile_images/786566113/eBayClassifiedsWeb_73x73_normal.png" rel="image"/> | |
<twitter:geo> | |
</twitter:geo> | |
<twitter:metadata> | |
<twitter:result_type>recent</twitter:result_type> | |
</twitter:metadata> | |
<twitter:source><a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a></twitter:source> | |
<twitter:lang>es</twitter:lang> | |
<author> | |
<name>eBC_Jobs_SW (eBC Jobs Southwest)</name> | |
<uri>http://twitter.com/eBC_Jobs_SW</uri> | |
</author> | |
</entry> | |
<entry> | |
<id>tag:search.twitter.com,2005:55305587973562369</id> | |
<published>2011-04-05T16:27:34Z</published> | |
<link type="text/html" href="http://twitter.com/eggheadcafepost/statuses/55305587973562369" rel="alternate"/> | |
<title>WPF-TreeView mit LinqExtension-Methode AsHierarchy http://eggheadcafe.com/a.ashx?id=60045</title> | |
<content type="html"><b>WPF</b>-TreeView mit LinqExtension-Methode AsHierarchy <a href="http://eggheadcafe.com/a.ashx?id=60045">http://eggheadcafe.com/a.ashx?id=60045</a></content> | |
<updated>2011-04-05T16:27:34Z</updated> | |
<link type="image/png" href="http://a3.twimg.com/sticky/default_profile_images/default_profile_2_normal.png" rel="image"/> | |
<twitter:geo> | |
</twitter:geo> | |
<twitter:metadata> | |
<twitter:result_type>recent</twitter:result_type> | |
</twitter:metadata> | |
<twitter:source><a href="http://www.eggheadcafe.com" rel="nofollow">EggHeadCafe</a></twitter:source> | |
<twitter:lang>en</twitter:lang> | |
<author> | |
<name>eggheadcafepost (Dexter Dotnetsky)</name> | |
<uri>http://twitter.com/eggheadcafepost</uri> | |
</author> | |
</entry> | |
</feed> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment