twitterscour 0.2.0 → 0.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/History.txt +3 -0
- data/lib/twitterscour.rb +36 -40
- data/test/fixtures/brent_page_1.html +402 -1164
- data/test/tc_tweets.rb +3 -3
- metadata +3 -5
data/History.txt
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
=== 0.2.1 / 2011-12-29
|
|
2
|
+
* Fixed bug with user tweets that started happening a few weeks ago
|
|
3
|
+
|
|
1
4
|
=== 0.2.0 / 2011-07-28
|
|
2
5
|
* Search term tweets broke a few days ago, fixed this by using the Twitter API. This results in faster searches, and the location is now included for search term searches
|
|
3
6
|
|
data/lib/twitterscour.rb
CHANGED
|
@@ -24,7 +24,8 @@ class TwitterScour
|
|
|
24
24
|
# because to retrieve location info takes another HTTP request which can
|
|
25
25
|
# slow things down. If you want location set this to true
|
|
26
26
|
def self.from_user(username, number_of_pages=1, fetch_location_info=false)
|
|
27
|
-
|
|
27
|
+
http_options = {:headers => {"User-Agent" => "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.2.24) Gecko/20111107 Ubuntu/10.04 (lucid) Firefox/3.6.24"}}
|
|
28
|
+
rsp = HTTParty.get("http://mobile.twitter.com/#{username.gsub(/@/, "")}", http_options)
|
|
28
29
|
raise Exception.new("Error code returned from Twitter - #{rsp.code}") if rsp.code != 200
|
|
29
30
|
locations = {}
|
|
30
31
|
cur_page = 1
|
|
@@ -33,45 +34,43 @@ class TwitterScour
|
|
|
33
34
|
pagination_html = rsp.body
|
|
34
35
|
|
|
35
36
|
main_page = Nokogiri::HTML(rsp.body)
|
|
36
|
-
|
|
37
|
-
|
|
37
|
+
|
|
38
38
|
while rsp.code == 200
|
|
39
39
|
page_body = Nokogiri::HTML(tweets_html)
|
|
40
40
|
|
|
41
|
-
new_tweets = page_body.css('
|
|
41
|
+
new_tweets = page_body.css('div.list-tweet').collect do |tw|
|
|
42
42
|
t = Tweet.new
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
43
|
+
links = tw.css("strong a")
|
|
44
|
+
t.author_name = links[0].text
|
|
45
|
+
t.text = tw.css("span.status").text
|
|
46
|
+
imgs = tw.css("img.list-tweet-img")
|
|
47
|
+
t.author_pic = imgs[0][:src]
|
|
47
48
|
# For some reason, time isn't in quotes in the JSON string which causes problems
|
|
48
|
-
t.time = Time.parse(tw.css("span.timestamp")
|
|
49
|
-
|
|
50
|
-
if
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
locations[place_id] = loc
|
|
74
|
-
end
|
|
49
|
+
#t.time = Time.parse(tw.css("span.js-tweet-timestamp")[0][:"data-time"])
|
|
50
|
+
time_text = tw.css("a.status_link").text
|
|
51
|
+
if time_text =~ /(about )?(\d+) (minute(s?)|hour(s?)|day(s?)) ago.*/
|
|
52
|
+
num = $2.to_i
|
|
53
|
+
if $3.include?("hour")
|
|
54
|
+
num *= 60
|
|
55
|
+
elsif $3.include?("day")
|
|
56
|
+
num *= 1440
|
|
57
|
+
end
|
|
58
|
+
num *= 60 # 60 seconds in a minute
|
|
59
|
+
t.time = Time.now - num
|
|
60
|
+
end
|
|
61
|
+
if fetch_location_info && tw.css("img.geo-icon").length > 0
|
|
62
|
+
link = tw.css("a.status_link")[0][:href]
|
|
63
|
+
detailed_result = HTTParty.get("http://mobile.twitter.com#{link}")
|
|
64
|
+
if detailed_result && detailed_result.code == 200 && detailed_result.body
|
|
65
|
+
page = Nokogiri::HTML(detailed_result.body)
|
|
66
|
+
tweet = page.css("div#tweets-list")[0]
|
|
67
|
+
imgs = tweet.css("img")
|
|
68
|
+
map = imgs.find {|i| i[:src] =~ /maps\.google\.com/}
|
|
69
|
+
if map
|
|
70
|
+
if map[:src] =~ /.*\|(\-?\d+\.?\d*),(\-?\d+\.?\d*).*/
|
|
71
|
+
loc = TweetLocation.new
|
|
72
|
+
loc.center = [$2.to_f, $1.to_f]
|
|
73
|
+
t.location = loc
|
|
75
74
|
end
|
|
76
75
|
end
|
|
77
76
|
end
|
|
@@ -82,11 +81,8 @@ class TwitterScour
|
|
|
82
81
|
cur_page += 1
|
|
83
82
|
if new_tweets.length == TWEETS_PER_PAGE && cur_page <= number_of_pages
|
|
84
83
|
pagination = Nokogiri::HTML(pagination_html)
|
|
85
|
-
next_link = pagination.css("a#
|
|
86
|
-
|
|
87
|
-
next_link << "&authenticity_token=#{authenticity_token}"
|
|
88
|
-
end
|
|
89
|
-
rsp = HTTParty.get("http://twitter.com/#{next_link}")
|
|
84
|
+
next_link = pagination.css("a#more_link").first[:href]
|
|
85
|
+
rsp = HTTParty.get("http://mobile.twitter.com/#{next_link}", http_options)
|
|
90
86
|
pagination_html = rsp.body
|
|
91
87
|
tweets_html = rsp.body
|
|
92
88
|
else
|
|
@@ -1,1197 +1,435 @@
|
|
|
1
|
-
|
|
2
|
-
<
|
|
3
|
-
|
|
4
|
-
<meta http-equiv="X-UA-Compatible" content="IE=8">
|
|
5
|
-
|
|
6
|
-
<script type="text/javascript">
|
|
7
|
-
//<![CDATA[
|
|
8
|
-
(function(g){var a=location.href.split("#!")[1];if(a){window.location.hash = "";g.location.pathname = g.HBR = a.replace(/^([^/])/,"/$1");}})(window);
|
|
9
|
-
//]]>
|
|
10
|
-
</script>
|
|
11
|
-
<script type="text/javascript" charset="utf-8">
|
|
12
|
-
if (!twttr) {
|
|
13
|
-
var twttr = {}
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
// Benchmarking load time.
|
|
17
|
-
// twttr.timeTillReadyUnique = '1289157602-97477-16888';
|
|
18
|
-
// twttr.timeTillReadyStart = new Date().getTime();
|
|
19
|
-
</script>
|
|
20
|
-
|
|
21
|
-
<script type="text/javascript">
|
|
22
|
-
//<![CDATA[
|
|
23
|
-
var page={};var onCondition=function(D,C,A,B){D=D;A=A?Math.min(A,5):5;B=B||100;if(D()){C()}else{if(A>1){setTimeout(function(){onCondition(D,C,A-1,B)},B)}}};
|
|
24
|
-
//]]>
|
|
25
|
-
</script>
|
|
26
|
-
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
|
|
27
|
-
<meta content="en-us" http-equiv="Content-Language" />
|
|
28
|
-
<meta content="Ruby on Rails software developer, Nationals fan, metalhead" name="description" />
|
|
29
|
-
<meta content="no" http-equiv="imagetoolbar" />
|
|
30
|
-
<meta content="width = 780" name="viewport" />
|
|
31
|
-
<meta content="4FTTxY4uvo0RZTMQqIyhh18HsepyJOctQ+XTOu1zsfE=" name="verify-v1" />
|
|
32
|
-
<meta content="1" name="page" />
|
|
33
|
-
<meta content="NOODP" name="robots" />
|
|
34
|
-
<meta content="n" name="session-loggedin" />
|
|
35
|
-
<meta content="sowersb" name="page-user-screen_name" />
|
|
36
|
-
<title id="page_title">Brent Sowers (sowersb) on Twitter</title>
|
|
37
|
-
<link href="http://a1.twimg.com/a/1288981003/images/twitter_57.png" rel="apple-touch-icon" />
|
|
38
|
-
<link href="/oexchange.xrd" rel="http://oexchange.org/spec/0.8/rel/related-target" type="application/xrd+xml" />
|
|
39
|
-
<link href="http://a1.twimg.com/a/1288981003/images/favicon.ico" rel="shortcut icon" type="image/x-icon" />
|
|
40
|
-
<link rel="alternate" href="http://twitter.com/statuses/user_timeline/170030823.rss" title="sowersb's Tweets" type="application/rss+xml" />
|
|
41
|
-
<link rel="alternate" href="http://twitter.com/favorites/170030823.rss" title="sowersb's Favorites" type="application/rss+xml" />
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
<link href="http://a3.twimg.com/a/1288981003/stylesheets/twitter.css?1288982890" media="screen" rel="stylesheet" type="text/css" />
|
|
45
|
-
<link href="http://a3.twimg.com/a/1288981003/stylesheets/geo.css?1288982890" media="screen" rel="stylesheet" type="text/css" />
|
|
46
|
-
<link href="http://a3.twimg.com/a/1288981003/stylesheets/buttons_new.css?1288982890" media="screen" rel="stylesheet" type="text/css" />
|
|
47
|
-
<style type="text/css">
|
|
48
|
-
|
|
49
|
-
body {
|
|
50
|
-
background: #C6E2EE url('http://s.twimg.com/a/1288470193/images/themes/theme2/bg.gif') fixed no-repeat;
|
|
51
|
-
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
body#show #content .meta a.screen-name,
|
|
55
|
-
#content .shared-content .screen-name,
|
|
56
|
-
#content .meta .byline a {
|
|
57
|
-
color: #1F98C7;
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
/* Link Color */
|
|
61
|
-
a,
|
|
62
|
-
#content tr.hentry:hover a,
|
|
63
|
-
body#profile #content div.hentry:hover a,
|
|
64
|
-
#side .stats a:hover span.stats_count,
|
|
65
|
-
#side div.user_icon a:hover,
|
|
66
|
-
li.verified-profile a:hover,
|
|
67
|
-
#side .promotion .definition strong,
|
|
68
|
-
p.list-numbers a:hover,
|
|
69
|
-
#side div.user_icon a:hover span,
|
|
70
|
-
#content .tabMenu li a,
|
|
71
|
-
.translator-profile a:hover,
|
|
72
|
-
#local_trend_locations li a,
|
|
73
|
-
.modal-content .list-slug,
|
|
74
|
-
.tweet-label a:hover,
|
|
75
|
-
ol.statuses li.garuda-tweet:hover .actions-hover li span a,
|
|
76
|
-
ol.statuses li.garuda-tweet .actions-hover li span a:hover {
|
|
77
|
-
color: #1F98C7;
|
|
78
|
-
}
|
|
79
|
-
|
|
80
|
-
body,
|
|
81
|
-
ul#tabMenu li a, #side .section h1,
|
|
82
|
-
#side .stat a,
|
|
83
|
-
#side .stats a span.stats_count,
|
|
84
|
-
#side div.section-header h1,
|
|
85
|
-
#side div.user_icon a,
|
|
86
|
-
#side div.user_icon a:hover,
|
|
87
|
-
#side div.section-header h3.faq-header,
|
|
88
|
-
ul.sidebar-menu li.active a,
|
|
89
|
-
li.verified-profile a,
|
|
90
|
-
#side .promotion a,
|
|
91
|
-
body #content .list-header h2,
|
|
92
|
-
p.list-numbers a,
|
|
93
|
-
.bar h3 label,
|
|
94
|
-
body.timeline #content h1,
|
|
95
|
-
.list-header h2 a span,
|
|
96
|
-
#content .tabMenu li.active a,
|
|
97
|
-
body#direct_messages #content .tabMenu #inbox_tab a,
|
|
98
|
-
body#inbox #content .tabMenu #inbox_tab a,
|
|
99
|
-
body#sent #content .tabMenu #sent_tab a,
|
|
100
|
-
body#direct_messages #content .tabMenu #inbox_tab a,
|
|
101
|
-
body#retweets_by_others #content .tabMenu #retweets_by_others_tab a,
|
|
102
|
-
body#retweets #content .tabMenu #retweets_tab a,
|
|
103
|
-
body#retweeted_by_others #content .tabMenu #retweeted_by_others_tab a,
|
|
104
|
-
body#retweeted_of_mine #content .tabMenu #retweeted_of_mine_tab a,
|
|
105
|
-
.translator-profile a,
|
|
106
|
-
#owners_lists h2 a {
|
|
107
|
-
color: #663B12;
|
|
108
|
-
}
|
|
109
|
-
|
|
110
|
-
.email-address-nag-banner {
|
|
111
|
-
border-bottom: solid 1px #C6E2EE;
|
|
112
|
-
}
|
|
113
|
-
#side_base {
|
|
114
|
-
border-left:1px solid #C6E2EE;
|
|
115
|
-
background-color: #DAECF4;
|
|
116
|
-
}
|
|
117
|
-
|
|
118
|
-
ul.sidebar-menu li.active a,
|
|
119
|
-
ul.sidebar-menu li a:hover,
|
|
120
|
-
#side div#custom_search.active,
|
|
121
|
-
#side .promotion,
|
|
122
|
-
.notify div {
|
|
123
|
-
background-color: #EAFCFF;
|
|
124
|
-
}
|
|
125
|
-
|
|
126
|
-
.list-header,
|
|
127
|
-
.list-controls,
|
|
128
|
-
ul.sidebar-list li.active a,
|
|
129
|
-
ul.sidebar-list li a:hover,
|
|
130
|
-
.list-header-inner {
|
|
131
|
-
background-color: #DAECF4 !important;
|
|
132
|
-
}
|
|
133
|
-
|
|
134
|
-
#side .actions,
|
|
135
|
-
#side .promo,
|
|
136
|
-
#design .side-section {
|
|
137
|
-
border: 1px solid #C6E2EE;
|
|
138
|
-
}
|
|
139
|
-
|
|
140
|
-
#side div.section-header h3 {
|
|
141
|
-
border-bottom: 1px solid #C6E2EE;
|
|
142
|
-
}
|
|
143
|
-
|
|
144
|
-
#side p.sidebar-location {
|
|
145
|
-
border-bottom: 1px dotted #C6E2EE;
|
|
146
|
-
}
|
|
147
|
-
|
|
148
|
-
#side hr {
|
|
149
|
-
background: #C6E2EE;
|
|
150
|
-
color: #C6E2EE;
|
|
151
|
-
}
|
|
152
|
-
|
|
153
|
-
ul.sidebar-menu li.loading a {
|
|
154
|
-
background: #EAFCFF url('http://a1.twimg.com/a/1288981003/images/spinner.gif') no-repeat 171px 0.5em !important;
|
|
155
|
-
}
|
|
156
|
-
|
|
157
|
-
#side .collapsible h2.sidebar-title {
|
|
158
|
-
background: transparent url('http://a2.twimg.com/a/1288981003/images/toggle_up_dark.png') no-repeat center right !important;
|
|
159
|
-
}
|
|
160
|
-
|
|
161
|
-
#side .collapsible.collapsed h2.sidebar-title {
|
|
162
|
-
background: transparent url('http://a1.twimg.com/a/1288981003/images/toggle_down_dark.png') no-repeat center right !important;
|
|
163
|
-
}
|
|
164
|
-
|
|
165
|
-
#side ul.lists-links li a em {
|
|
166
|
-
background: url('http://a3.twimg.com/a/1288981003/images/arrow_right_dark.png') no-repeat left top;
|
|
167
|
-
}
|
|
168
|
-
|
|
169
|
-
#side span.pipe {
|
|
170
|
-
border-left:1px solid #C6E2EE;
|
|
171
|
-
}
|
|
172
|
-
|
|
173
|
-
#list_subscriptions span.view-all,
|
|
174
|
-
#list_memberships span.view-all,
|
|
175
|
-
#profile span.view-all,
|
|
176
|
-
#profile_favorites span.view-all,
|
|
177
|
-
#following span.view-all,
|
|
178
|
-
#followers span.view-all {
|
|
179
|
-
border-left: 0;
|
|
180
|
-
}
|
|
181
|
-
|
|
182
|
-
a.edit-list {
|
|
183
|
-
border-right: 1px solid #C6E2EE !important;
|
|
184
|
-
}
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
</style>
|
|
189
|
-
<link href="http://a2.twimg.com/a/1288981003/stylesheets/following.css?1288982890" media="screen, projection" rel="stylesheet" type="text/css" />
|
|
190
|
-
|
|
191
|
-
</head>
|
|
192
|
-
|
|
193
|
-
<body class="account signin-island" id="profile"> <div class="fixed-banners">
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
</div>
|
|
197
|
-
<script type="text/javascript">
|
|
1
|
+
<html>
|
|
2
|
+
<head>
|
|
3
|
+
<script type="text/javascript">
|
|
198
4
|
//<![CDATA[
|
|
199
5
|
if (window.top !== window.self) {document.write = "";window.top.location = window.self.location; setTimeout(function(){document.body.innerHTML='';},1);window.self.onload=function(evt){document.body.innerHTML='';};}
|
|
6
|
+
|
|
200
7
|
//]]>
|
|
201
8
|
</script>
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
</
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
</a>
|
|
221
|
-
<form method="post" id="sign_out_form" action="/sessions/destroy" style="display:none;">
|
|
222
|
-
<input name="authenticity_token" value="1e78388a93644bf413352a320a1a766378ba4cea" type="hidden"/>
|
|
223
|
-
</form>
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
<div id="signin_controls">
|
|
227
|
-
<span id="have_an_account">
|
|
228
|
-
Have an account?<a href="/login" class="signin" tabindex="3"><span>Sign in</span></a></span>
|
|
229
|
-
<div id="signin_menu" class="common-form standard-form offscreen">
|
|
230
|
-
|
|
231
|
-
<form method="post" id="signin" action="https://twitter.com/sessions">
|
|
232
|
-
|
|
233
|
-
<input id="authenticity_token" name="authenticity_token" type="hidden" value="1e78388a93644bf413352a320a1a766378ba4cea" /> <input id="return_to_ssl" name="return_to_ssl" type="hidden" value="false" />
|
|
234
|
-
<p class="textbox">
|
|
235
|
-
<label for="username">Username or email</label>
|
|
236
|
-
<input type="text" id="username" name="session[username_or_email]" value="" title="username" tabindex="4"/>
|
|
237
|
-
</p>
|
|
238
|
-
|
|
239
|
-
<p class="textbox">
|
|
240
|
-
<label for="password">Password</label>
|
|
241
|
-
<input type="password" id="password" name="session[password]" value="" title="password" tabindex="5"/>
|
|
242
|
-
</p>
|
|
243
|
-
|
|
244
|
-
<p class="remember">
|
|
245
|
-
<input type="submit" id="signin_submit" value="Sign in" tabindex="7"/>
|
|
246
|
-
<input type="checkbox" id="remember" name="remember_me" value="1" tabindex="6"/>
|
|
247
|
-
<label for="remember">Remember me</label>
|
|
248
|
-
</p>
|
|
249
|
-
|
|
250
|
-
<p class="forgot">
|
|
251
|
-
<a href="/account/resend_password" id="resend_password_link">Forgot password?</a>
|
|
252
|
-
</p>
|
|
253
|
-
|
|
254
|
-
<p class="forgot-username">
|
|
255
|
-
<a href="/account/resend_password" id="forgot_username_link" title="If you remember your password, try logging in with your email">Forgot username?</a>
|
|
256
|
-
</p>
|
|
257
|
-
<p class="complete">
|
|
258
|
-
<a href="/account/complete" id="account_complete_link">Already using Twitter on your phone?</a>
|
|
259
|
-
</p>
|
|
260
|
-
<input type="hidden" name="q" id="signin_q" value=""/>
|
|
261
|
-
</form>
|
|
9
|
+
<link href="http://a1.twimg.com/twitter-mobile/912a16ff798148d3eae1ce6ca9e33dfc6c2ae405/assets/base.css" media="screen" rel="stylesheet" type="text/css" />
|
|
10
|
+
<link href="http://a3.twimg.com/twitter-mobile/912a16ff798148d3eae1ce6ca9e33dfc6c2ae405/assets/desktop.css" media="screen" rel="stylesheet" type="text/css" />
|
|
11
|
+
<link href='http://a2.twimg.com/twitter-mobile/912a16ff798148d3eae1ce6ca9e33dfc6c2ae405/images/apple-touch-icon-114.png' rel='apple-touch-icon-precomposed' />
|
|
12
|
+
<link href='http://a2.twimg.com/twitter-mobile/912a16ff798148d3eae1ce6ca9e33dfc6c2ae405/images/ic_fav_alpha_32.png' rel='icon' type='image/png' />
|
|
13
|
+
<link href='http://a2.twimg.com/twitter-mobile/912a16ff798148d3eae1ce6ca9e33dfc6c2ae405/images/startup.png' rel='apple-touch-startup-image' />
|
|
14
|
+
<title>
|
|
15
|
+
Twitter
|
|
16
|
+
</title>
|
|
17
|
+
<meta content='True' name='HandheldFriendly' />
|
|
18
|
+
<meta content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0' name='viewport' />
|
|
19
|
+
|
|
20
|
+
</head>
|
|
21
|
+
<body class=' ' data-csrf-token='c75faec50c5d9a88cf50' data-short-url-length-https='21' data-short-url-length='20'>
|
|
22
|
+
<div id='main'>
|
|
23
|
+
<div class='timeline-head'>
|
|
24
|
+
<div></div>
|
|
25
|
+
<a href="http://mobile.twitter.com/"><span alt="Twitter" class="imgsprite_logo_gif"></span></a>
|
|
26
|
+
<span><a href="http://mobile.twitter.com/" id="home_link">→Home</a></span>
|
|
262
27
|
</div>
|
|
263
|
-
|
|
28
|
+
<br clear='all' id='begin-warning' />
|
|
29
|
+
<div class='timeline-user-friend'>
|
|
30
|
+
<div class='timeline-user-following'></div>
|
|
31
|
+
<a href="http://mobile.twitter.com/sowersb"><img alt="Brent Sowers" class="list-tweet-img" lowend_override="true" src="http://a0.twimg.com/profile_images/1420695224/Snapshot_of_me_1_normal.jpg" /></a>
|
|
32
|
+
<div class='inner-w-img'>
|
|
33
|
+
<div class='user-screen-name'>
|
|
34
|
+
<strong>sowersb</strong>
|
|
35
|
+
(Brent Sowers)
|
|
264
36
|
</div>
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
</div>
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
<div id="profilebox_outer" class="home_page_new_home_page">
|
|
273
|
-
<div id="profilebox" class="clearfix">
|
|
274
|
-
<div id="profiletext">
|
|
275
|
-
<h1>
|
|
276
|
-
<span>Get short, timely messages from Brent Sowers.</span>
|
|
277
|
-
</h1>
|
|
278
|
-
|
|
279
|
-
<h2>Twitter is a rich source of instantly updated information. It's easy to stay updated on an incredibly wide variety of topics. <strong><a href='/signup?follow=sowersb'>Join today</a></strong> and <strong>follow @sowersb</strong>.</h2>
|
|
280
|
-
</div>
|
|
281
|
-
<div id="profilebutton">
|
|
282
|
-
<form action="/signup" id="account_signup_form" method="get" name="account_signup_form"> <input id="follow" name="follow" type="hidden" value="sowersb" />
|
|
283
|
-
<input class="profilesubmit" id="profile_submit" name="commit" type="submit" value="Sign Up ›" />
|
|
284
|
-
</form>
|
|
285
|
-
<p id="profilebox-mobile">
|
|
286
|
-
<span class="sms-follow-instructions">Get updates via SMS by texting <strong>follow sowersb</strong> to <strong>40404</strong> in the United States</span><br/>
|
|
287
|
-
<a id="sms_codes_link">
|
|
288
|
-
<span>Codes for other countries</span>
|
|
289
|
-
</a>
|
|
290
|
-
<div id="sms_codes">
|
|
291
|
-
<table celspacing="0" celpadding="0">
|
|
292
|
-
<thead>
|
|
293
|
-
<tr class="title">
|
|
294
|
-
<td colspan="3">Two-way (sending and receiving) short codes:</td>
|
|
295
|
-
</tr>
|
|
296
|
-
</thead>
|
|
297
|
-
<tbody>
|
|
298
|
-
<tr>
|
|
299
|
-
<th class="sms-country">Country</th>
|
|
300
|
-
<th class="sms-code">Code</th>
|
|
301
|
-
<th class="sms-network">For customers of</th>
|
|
302
|
-
</tr>
|
|
303
|
-
<tr>
|
|
304
|
-
<td class="sms-country">Australia</td>
|
|
305
|
-
<td colspan="2" class="sms-code-network">
|
|
306
|
-
<ul>
|
|
307
|
-
|
|
308
|
-
<li>
|
|
309
|
-
<span class="sms-code">0198089488</span>
|
|
310
|
-
<span class="sms-network">Telstra</span>
|
|
311
|
-
</li>
|
|
312
|
-
|
|
313
|
-
</ul>
|
|
314
|
-
</td>
|
|
315
|
-
</tr><tr>
|
|
316
|
-
<td class="sms-country">Canada</td>
|
|
317
|
-
<td colspan="2" class="sms-code-network">
|
|
318
|
-
<ul>
|
|
319
|
-
|
|
320
|
-
<li>
|
|
321
|
-
<span class="sms-code">21212</span>
|
|
322
|
-
<span class="sms-network">(any)</span>
|
|
323
|
-
</li>
|
|
324
|
-
|
|
325
|
-
</ul>
|
|
326
|
-
</td>
|
|
327
|
-
</tr><tr>
|
|
328
|
-
<td class="sms-country">United Kingdom</td>
|
|
329
|
-
<td colspan="2" class="sms-code-network">
|
|
330
|
-
<ul>
|
|
331
|
-
|
|
332
|
-
<li>
|
|
333
|
-
<span class="sms-code">86444</span>
|
|
334
|
-
<span class="sms-network">Vodafone, Orange, 3, O2</span>
|
|
335
|
-
</li>
|
|
336
|
-
|
|
337
|
-
</ul>
|
|
338
|
-
</td>
|
|
339
|
-
</tr><tr>
|
|
340
|
-
<td class="sms-country">Indonesia</td>
|
|
341
|
-
<td colspan="2" class="sms-code-network">
|
|
342
|
-
<ul>
|
|
343
|
-
|
|
344
|
-
<li>
|
|
345
|
-
<span class="sms-code">89887</span>
|
|
346
|
-
<span class="sms-network">AXIS, 3, Telkomsel</span>
|
|
347
|
-
</li>
|
|
348
|
-
|
|
349
|
-
</ul>
|
|
350
|
-
</td>
|
|
351
|
-
</tr><tr>
|
|
352
|
-
<td class="sms-country">Ireland</td>
|
|
353
|
-
<td colspan="2" class="sms-code-network">
|
|
354
|
-
<ul>
|
|
355
|
-
|
|
356
|
-
<li>
|
|
357
|
-
<span class="sms-code">51210</span>
|
|
358
|
-
<span class="sms-network">O2</span>
|
|
359
|
-
</li>
|
|
360
|
-
|
|
361
|
-
</ul>
|
|
362
|
-
</td>
|
|
363
|
-
</tr><tr>
|
|
364
|
-
<td class="sms-country">India</td>
|
|
365
|
-
<td colspan="2" class="sms-code-network">
|
|
366
|
-
<ul>
|
|
367
|
-
|
|
368
|
-
<li>
|
|
369
|
-
<span class="sms-code">53000</span>
|
|
370
|
-
<span class="sms-network">Bharti Airtel, Videocon</span>
|
|
371
|
-
</li>
|
|
372
|
-
|
|
373
|
-
</ul>
|
|
374
|
-
</td>
|
|
375
|
-
</tr><tr>
|
|
376
|
-
<td class="sms-country">Jordan</td>
|
|
377
|
-
<td colspan="2" class="sms-code-network">
|
|
378
|
-
<ul>
|
|
379
|
-
|
|
380
|
-
<li>
|
|
381
|
-
<span class="sms-code">90903</span>
|
|
382
|
-
<span class="sms-network">Zain</span>
|
|
383
|
-
</li>
|
|
384
|
-
|
|
385
|
-
</ul>
|
|
386
|
-
</td>
|
|
387
|
-
</tr><tr>
|
|
388
|
-
<td class="sms-country">New Zealand</td>
|
|
389
|
-
<td colspan="2" class="sms-code-network">
|
|
390
|
-
<ul>
|
|
391
|
-
|
|
392
|
-
<li>
|
|
393
|
-
<span class="sms-code">8987</span>
|
|
394
|
-
<span class="sms-network">Vodafone, Telecom NZ</span>
|
|
395
|
-
</li>
|
|
396
|
-
|
|
397
|
-
</ul>
|
|
398
|
-
</td>
|
|
399
|
-
</tr><tr>
|
|
400
|
-
<td class="sms-country">United States</td>
|
|
401
|
-
<td colspan="2" class="sms-code-network">
|
|
402
|
-
<ul>
|
|
403
|
-
|
|
404
|
-
<li>
|
|
405
|
-
<span class="sms-code">40404</span>
|
|
406
|
-
<span class="sms-network">(any)</span>
|
|
407
|
-
</li>
|
|
408
|
-
|
|
409
|
-
</ul>
|
|
410
|
-
</td>
|
|
411
|
-
</tr>
|
|
412
|
-
</tbody>
|
|
413
|
-
</table>
|
|
37
|
+
<div class='timeline-following'>
|
|
38
|
+
<a href="http://mobile.twitter.com/sowersb/following">Following:143</a>
|
|
39
|
+
|
|
40
|
+
<a href="http://mobile.twitter.com/sowersb/followers">Followers:42</a>
|
|
414
41
|
</div>
|
|
415
|
-
|
|
416
|
-
</p>
|
|
417
|
-
</div>
|
|
418
|
-
</div>
|
|
419
|
-
</div>
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
<div class="content-bubble-arrow"></div>
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
<table cellspacing="0" class="columns">
|
|
430
|
-
<tbody>
|
|
431
|
-
<tr>
|
|
432
|
-
<td id="content" class="round-left column">
|
|
433
|
-
<div class="wrapper">
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
<div class="profile-user">
|
|
444
|
-
<div id="user_170030823" class="user ">
|
|
445
|
-
<h2 class="thumb clearfix">
|
|
446
|
-
<a href="/account/profile_image/sowersb?hreflang=en"><img alt="" border="0" height="73" id="profile-image" src="http://a3.twimg.com/profile_images/1084691799/Brent-sm_bigger.jpg" valign="middle" width="73" /></a>
|
|
447
|
-
<div class="screen-name">sowersb</div>
|
|
448
|
-
</h2>
|
|
449
|
-
</div>
|
|
450
|
-
</div>
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
<div id="similar_to_followed"></div>
|
|
455
|
-
|
|
456
|
-
<div class="section">
|
|
457
|
-
|
|
458
|
-
<div id="timeline_heading" style="display: none;">
|
|
459
|
-
<h1 id="heading"></h1>
|
|
460
|
-
</div>
|
|
461
|
-
<ol id='timeline' class='statuses'>
|
|
462
|
-
<li class="hentry u-sowersb status latest-status" id="status_29524461332"
|
|
463
|
-
>
|
|
464
|
-
<span class="status-body">
|
|
465
|
-
<span class="status-content">
|
|
466
|
-
<span class="entry-content">It's looking bad for Democrats, but at least Linda McMahon loses in CT, fortunately it's not best 2 of 3 falls.</span>
|
|
467
|
-
</span>
|
|
468
|
-
<span class="meta entry-meta" data='{"place_id":"e1c2cd40f6ee7563","avatar_url":"http:\/\/a3.twimg.com\/profile_images\/1084691799\/Brent-sm_mini.jpg"}'>
|
|
469
|
-
<a class="entry-date" rel="bookmark" href="http://twitter.com/sowersb/status/29524461332">
|
|
470
|
-
<span class="published timestamp" data="{time:'Wed Nov 03 00:58:15 +0000 2010'}">4:58 PM Nov 2nd</span></a>
|
|
471
|
-
<span>via web</span>
|
|
472
|
-
from <a href="http://maps.google.com/maps?q=Ballston - Virginia Square, Arlington" class="geocoded_google_link" target="_blank">Ballston - Virginia Square, Arlington</a>
|
|
473
|
-
</span>
|
|
474
|
-
|
|
475
|
-
<ul class="meta-data clearfix">
|
|
476
|
-
</ul>
|
|
477
|
-
</span>
|
|
478
|
-
</li>
|
|
479
|
-
<li class="hentry u-sowersb status" id="status_29431628530"
|
|
480
|
-
>
|
|
481
|
-
<span class="status-body">
|
|
482
|
-
<span class="status-content">
|
|
483
|
-
<span class="entry-content">Yeah <a href="/search?q=%23Giants" title="#Giants" class="tweet-url hashtag" rel="nofollow">#Giants</a>! Good pitching always beats good hitting. Finally a team I like wins the world series, first time since the 05 White Sox</span>
|
|
484
|
-
</span>
|
|
485
|
-
<span class="meta entry-meta" data='{"place_id":"e1c2cd40f6ee7563","avatar_url":"http:\/\/a3.twimg.com\/profile_images\/1084691799\/Brent-sm_mini.jpg"}'>
|
|
486
|
-
<a class="entry-date" rel="bookmark" href="http://twitter.com/sowersb/status/29431628530">
|
|
487
|
-
<span class="published timestamp" data="{time:'Tue Nov 02 02:34:03 +0000 2010'}">6:34 PM Nov 1st</span></a>
|
|
488
|
-
<span>via web</span>
|
|
489
|
-
from <a href="http://maps.google.com/maps?q=Ballston - Virginia Square, Arlington" class="geocoded_google_link" target="_blank">Ballston - Virginia Square, Arlington</a>
|
|
490
|
-
</span>
|
|
491
|
-
|
|
492
|
-
<ul class="meta-data clearfix">
|
|
493
|
-
</ul>
|
|
494
|
-
</span>
|
|
495
|
-
</li>
|
|
496
|
-
<li class="hentry u-sowersb status" id="status_29223429095"
|
|
497
|
-
>
|
|
498
|
-
<span class="status-body">
|
|
499
|
-
<span class="status-content">
|
|
500
|
-
<span class="entry-content">Perfect day today for a nice hike of buzzards rock trail</span>
|
|
501
|
-
</span>
|
|
502
|
-
<span class="meta entry-meta" data='{"latlng":[38.864994,-77.061775],"place_id":"4580183ad6f11e28","avatar_url":"http:\/\/a3.twimg.com\/profile_images\/1084691799\/Brent-sm_mini.jpg"}'>
|
|
503
|
-
<a class="entry-date" rel="bookmark" href="http://twitter.com/sowersb/status/29223429095">
|
|
504
|
-
<span class="published timestamp" data="{time:'Sat Oct 30 22:43:03 +0000 2010'}">3:43 PM Oct 30th</span></a>
|
|
505
|
-
<span>via <a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a></span>
|
|
506
|
-
from <a href="http://maps.google.com/maps?q=38.864994,-77.061775" class="geocoded_google_link" target="_blank">Aurora Highlands, Arlington <span class='geo-pin'> </span></a>
|
|
507
|
-
</span>
|
|
508
|
-
|
|
509
|
-
<ul class="meta-data clearfix">
|
|
510
|
-
</ul>
|
|
511
|
-
</span>
|
|
512
|
-
</li>
|
|
513
|
-
<li class="hentry u-sowersb status" id="status_28940872142"
|
|
514
|
-
>
|
|
515
|
-
<span class="status-body">
|
|
516
|
-
<span class="status-content">
|
|
517
|
-
<span class="entry-content">My prediction.. <a href="/search?q=%23Giants" title="#Giants" class="tweet-url hashtag" rel="nofollow">#Giants</a> in 7 games</span>
|
|
518
|
-
</span>
|
|
519
|
-
<span class="meta entry-meta" data='{"place_id":"e1c2cd40f6ee7563","avatar_url":"http:\/\/a3.twimg.com\/profile_images\/1084691799\/Brent-sm_mini.jpg"}'>
|
|
520
|
-
<a class="entry-date" rel="bookmark" href="http://twitter.com/sowersb/status/28940872142">
|
|
521
|
-
<span class="published timestamp" data="{time:'Thu Oct 28 00:33:52 +0000 2010'}">5:33 PM Oct 27th</span></a>
|
|
522
|
-
<span>via web</span>
|
|
523
|
-
from <a href="http://maps.google.com/maps?q=Ballston - Virginia Square, Arlington" class="geocoded_google_link" target="_blank">Ballston - Virginia Square, Arlington</a>
|
|
524
|
-
</span>
|
|
525
|
-
|
|
526
|
-
<ul class="meta-data clearfix">
|
|
527
|
-
</ul>
|
|
528
|
-
</span>
|
|
529
|
-
</li>
|
|
530
|
-
<li class="hentry u-sowersb status" id="status_28837336848"
|
|
531
|
-
>
|
|
532
|
-
<span class="status-body">
|
|
533
|
-
<span class="status-content">
|
|
534
|
-
<span class="entry-content">For weather geeks.. RT @<a class="tweet-url username" href="/TWCBreaking" rel="nofollow">TWCBreaking</a>: Record lowest U.S. land-based pressure! Orr, MN now at 955.5 mb, besting the record from ... '78!</span>
|
|
535
|
-
</span>
|
|
536
|
-
<span class="meta entry-meta" data='{"place_id":"e1c2cd40f6ee7563","avatar_url":"http:\/\/a3.twimg.com\/profile_images\/1084691799\/Brent-sm_mini.jpg"}'>
|
|
537
|
-
<a class="entry-date" rel="bookmark" href="http://twitter.com/sowersb/status/28837336848">
|
|
538
|
-
<span class="published timestamp" data="{time:'Tue Oct 26 23:40:18 +0000 2010'}">4:40 PM Oct 26th</span></a>
|
|
539
|
-
<span>via <a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a></span>
|
|
540
|
-
from <a href="http://maps.google.com/maps?q=Ballston - Virginia Square, Arlington" class="geocoded_google_link" target="_blank">Ballston - Virginia Square, Arlington</a>
|
|
541
|
-
</span>
|
|
542
|
-
|
|
543
|
-
<ul class="meta-data clearfix">
|
|
544
|
-
</ul>
|
|
545
|
-
</span>
|
|
546
|
-
</li>
|
|
547
|
-
<li class="hentry u-sowersb status" id="status_28461486926"
|
|
548
|
-
>
|
|
549
|
-
<span class="status-body">
|
|
550
|
-
<span class="status-content">
|
|
551
|
-
<span class="entry-content">Go <a href="/search?q=%23Rangers" title="#Rangers" class="tweet-url hashtag" rel="nofollow">#Rangers</a>! My hope of not having a repeat Yankees-Phillies world series is looking more likely.</span>
|
|
552
|
-
</span>
|
|
553
|
-
<span class="meta entry-meta" data='{"place_id":"e1c2cd40f6ee7563","avatar_url":"http:\/\/a3.twimg.com\/profile_images\/1084691799\/Brent-sm_mini.jpg"}'>
|
|
554
|
-
<a class="entry-date" rel="bookmark" href="http://twitter.com/sowersb/status/28461486926">
|
|
555
|
-
<span class="published timestamp" data="{time:'Sat Oct 23 02:07:49 +0000 2010'}">7:07 PM Oct 22nd</span></a>
|
|
556
|
-
<span>via web</span>
|
|
557
|
-
from <a href="http://maps.google.com/maps?q=Ballston - Virginia Square, Arlington" class="geocoded_google_link" target="_blank">Ballston - Virginia Square, Arlington</a>
|
|
558
|
-
</span>
|
|
559
|
-
|
|
560
|
-
<ul class="meta-data clearfix">
|
|
561
|
-
</ul>
|
|
562
|
-
</span>
|
|
563
|
-
</li>
|
|
564
|
-
<li class="hentry u-sowersb status" id="status_28069006740"
|
|
565
|
-
>
|
|
566
|
-
<span class="status-body">
|
|
567
|
-
<span class="status-content">
|
|
568
|
-
<span class="entry-content"><a href="http://apidock.com" class="tweet-url web" rel="nofollow" target="_blank">apidock.com</a> is coming in handy now that the official online Rails APIs are at version 3</span>
|
|
569
|
-
</span>
|
|
570
|
-
<span class="meta entry-meta" data='{}'>
|
|
571
|
-
<a class="entry-date" rel="bookmark" href="http://twitter.com/sowersb/status/28069006740">
|
|
572
|
-
<span class="published timestamp" data="{time:'Thu Oct 21 23:03:49 +0000 2010'}">4:03 PM Oct 21st</span></a>
|
|
573
|
-
<span>via <a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a></span>
|
|
574
|
-
|
|
575
|
-
</span>
|
|
576
|
-
|
|
577
|
-
<ul class="meta-data clearfix">
|
|
578
|
-
</ul>
|
|
579
|
-
</span>
|
|
580
|
-
</li>
|
|
581
|
-
<li class="hentry u-sowersb status" id="status_27558575415"
|
|
582
|
-
>
|
|
583
|
-
<span class="status-body">
|
|
584
|
-
<span class="status-content">
|
|
585
|
-
<span class="entry-content">Don't think I can drop my Verizon landline, TV and Internet will cost more than the TV, Internet, and landline FIOS package.</span>
|
|
586
|
-
</span>
|
|
587
|
-
<span class="meta entry-meta" data='{"place_id":"e1c2cd40f6ee7563","avatar_url":"http:\/\/a3.twimg.com\/profile_images\/1084691799\/Brent-sm_mini.jpg"}'>
|
|
588
|
-
<a class="entry-date" rel="bookmark" href="http://twitter.com/sowersb/status/27558575415">
|
|
589
|
-
<span class="published timestamp" data="{time:'Sat Oct 16 17:03:49 +0000 2010'}">10:03 AM Oct 16th</span></a>
|
|
590
|
-
<span>via <a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a></span>
|
|
591
|
-
from <a href="http://maps.google.com/maps?q=Ballston - Virginia Square, Arlington" class="geocoded_google_link" target="_blank">Ballston - Virginia Square, Arlington</a>
|
|
592
|
-
</span>
|
|
593
|
-
|
|
594
|
-
<ul class="meta-data clearfix">
|
|
595
|
-
</ul>
|
|
596
|
-
</span>
|
|
597
|
-
</li>
|
|
598
|
-
<li class="hentry u-sowersb status" id="status_27091446272"
|
|
599
|
-
>
|
|
600
|
-
<span class="status-body">
|
|
601
|
-
<span class="status-content">
|
|
602
|
-
<span class="entry-content">I'm shocked, something awesome in Linux that Windows and Mac don't have that normal people would like: <a href="https://edge.one.ubuntu.com/mobile/" class="tweet-url web" rel="nofollow" target="_blank">https://edge.one.ubuntu.com/mobile/</a></span>
|
|
603
|
-
</span>
|
|
604
|
-
<span class="meta entry-meta" data='{"place_id":"e1c2cd40f6ee7563","avatar_url":"http:\/\/a3.twimg.com\/profile_images\/1084691799\/Brent-sm_mini.jpg"}'>
|
|
605
|
-
<a class="entry-date" rel="bookmark" href="http://twitter.com/sowersb/status/27091446272">
|
|
606
|
-
<span class="published timestamp" data="{time:'Tue Oct 12 01:23:23 +0000 2010'}">6:23 PM Oct 11th</span></a>
|
|
607
|
-
<span>via web</span>
|
|
608
|
-
from <a href="http://maps.google.com/maps?q=Ballston - Virginia Square, Arlington" class="geocoded_google_link" target="_blank">Ballston - Virginia Square, Arlington</a>
|
|
609
|
-
</span>
|
|
610
|
-
|
|
611
|
-
<ul class="meta-data clearfix">
|
|
612
|
-
</ul>
|
|
613
|
-
</span>
|
|
614
|
-
</li>
|
|
615
|
-
<li class="hentry u-sowersb status" id="status_26947381137"
|
|
616
|
-
>
|
|
617
|
-
<span class="status-body">
|
|
618
|
-
<span class="status-content">
|
|
619
|
-
<span class="entry-content">Poor Twins, 4 division series against Yankees in past 8 seasons, they've lost all 4, 2 of them sweeps.</span>
|
|
620
|
-
</span>
|
|
621
|
-
<span class="meta entry-meta" data='{"place_id":"e1c2cd40f6ee7563","avatar_url":"http:\/\/a3.twimg.com\/profile_images\/1084691799\/Brent-sm_mini.jpg"}'>
|
|
622
|
-
<a class="entry-date" rel="bookmark" href="http://twitter.com/sowersb/status/26947381137">
|
|
623
|
-
<span class="published timestamp" data="{time:'Sun Oct 10 15:44:06 +0000 2010'}">8:44 AM Oct 10th</span></a>
|
|
624
|
-
<span>via <a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a></span>
|
|
625
|
-
from <a href="http://maps.google.com/maps?q=Ballston - Virginia Square, Arlington" class="geocoded_google_link" target="_blank">Ballston - Virginia Square, Arlington</a>
|
|
626
|
-
</span>
|
|
627
|
-
|
|
628
|
-
<ul class="meta-data clearfix">
|
|
629
|
-
</ul>
|
|
630
|
-
</span>
|
|
631
|
-
</li>
|
|
632
|
-
|
|
633
|
-
<li class="hentry u-mattcutts share status" id="status_26875976861"
|
|
634
|
-
>
|
|
635
|
-
<span class="status-body">
|
|
636
|
-
<span class="big-retweet-icon" title="Retweets from people you follow appear in your timeline."></span>
|
|
637
|
-
<strong><a href="http://twitter.com/mattcutts" class="tweet-url screen-name">mattcutts</a></strong>
|
|
638
|
-
|
|
639
|
-
<span class="entry-content">In case you've doubted that Google is innovative: <a href="http://goo.gl/0IVD" class="tweet-url web" rel="nofollow" target="_blank">http://goo.gl/0IVD</a> Meet our cars. Cars. That drive. Themselves. :)</span>
|
|
640
|
-
<span class="meta entry-meta" data='{}'>
|
|
641
|
-
<a class="entry-date" rel="bookmark" href="http://twitter.com/mattcutts/status/26872713957">
|
|
642
|
-
<span class="published timestamp" data="{time:'Sat Oct 09 20:08:09 +0000 2010'}">1:08 PM Oct 9th</span></a>
|
|
643
|
-
<span>via web</span>
|
|
644
|
-
|
|
645
|
-
</span>
|
|
646
|
-
|
|
647
|
-
<span class="meta entry-meta retweet-meta">
|
|
648
|
-
<span class="shared-content">Retweeted by <a href="/sowersb" class="screen-name timestamp-title" data="{time:"Sat Oct 09 21:00:12 +0000 2010"}" title="28 days ago">sowersb</a> and 100+ others</span>
|
|
649
|
-
</span>
|
|
650
|
-
|
|
651
|
-
<ul class="meta-data clearfix">
|
|
652
|
-
</ul>
|
|
653
|
-
</span>
|
|
654
|
-
</li >
|
|
655
|
-
<li class="hentry u-sowersb status" id="status_26672361352"
|
|
656
|
-
>
|
|
657
|
-
<span class="status-body">
|
|
658
|
-
<span class="status-content">
|
|
659
|
-
<span class="entry-content">Weird. Just saw hundreds of people with bags with orange straps walk by and Pentagon police blocking the intersection off. Should I run?</span>
|
|
660
|
-
</span>
|
|
661
|
-
<span class="meta entry-meta" data='{"place_id":"e1c2cd40f6ee7563","avatar_url":"http:\/\/a3.twimg.com\/profile_images\/1084691799\/Brent-sm_mini.jpg"}'>
|
|
662
|
-
<a class="entry-date" rel="bookmark" href="http://twitter.com/sowersb/status/26672361352">
|
|
663
|
-
<span class="published timestamp" data="{time:'Thu Oct 07 17:54:31 +0000 2010'}">10:54 AM Oct 7th</span></a>
|
|
664
|
-
<span>via <a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a></span>
|
|
665
|
-
from <a href="http://maps.google.com/maps?q=Ballston - Virginia Square, Arlington" class="geocoded_google_link" target="_blank">Ballston - Virginia Square, Arlington</a>
|
|
666
|
-
</span>
|
|
667
|
-
|
|
668
|
-
<ul class="meta-data clearfix">
|
|
669
|
-
</ul>
|
|
670
|
-
</span>
|
|
671
|
-
</li>
|
|
672
|
-
<li class="hentry u-sowersb status" id="status_26605266853"
|
|
673
|
-
>
|
|
674
|
-
<span class="status-body">
|
|
675
|
-
<span class="status-content">
|
|
676
|
-
<span class="entry-content">This <a href="/search?q=%23Postseason" title="#Postseason" class="tweet-url hashtag" rel="nofollow">#Postseason</a> is pretty great so far, and we've got 4 more weeks of it to go!</span>
|
|
677
|
-
</span>
|
|
678
|
-
<span class="meta entry-meta" data='{"place_id":"e1c2cd40f6ee7563","avatar_url":"http:\/\/a3.twimg.com\/profile_images\/1084691799\/Brent-sm_mini.jpg"}'>
|
|
679
|
-
<a class="entry-date" rel="bookmark" href="http://twitter.com/sowersb/status/26605266853">
|
|
680
|
-
<span class="published timestamp" data="{time:'Thu Oct 07 01:15:48 +0000 2010'}">6:15 PM Oct 6th</span></a>
|
|
681
|
-
<span>via web</span>
|
|
682
|
-
from <a href="http://maps.google.com/maps?q=Ballston - Virginia Square, Arlington" class="geocoded_google_link" target="_blank">Ballston - Virginia Square, Arlington</a>
|
|
683
|
-
</span>
|
|
684
|
-
|
|
685
|
-
<ul class="meta-data clearfix">
|
|
686
|
-
</ul>
|
|
687
|
-
</span>
|
|
688
|
-
</li>
|
|
689
|
-
<li class="hentry u-sowersb status" id="status_26504017057"
|
|
690
|
-
>
|
|
691
|
-
<span class="status-body">
|
|
692
|
-
<span class="status-content">
|
|
693
|
-
<span class="entry-content">Documenting almost 4 years of work on a project is a daunting task, I'm gonna have a whole book written by the end.</span>
|
|
694
|
-
</span>
|
|
695
|
-
<span class="meta entry-meta" data='{"place_id":"e1c2cd40f6ee7563","avatar_url":"http:\/\/a3.twimg.com\/profile_images\/1084691799\/Brent-sm_mini.jpg"}'>
|
|
696
|
-
<a class="entry-date" rel="bookmark" href="http://twitter.com/sowersb/status/26504017057">
|
|
697
|
-
<span class="published timestamp" data="{time:'Wed Oct 06 00:13:39 +0000 2010'}">5:13 PM Oct 5th</span></a>
|
|
698
|
-
<span>via <a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a></span>
|
|
699
|
-
from <a href="http://maps.google.com/maps?q=Ballston - Virginia Square, Arlington" class="geocoded_google_link" target="_blank">Ballston - Virginia Square, Arlington</a>
|
|
700
|
-
</span>
|
|
701
|
-
|
|
702
|
-
<ul class="meta-data clearfix">
|
|
703
|
-
</ul>
|
|
704
|
-
</span>
|
|
705
|
-
</li>
|
|
706
|
-
<li class="hentry u-sowersb status" id="status_26323803751"
|
|
707
|
-
>
|
|
708
|
-
<span class="status-body">
|
|
709
|
-
<span class="status-content">
|
|
710
|
-
<span class="entry-content">Godsmack is pretty awesome here, enough to make me forget that its cold</span>
|
|
711
|
-
</span>
|
|
712
|
-
<span class="meta entry-meta" data='{"place_id":"923f01273a937690","avatar_url":"http:\/\/a3.twimg.com\/profile_images\/1084691799\/Brent-sm_mini.jpg"}'>
|
|
713
|
-
<a class="entry-date" rel="bookmark" href="http://twitter.com/sowersb/status/26323803751">
|
|
714
|
-
<span class="published timestamp" data="{time:'Mon Oct 04 02:06:29 +0000 2010'}">7:06 PM Oct 3rd</span></a>
|
|
715
|
-
<span>via <a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a></span>
|
|
716
|
-
from <a href="http://maps.google.com/maps?q=Columbia, MD" class="geocoded_google_link" target="_blank">Columbia, MD</a>
|
|
717
|
-
</span>
|
|
718
|
-
|
|
719
|
-
<ul class="meta-data clearfix">
|
|
720
|
-
</ul>
|
|
721
|
-
</span>
|
|
722
|
-
</li>
|
|
723
|
-
<li class="hentry u-sowersb status" id="status_26294264501"
|
|
724
|
-
>
|
|
725
|
-
<span class="status-body">
|
|
726
|
-
<span class="status-content">
|
|
727
|
-
<span class="entry-content">Nationals <a href="/search?q=%23Game162" title="#Game162" class="tweet-url hashtag" rel="nofollow">#Game162</a> is yet another close one, so many close games this season!</span>
|
|
728
|
-
</span>
|
|
729
|
-
<span class="meta entry-meta" data='{"place_id":"e1c2cd40f6ee7563","avatar_url":"http:\/\/a3.twimg.com\/profile_images\/1084691799\/Brent-sm_mini.jpg"}'>
|
|
730
|
-
<a class="entry-date" rel="bookmark" href="http://twitter.com/sowersb/status/26294264501">
|
|
731
|
-
<span class="published timestamp" data="{time:'Sun Oct 03 19:32:56 +0000 2010'}">12:32 PM Oct 3rd</span></a>
|
|
732
|
-
<span>via web</span>
|
|
733
|
-
from <a href="http://maps.google.com/maps?q=Ballston - Virginia Square, Arlington" class="geocoded_google_link" target="_blank">Ballston - Virginia Square, Arlington</a>
|
|
734
|
-
</span>
|
|
735
|
-
|
|
736
|
-
<ul class="meta-data clearfix">
|
|
737
|
-
</ul>
|
|
738
|
-
</span>
|
|
739
|
-
</li>
|
|
740
|
-
<li class="hentry u-sowersb status" id="status_26191471141"
|
|
741
|
-
>
|
|
742
|
-
<span class="status-body">
|
|
743
|
-
<span class="status-content">
|
|
744
|
-
<span class="entry-content">@<a class="tweet-url username" href="/jaysonst" rel="nofollow">jaysonst</a> Love the article today, never realized hitting home runs was so dangerous!</span>
|
|
745
|
-
</span>
|
|
746
|
-
<span class="meta entry-meta" data='{}'>
|
|
747
|
-
<a class="entry-date" rel="bookmark" href="http://twitter.com/sowersb/status/26191471141">
|
|
748
|
-
<span class="published timestamp" data="{time:'Sat Oct 02 17:05:24 +0000 2010'}">10:05 AM Oct 2nd</span></a>
|
|
749
|
-
<span>via <a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a></span>
|
|
750
|
-
|
|
751
|
-
<a href="http://twitter.com/jaysonst/status/26179202278">in reply to jaysonst</a></span>
|
|
752
|
-
|
|
753
|
-
<ul class="meta-data clearfix">
|
|
754
|
-
</ul>
|
|
755
|
-
</span>
|
|
756
|
-
</li>
|
|
757
|
-
<li class="hentry u-sowersb status" id="status_25963955309"
|
|
758
|
-
>
|
|
759
|
-
<span class="status-body">
|
|
760
|
-
<span class="status-content">
|
|
761
|
-
<span class="entry-content">There are a surprising number of people on the 5am metro train, I barely got a seat</span>
|
|
762
|
-
</span>
|
|
763
|
-
<span class="meta entry-meta" data='{"place_id":"319ee7b36c9149da","avatar_url":"http:\/\/a3.twimg.com\/profile_images\/1084691799\/Brent-sm_mini.jpg"}'>
|
|
764
|
-
<a class="entry-date" rel="bookmark" href="http://twitter.com/sowersb/status/25963955309">
|
|
765
|
-
<span class="published timestamp" data="{time:'Thu Sep 30 09:25:01 +0000 2010'}">2:25 AM Sep 30th</span></a>
|
|
766
|
-
<span>via <a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a></span>
|
|
767
|
-
from <a href="http://maps.google.com/maps?q=Arlington, VA" class="geocoded_google_link" target="_blank">Arlington, VA</a>
|
|
768
|
-
</span>
|
|
769
|
-
|
|
770
|
-
<ul class="meta-data clearfix">
|
|
771
|
-
</ul>
|
|
772
|
-
</span>
|
|
773
|
-
</li>
|
|
774
|
-
<li class="hentry u-sowersb status" id="status_25844941057"
|
|
775
|
-
>
|
|
776
|
-
<span class="status-body">
|
|
777
|
-
<span class="status-content">
|
|
778
|
-
<span class="entry-content">Had fun tonight at Nats park, great game, Dunn hits walk off home run. going to game tomorrow too, hopefully it's as good</span>
|
|
779
|
-
</span>
|
|
780
|
-
<span class="meta entry-meta" data='{}'>
|
|
781
|
-
<a class="entry-date" rel="bookmark" href="http://twitter.com/sowersb/status/25844941057">
|
|
782
|
-
<span class="published timestamp" data="{time:'Wed Sep 29 02:28:03 +0000 2010'}">7:28 PM Sep 28th</span></a>
|
|
783
|
-
<span>via <a href="http://seesmic.com/seesmic_mobile/android/" rel="nofollow">Seesmic for Android</a></span>
|
|
784
|
-
|
|
785
|
-
</span>
|
|
786
|
-
|
|
787
|
-
<ul class="meta-data clearfix">
|
|
788
|
-
</ul>
|
|
789
|
-
</span>
|
|
790
|
-
</li>
|
|
791
|
-
<li class="hentry u-sowersb status" id="status_25612780723"
|
|
792
|
-
>
|
|
793
|
-
<span class="status-body">
|
|
794
|
-
<span class="status-content">
|
|
795
|
-
<span class="entry-content">@<a class="tweet-url username" href="/DaveFreireich" rel="nofollow">DaveFreireich</a> Just noticed your msg today, shoot me an email at the address listed at <a href="http://www.coordinatecommons.com" class="tweet-url web" rel="nofollow" target="_blank">http://www.coordinatecommons.com</a></span>
|
|
796
|
-
</span>
|
|
797
|
-
<span class="meta entry-meta" data='{"place_id":"e1c2cd40f6ee7563","avatar_url":"http:\/\/a3.twimg.com\/profile_images\/1084691799\/Brent-sm_mini.jpg"}'>
|
|
798
|
-
<a class="entry-date" rel="bookmark" href="http://twitter.com/sowersb/status/25612780723">
|
|
799
|
-
<span class="published timestamp" data="{time:'Sun Sep 26 18:22:42 +0000 2010'}">11:22 AM Sep 26th</span></a>
|
|
800
|
-
<span>via web</span>
|
|
801
|
-
from <a href="http://maps.google.com/maps?q=Ballston - Virginia Square, Arlington" class="geocoded_google_link" target="_blank">Ballston - Virginia Square, Arlington</a>
|
|
802
|
-
<a href="http://twitter.com/DaveFreireich/status/25120392632">in reply to DaveFreireich</a></span>
|
|
803
|
-
|
|
804
|
-
<ul class="meta-data clearfix">
|
|
805
|
-
</ul>
|
|
806
|
-
</span>
|
|
807
|
-
</li>
|
|
808
|
-
</ol>
|
|
809
|
-
<div id="pagination">
|
|
810
|
-
<a href="/sowersb?max_id=29524461332&page=2&twttr=true" class="round more" id="more" rel="next">more</a> </div>
|
|
811
|
-
|
|
812
42
|
</div>
|
|
43
|
+
<div class='friend-actions'>
|
|
44
|
+
<form action="http://mobile.twitter.com/sowersb/follow" class="user_button" method="post"><div style="margin:0;padding:0;display:inline"><input name="authenticity_token" type="hidden" value="c75faec50c5d9a88cf50" /></div>
|
|
45
|
+
<span class='flag' style='display:none'>
|
|
46
|
+
<img src='/images/sprites/ic_followcheck.gif' />
|
|
47
|
+
Following
|
|
48
|
+
</span>
|
|
49
|
+
<input id="last_url" name="last_url" type="hidden" value="/sowersb" />
|
|
50
|
+
<button class="friend-actions-btn" id="sowersb" type="submit"><div class="friend-actions-btn-inner"><span class="imgsprite_ic_follow_gif"></span><span>Follow</span></div></button>
|
|
51
|
+
</form>
|
|
52
|
+
|
|
53
|
+
<form action="http://mobile.twitter.com/sowersb/block" class="user_button" method="post"><div style="margin:0;padding:0;display:inline"><input name="authenticity_token" type="hidden" value="c75faec50c5d9a88cf50" /></div>
|
|
54
|
+
<span class='flag' style='display:none'>
|
|
55
|
+
<img src='/images/sprites/ic_followcheck.gif' />
|
|
56
|
+
Following
|
|
57
|
+
</span>
|
|
58
|
+
<input id="last_url" name="last_url" type="hidden" value="/sowersb" />
|
|
59
|
+
<button class="friend-actions-btn" id="" type="submit"><div class="friend-actions-btn-inner"><span class="imgsprite_ic_block_gif"></span><span>Block</span></div></button>
|
|
60
|
+
</form>
|
|
813
61
|
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
</div>
|
|
819
|
-
</td>
|
|
820
|
-
|
|
821
|
-
<td id="side_base" class="column round-right">
|
|
822
|
-
|
|
823
|
-
<div id="side">
|
|
824
|
-
|
|
825
|
-
<div id="profile" class="section profile-side">
|
|
826
|
-
<span class="section-links">
|
|
827
|
-
</span>
|
|
828
|
-
<address>
|
|
829
|
-
<ul class="about vcard entry-author">
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
<li><span class="label">Name</span> <span class="fn">Brent Sowers</span></li>
|
|
834
|
-
<li><span class="label">Location</span> <span class="adr">Arlington, VA</span></li>
|
|
835
|
-
<li><span class="label">Web</span> <a href="http://www.coordinatecommons.com" class="url" rel="me nofollow" target="_blank">http://www.coordi...</a></li>
|
|
836
|
-
<li id="bio"><span class="label">Bio</span> <span class="bio">Ruby on Rails software developer, Nationals fan, metalhead</span></li>
|
|
837
|
-
|
|
838
|
-
</ul>
|
|
839
|
-
</address>
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
<div class="stats">
|
|
844
|
-
<table>
|
|
845
|
-
<tr>
|
|
846
|
-
<td>
|
|
847
|
-
|
|
848
|
-
|
|
849
|
-
|
|
850
|
-
<a href="/sowersb/following" id="following_count_link" class="link-following_page" rel="me" title="See who sowersb is following">
|
|
851
|
-
<span id="following_count" class="stats_count numeric">65 </span>
|
|
852
|
-
<span class="label">Following</span>
|
|
853
|
-
</a>
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
</td>
|
|
857
|
-
<td>
|
|
858
|
-
|
|
859
|
-
<a href="/sowersb/followers" id="follower_count_link" class="link-followers_page" rel="me" title="See who's following sowersb">
|
|
860
|
-
<span id="follower_count" class="stats_count numeric">9 </span>
|
|
861
|
-
<span class="label">Followers</span>
|
|
862
|
-
</a>
|
|
863
|
-
|
|
864
|
-
</td>
|
|
865
|
-
<td>
|
|
866
|
-
|
|
867
|
-
<a href="/sowersb/lists/memberships" id="lists_count_link" class="link-lists_page" rel="me" title="See which lists sowersb is on">
|
|
868
|
-
<span id="lists_count" class="stats_count numeric">0 </span>
|
|
869
|
-
<span class="label">Listed</span>
|
|
870
|
-
</a>
|
|
871
|
-
|
|
872
|
-
</td>
|
|
873
|
-
</tr>
|
|
874
|
-
</table>
|
|
875
|
-
|
|
876
62
|
</div>
|
|
877
|
-
|
|
878
63
|
</div>
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
<hr/>
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
<div id="following">
|
|
894
|
-
|
|
895
|
-
<h2 class="sidebar-title" id="fm_menu"><span>Following</span></h2>
|
|
896
|
-
<div class="sidebar-menu">
|
|
897
|
-
<div id="following_list">
|
|
898
|
-
|
|
899
|
-
<span class="vcard">
|
|
900
|
-
<a href="/rocknrollhotel" class="url" hreflang="en" rel="contact" title="Rock and Roll Hotel "><img alt="Rock and Roll Hotel " class="photo fn" height="24" src="http://a0.twimg.com/profile_images/74244712/1024567165_m_mini.jpg" width="24" /></a> </span>
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
<span class="vcard">
|
|
904
|
-
<a href="/jimcaple" class="url" hreflang="en" rel="contact" title="Jim Caple"><img alt="Jim Caple" class="photo fn" height="24" src="http://a0.twimg.com/profile_images/442523292/mymug_mini.jpg" width="24" /></a> </span>
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
<span class="vcard">
|
|
908
|
-
<a href="/redpalacedc" class="url" hreflang="en" rel="contact" title="Red Palace"><img alt="Red Palace" class="photo fn" height="24" src="http://a1.twimg.com/profile_images/1123692781/176838335_mini.jpg" width="24" /></a> </span>
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
<span class="vcard">
|
|
912
|
-
<a href="/HikingUpward" class="url" hreflang="en" rel="contact" title="HikingUpward"><img alt="HikingUpward" class="photo fn" height="24" src="http://a2.twimg.com/profile_images/57474282/hiking_upward_05_mini.jpg" width="24" /></a> </span>
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
<span class="vcard">
|
|
916
|
-
<a href="/FranklyMLS" class="url" hreflang="en" rel="contact" title="FranklyMLS.com"><img alt="FranklyMLS.com" class="photo fn" height="24" src="http://a0.twimg.com/profile_images/588468020/iphone-icon_mini.png" width="24" /></a> </span>
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
<span class="vcard">
|
|
920
|
-
<a href="/Sevendust" class="url" hreflang="en" rel="contact" title="SEVENDUST"><img alt="SEVENDUST" class="photo fn" height="24" src="http://a1.twimg.com/profile_images/641940641/IMG_08_mini.jpg" width="24" /></a> </span>
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
<span class="vcard">
|
|
924
|
-
<a href="/RubyNation" class="url" hreflang="en" rel="contact" title="RubyNation"><img alt="RubyNation" class="photo fn" height="24" src="http://a2.twimg.com/profile_images/689896170/rnTwitter_mini.jpg" width="24" /></a> </span>
|
|
925
|
-
|
|
926
|
-
|
|
927
|
-
<span class="vcard">
|
|
928
|
-
<a href="/masnBen" class="url" hreflang="en" rel="contact" title="Ben Goessling onMASN"><img alt="Ben Goessling onMASN" class="photo fn" height="24" src="http://a0.twimg.com/profile_images/742480800/twitter_icon_ben_mini.jpg" width="24" /></a> </span>
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
<span class="vcard">
|
|
932
|
-
<a href="/StateTheatreDC" class="url" hreflang="en" rel="contact" title="The State Theatre "><img alt="The State Theatre " class="photo fn" height="24" src="http://a3.twimg.com/profile_images/313610647/Logo_EQ_mini.jpg" width="24" /></a> </span>
|
|
933
|
-
|
|
934
|
-
|
|
935
|
-
<span class="vcard">
|
|
936
|
-
<a href="/MetalChris" class="url" hreflang="en" rel="contact" title="DC Heavy Metal"><img alt="DC Heavy Metal" class="photo fn" height="24" src="http://a1.twimg.com/profile_images/117082053/756756487_006490ee3b_o_mini.jpg" width="24" /></a> </span>
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
<span class="vcard">
|
|
940
|
-
<a href="/NatsTownNews" class="url" hreflang="en" rel="contact" title="NatsTown"><img alt="NatsTown" class="photo fn" height="24" src="http://a2.twimg.com/profile_images/521804202/WSH_2323_mini.gif" width="24" /></a> </span>
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
<span class="vcard">
|
|
944
|
-
<a href="/dcrug" class="url" hreflang="en" rel="contact" title="dcrug"><img alt="dcrug" class="photo fn" height="24" src="http://a0.twimg.com/profile_images/62937240/DCRUG_mini.png" width="24" /></a> </span>
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
<span class="vcard">
|
|
948
|
-
<a href="/shitmydadsays" class="url" hreflang="en" rel="contact" title="Justin"><img alt="Justin" class="photo fn" height="24" src="http://a3.twimg.com/profile_images/362705903/dad_mini.jpg" width="24" /></a> </span>
|
|
949
|
-
|
|
950
|
-
|
|
951
|
-
<span class="vcard">
|
|
952
|
-
<a href="/rails" class="url" hreflang="en" rel="contact" title="Ruby on Rails"><img alt="Ruby on Rails" class="photo fn" height="24" src="http://a1.twimg.com/profile_images/57028781/rails_mini.png" width="24" /></a> </span>
|
|
953
|
-
|
|
954
|
-
|
|
955
|
-
<span class="vcard">
|
|
956
|
-
<a href="/rorjobs" class="url" hreflang="en" rel="contact" title="Ruby On Rails Jobs"><img alt="Ruby On Rails Jobs" class="photo fn" height="24" src="http://a2.twimg.com/profile_images/120823606/twitterlogo_mini.gif" width="24" /></a> </span>
|
|
957
|
-
|
|
958
|
-
|
|
959
|
-
<span class="vcard">
|
|
960
|
-
<a href="/frigejohnny" class="url" hreflang="en" rel="contact" title="john brown"><img alt="john brown" class="photo fn" height="24" src="http://s.twimg.com/a/1287420575/images/default_profile_4_mini.png" width="24" /></a> </span>
|
|
961
|
-
|
|
962
|
-
|
|
963
|
-
<span class="vcard">
|
|
964
|
-
<a href="/josemangin" class="url" hreflang="en" rel="contact" title="Jose Mangin"><img alt="Jose Mangin" class="photo fn" height="24" src="http://a1.twimg.com/profile_images/1133973737/image_mini.jpg" width="24" /></a> </span>
|
|
965
|
-
|
|
966
|
-
|
|
967
|
-
<span class="vcard">
|
|
968
|
-
<a href="/TheKaylaRiley" class="url" hreflang="en" rel="contact" title="Kayla Riley"><img alt="Kayla Riley" class="photo fn" height="24" src="http://a1.twimg.com/profile_images/1139289317/nyc_124_mini.jpg" width="24" /></a> </span>
|
|
969
|
-
|
|
970
|
-
|
|
971
|
-
<span class="vcard">
|
|
972
|
-
<a href="/cstammen35" class="url" hreflang="en" rel="contact" title="Craig Stammen"><img alt="Craig Stammen" class="photo fn" height="24" src="http://a1.twimg.com/profile_images/728469549/Craig_Stammen_tall_away_mini.jpg" width="24" /></a> </span>
|
|
973
|
-
|
|
974
|
-
|
|
975
|
-
<span class="vcard">
|
|
976
|
-
<a href="/MLB" class="url" hreflang="en" rel="contact" title="MLB"><img alt="MLB" class="photo fn" height="24" src="http://a3.twimg.com/profile_images/1017578351/2010MLBlogo_mini.jpg" width="24" /></a> </span>
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
<span class="vcard">
|
|
980
|
-
<a href="/expressnightout" class="url" hreflang="en" rel="contact" title="ExpressNightOut.com"><img alt="ExpressNightOut.com" class="photo fn" height="24" src="http://a0.twimg.com/profile_images/1018083828/express-e_new2_mini.jpg" width="24" /></a> </span>
|
|
981
|
-
|
|
982
|
-
|
|
983
|
-
<span class="vcard">
|
|
984
|
-
<a href="/rich_kilmer" class="url" hreflang="en" rel="contact" title="Rich Kilmer"><img alt="Rich Kilmer" class="photo fn" height="24" src="http://a2.twimg.com/profile_images/64930806/rich_mini.png" width="24" /></a> </span>
|
|
985
|
-
|
|
986
|
-
|
|
987
|
-
<span class="vcard">
|
|
988
|
-
<a href="/ezmobius" class="url" hreflang="en" rel="contact" title="Ezra Zygmuntowicz"><img alt="Ezra Zygmuntowicz" class="photo fn" height="24" src="http://a2.twimg.com/profile_images/50804322/Picture_17_mini.png" width="24" /></a> </span>
|
|
989
|
-
|
|
990
|
-
|
|
991
|
-
<span class="vcard">
|
|
992
|
-
<a href="/NatsTix" class="url" hreflang="en" rel="contact" title="NatsTixSales: Nicole"><img alt="NatsTixSales: Nicole" class="photo fn" height="24" src="http://a3.twimg.com/profile_images/618470775/NationalsScriptLogoSq_mini.jpg" width="24" /></a> </span>
|
|
993
|
-
|
|
994
|
-
|
|
995
|
-
<span class="vcard">
|
|
996
|
-
<a href="/hoptoadapp" class="url" hreflang="en" rel="contact" title="hoptoadapp"><img alt="hoptoadapp" class="photo fn" height="24" src="http://a2.twimg.com/profile_images/112228446/hoptoad-fluid_mini.png" width="24" /></a> </span>
|
|
997
|
-
|
|
998
|
-
|
|
999
|
-
<span class="vcard">
|
|
1000
|
-
<a href="/BlackCatDC" class="url" hreflang="en" rel="contact" title="Black Cat"><img alt="Black Cat" class="photo fn" height="24" src="http://a1.twimg.com/profile_images/400194629/l_91bbde43bb784d38ad9f6e20ca1633cf_mini.jpg" width="24" /></a> </span>
|
|
1001
|
-
|
|
1002
|
-
|
|
1003
|
-
<span class="vcard">
|
|
1004
|
-
<a href="/jaysonst" class="url" hreflang="en" rel="contact" title="Jayson Stark"><img alt="Jayson Stark" class="photo fn" height="24" src="http://a2.twimg.com/profile_images/102155350/jaypic180_mini.png" width="24" /></a> </span>
|
|
1005
|
-
|
|
1006
|
-
|
|
1007
|
-
<span class="vcard">
|
|
1008
|
-
<a href="/OldHossRadbourn" class="url" hreflang="en" rel="contact" title="Old Hoss Radbourn"><img alt="Old Hoss Radbourn" class="photo fn" height="24" src="http://a1.twimg.com/profile_images/272006869/Radbourne_charles_1_mini.jpg" width="24" /></a> </span>
|
|
1009
|
-
|
|
1010
|
-
|
|
1011
|
-
<span class="vcard">
|
|
1012
|
-
<a href="/Rdibs49" class="url" hreflang="en" rel="contact" title="Rob Dibble"><img alt="Rob Dibble" class="photo fn" height="24" src="http://a0.twimg.com/profile_images/1154868904/image_mini.jpg" width="24" /></a> </span>
|
|
1013
|
-
|
|
1014
|
-
|
|
1015
|
-
<span class="vcard">
|
|
1016
|
-
<a href="/FakeRobDibble" class="url" hreflang="en" rel="contact" title="Fake Rob Dibble"><img alt="Fake Rob Dibble" class="photo fn" height="24" src="http://a2.twimg.com/profile_images/1079161490/Dibz_mini.jpg" width="24" /></a> </span>
|
|
1017
|
-
|
|
1018
|
-
|
|
1019
|
-
<span class="vcard">
|
|
1020
|
-
<a href="/dhh" class="url" hreflang="en" rel="contact" title="DHH"><img alt="DHH" class="photo fn" height="24" src="http://a0.twimg.com/profile_images/67881828/headshot64_mini.jpg" width="24" /></a> </span>
|
|
1021
|
-
|
|
1022
|
-
|
|
1023
|
-
<span class="vcard">
|
|
1024
|
-
<a href="/rbates" class="url" hreflang="en" rel="contact" title="Ryan Bates"><img alt="Ryan Bates" class="photo fn" height="24" src="http://a0.twimg.com/profile_images/52189024/ryan_bates_cropped_mini.jpg" width="24" /></a> </span>
|
|
1025
|
-
|
|
1026
|
-
|
|
1027
|
-
<span class="vcard">
|
|
1028
|
-
<a href="/railscasts" class="url" hreflang="en" rel="contact" title="Railscasts"><img alt="Railscasts" class="photo fn" height="24" src="http://a1.twimg.com/profile_images/83693421/logo_mini.png" width="24" /></a> </span>
|
|
1029
|
-
|
|
1030
|
-
|
|
1031
|
-
<span class="vcard">
|
|
1032
|
-
<a href="/pjb3" class="url" hreflang="en" rel="contact" title="Paul Barry"><img alt="Paul Barry" class="photo fn" height="24" src="http://a1.twimg.com/profile_images/1029286697/pjb3_mini.png" width="24" /></a> </span>
|
|
1033
|
-
|
|
1034
|
-
|
|
1035
|
-
<span class="vcard">
|
|
1036
|
-
<a href="/mirRoRplacement" class="url" hreflang="en" rel="contact" title="mirRoR Placement"><img alt="mirRoR Placement" class="photo fn" height="24" src="http://a0.twimg.com/profile_images/659088772/mirRoR_twitter_icon_mini.jpg" width="24" /></a> </span>
|
|
1037
|
-
|
|
1038
|
-
|
|
1039
|
-
<span class="vcard">
|
|
1040
|
-
<a href="/baseball_ref" class="url" hreflang="en" rel="contact" title="Baseball Reference"><img alt="Baseball Reference" class="photo fn" height="24" src="http://a1.twimg.com/profile_images/380680877/baseball_ref_twitter_mini.png" width="24" /></a> </span>
|
|
1041
|
-
|
|
1042
|
-
|
|
1043
|
-
</div>
|
|
1044
|
-
<div id="friends_view_all">
|
|
1045
|
-
<a href="/sowersb/following" rel="me">View all…</a>
|
|
1046
|
-
</div>
|
|
1047
|
-
|
|
64
|
+
<div class='timeline-header-friend' style='text-align: left'>
|
|
65
|
+
<a href="http://mobile.twitter.com/sowersb" class="timeline-header-selected">Tweets</a>
|
|
66
|
+
<a href="http://mobile.twitter.com/sowersb/favorites" class="">Favs</a>
|
|
67
|
+
<a href="http://mobile.twitter.com/sowersb/messages" class="">Msgs</a>
|
|
68
|
+
<a href="http://mobile.twitter.com/sowersb/about" class="">About</a>
|
|
1048
69
|
</div>
|
|
1049
70
|
|
|
1050
|
-
<hr/>
|
|
1051
|
-
</div>
|
|
1052
|
-
|
|
1053
|
-
|
|
1054
|
-
|
|
1055
|
-
|
|
1056
|
-
|
|
1057
|
-
<div id="rssfeed">
|
|
1058
|
-
<a href="/statuses/user_timeline/170030823.rss" class="xref rss profile-rss" rel="alternate" type="application/rss+xml">RSS feed of sowersb's tweets</a>
|
|
1059
|
-
<a href="/favorites/170030823.rss" class="xref rss favorites-rss" rel="alternate" type="application/rss+xml">RSS feed of sowersb's favorites</a>
|
|
1060
|
-
</div>
|
|
1061
|
-
|
|
1062
71
|
|
|
72
|
+
<div class='timeline-friend timeline autorefresh'>
|
|
73
|
+
<div id='tweets-list'>
|
|
74
|
+
<div class='list-tweet' id='tweet_152104690673397760'>
|
|
75
|
+
<a href="http://mobile.twitter.com/sowersb"><img alt="Brent Sowers" class="list-tweet-img" src="http://a0.twimg.com/profile_images/1420695224/Snapshot_of_me_1_normal.jpg" /></a>
|
|
76
|
+
<div class='inner-w-img'>
|
|
77
|
+
<span>
|
|
78
|
+
<strong><a href="http://mobile.twitter.com/sowersb">sowersb</a></strong>
|
|
79
|
+
<span class="status">Pretty funny stuff on hipster programmers - <a rel="nofollow" href="http://t.co/IXcJ2OrO" target="_blank" class="twitter_external_link">hipstergrammers.tumblr.com</a></span>
|
|
80
|
+
</span>
|
|
81
|
+
<div class='list-tweet-status'>
|
|
82
|
+
<a href="/sowersb/status/152104690673397760" class="status_link">1 day ago</a>
|
|
1063
83
|
|
|
84
|
+
<a href="/sowersb/status/152104690673397760"><span class="imgsprite_ic_geotweet_png"></span></a>
|
|
85
|
+
</div>
|
|
86
|
+
<div class='list-tweet-actions'>
|
|
87
|
+
</div>
|
|
88
|
+
</div>
|
|
89
|
+
</div>
|
|
90
|
+
<div class='list-tweet' id='tweet_152036015903744000'>
|
|
91
|
+
<a href="http://mobile.twitter.com/sowersb"><img alt="Brent Sowers" class="list-tweet-img" src="http://a0.twimg.com/profile_images/1420695224/Snapshot_of_me_1_normal.jpg" /></a>
|
|
92
|
+
<div class='inner-w-img'>
|
|
93
|
+
<span>
|
|
94
|
+
<strong><a href="http://mobile.twitter.com/sowersb">sowersb</a></strong>
|
|
95
|
+
<span class="status">Got something working this AM that I spent all afternoon yesterday trying to figure out, and I didn't change anything...</span>
|
|
96
|
+
</span>
|
|
97
|
+
<div class='list-tweet-status'>
|
|
98
|
+
<a href="/sowersb/status/152036015903744000" class="status_link">1 day ago</a>
|
|
99
|
+
|
|
100
|
+
<a href="/sowersb/status/152036015903744000"><span class="imgsprite_ic_geotweet_png"></span></a>
|
|
101
|
+
</div>
|
|
102
|
+
<div class='list-tweet-actions'>
|
|
103
|
+
</div>
|
|
104
|
+
</div>
|
|
105
|
+
</div>
|
|
106
|
+
<div class='list-tweet' id='tweet_150285017023647744'>
|
|
107
|
+
<a href="http://mobile.twitter.com/sowersb"><img alt="Brent Sowers" class="list-tweet-img" src="http://a0.twimg.com/profile_images/1420695224/Snapshot_of_me_1_normal.jpg" /></a>
|
|
108
|
+
<div class='inner-w-img'>
|
|
109
|
+
<span>
|
|
110
|
+
<strong><a href="http://mobile.twitter.com/sowersb">sowersb</a></strong>
|
|
111
|
+
<span class="status"><a href="/AndyMinor" class="twitter-atreply"><s>@</s>AndyMinor</a> That's great</span>
|
|
112
|
+
</span>
|
|
113
|
+
<div class='list-tweet-status'>
|
|
114
|
+
<a href="/sowersb/status/150285017023647744" class="status_link">6 days ago</a>
|
|
115
|
+
<span class="text"> </span><a href="/AndyMinor/status/150281923061760001" class="status_link">in reply to AndyMinor</a>
|
|
116
|
+
</div>
|
|
117
|
+
<div class='list-tweet-actions'>
|
|
118
|
+
</div>
|
|
119
|
+
</div>
|
|
120
|
+
</div>
|
|
121
|
+
<div class='list-tweet' id='tweet_150059868353601536'>
|
|
122
|
+
<a href="http://mobile.twitter.com/sowersb"><img alt="Brent Sowers" class="list-tweet-img" src="http://a0.twimg.com/profile_images/1420695224/Snapshot_of_me_1_normal.jpg" /></a>
|
|
123
|
+
<div class='inner-w-img'>
|
|
124
|
+
<span>
|
|
125
|
+
<strong><a href="http://mobile.twitter.com/sowersb">sowersb</a></strong>
|
|
126
|
+
<span class="status">Finished up my blog post about how to get a Rails Facebooker FBML app working again - <a rel="nofollow" href="http://t.co/gdGbu0ba" target="_blank" class="twitter_external_link">bit.ly/w2YqIu</a></span>
|
|
127
|
+
</span>
|
|
128
|
+
<div class='list-tweet-status'>
|
|
129
|
+
<a href="/sowersb/status/150059868353601536" class="status_link">7 days ago</a>
|
|
1064
130
|
|
|
1065
|
-
|
|
1066
|
-
|
|
1067
|
-
|
|
1068
|
-
|
|
1069
|
-
|
|
1070
|
-
|
|
1071
|
-
|
|
1072
|
-
|
|
1073
|
-
|
|
1074
|
-
|
|
1075
|
-
|
|
1076
|
-
|
|
1077
|
-
|
|
1078
|
-
|
|
1079
|
-
<li class="first">© 2010 Twitter</li>
|
|
1080
|
-
<li><a href="/about">About Us</a></li>
|
|
1081
|
-
<li><a href="/about/contact">Contact</a></li>
|
|
1082
|
-
<li><a href="http://blog.twitter.com">Blog</a></li>
|
|
1083
|
-
<li><a href="http://status.twitter.com">Status</a></li>
|
|
1084
|
-
<li><a href="/about/resources">Resources</a></li>
|
|
1085
|
-
<li><a href="http://dev.twitter.com/">API</a></li>
|
|
1086
|
-
<li><a href="http://business.twitter.com/twitter101">Business</a></li>
|
|
1087
|
-
<li><a href="http://support.twitter.com">Help</a></li>
|
|
1088
|
-
<li><a href="/jobs">Jobs</a></li>
|
|
1089
|
-
<li><a href="/tos">Terms</a></li>
|
|
1090
|
-
<li><a href="/privacy">Privacy</a></li>
|
|
1091
|
-
</ul>
|
|
1092
|
-
</div>
|
|
1093
|
-
|
|
1094
|
-
|
|
1095
|
-
|
|
1096
|
-
<hr />
|
|
1097
|
-
|
|
1098
|
-
</div>
|
|
1099
|
-
|
|
1100
|
-
|
|
1101
|
-
|
|
1102
|
-
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.0/jquery.min.js" type="text/javascript"></script>
|
|
1103
|
-
<script src="http://a2.twimg.com/a/1288981003/javascripts/twitter.js?1288982890" type="text/javascript"></script>
|
|
1104
|
-
<script src="http://a0.twimg.com/a/1288981003/javascripts/lib/jquery.tipsy.min.js?1288982890" type="text/javascript"></script>
|
|
1105
|
-
<script type='text/javascript' src='http://www.google.com/jsapi'></script>
|
|
1106
|
-
<script src="http://a0.twimg.com/a/1288981003/javascripts/lib/gears_init.js?1288982890" type="text/javascript"></script>
|
|
1107
|
-
<script src="http://a1.twimg.com/a/1288981003/javascripts/lib/mustache.js?1288982890" type="text/javascript"></script>
|
|
1108
|
-
<script src="http://a2.twimg.com/a/1288981003/javascripts/geov1.js?1288982890" type="text/javascript"></script>
|
|
1109
|
-
<script src="http://a0.twimg.com/a/1288981003/javascripts/api.js?1288982890" type="text/javascript"></script>
|
|
1110
|
-
<script type="text/javascript">
|
|
1111
|
-
//<![CDATA[
|
|
1112
|
-
$.cookie('tz_offset_sec', (-1 * (new Date()).getTimezoneOffset())*60);
|
|
1113
|
-
//]]>
|
|
1114
|
-
</script>
|
|
1115
|
-
<script src="http://a1.twimg.com/a/1288981003/javascripts/lib/mustache.js?1288982890" type="text/javascript"></script>
|
|
1116
|
-
<script src="http://a2.twimg.com/a/1288981003/javascripts/dismissable.js?1288982890" type="text/javascript"></script>
|
|
1117
|
-
|
|
1118
|
-
|
|
1119
|
-
<script type="text/javascript">
|
|
1120
|
-
//<![CDATA[
|
|
1121
|
-
page.user_screenname = 'sowersb';
|
|
1122
|
-
page.user_fullname = 'Brent Sowers';
|
|
1123
|
-
page.controller_name = 'AccountController';
|
|
1124
|
-
page.action_name = 'profile';
|
|
1125
|
-
twttr.form_authenticity_token = '1e78388a93644bf413352a320a1a766378ba4cea';
|
|
1126
|
-
$.ajaxSetup({ data: { authenticity_token: '1e78388a93644bf413352a320a1a766378ba4cea' } });
|
|
1127
|
-
|
|
1128
|
-
// FIXME: Reconcile with the kinds on the Status model.
|
|
1129
|
-
twttr.statusKinds = {
|
|
1130
|
-
UPDATE: 1,
|
|
1131
|
-
SHARE: 2
|
|
1132
|
-
};
|
|
1133
|
-
twttr.ListPerUserLimit = 20;
|
|
1134
|
-
|
|
1135
|
-
|
|
1136
|
-
|
|
1137
|
-
|
|
1138
|
-
//]]>
|
|
1139
|
-
</script>
|
|
1140
|
-
<script type="text/javascript">
|
|
1141
|
-
//<![CDATA[
|
|
1142
|
-
|
|
1143
|
-
$( function () {
|
|
1144
|
-
|
|
1145
|
-
$("#sms_codes_link").hoverTip("#sms_codes");
|
|
1146
|
-
initializePage();
|
|
1147
|
-
|
|
1148
|
-
|
|
1149
|
-
|
|
1150
|
-
if (twttr.geo !== undefined) {
|
|
1151
|
-
twttr.geo.options.show_place_details_in_map = true;
|
|
1152
|
-
}
|
|
1153
|
-
|
|
1154
|
-
(function(){function b(){var c=location.href.split("#!")[1];if(c){window.location.hash = "";window.location.pathname = c.replace(/^([^/])/,"/$1");}else return true}var a="onhashchange"in window;if(!a&&window.setAttribute){window.setAttribute("onhashchange","return;");a=typeof window.onhashchange==="function"}if(a)$(window).bind("hashchange",b);else{var d=function(){b()&&setTimeout(d,250)};setTimeout(d,250)}}());
|
|
1155
|
-
$('#signin_menu').isSigninMenu();
|
|
131
|
+
</div>
|
|
132
|
+
<div class='list-tweet-actions'>
|
|
133
|
+
</div>
|
|
134
|
+
</div>
|
|
135
|
+
</div>
|
|
136
|
+
<div class='list-tweet' id='tweet_149961151118184448'>
|
|
137
|
+
<a href="http://mobile.twitter.com/sowersb"><img alt="Brent Sowers" class="list-tweet-img" src="http://a0.twimg.com/profile_images/1420695224/Snapshot_of_me_1_normal.jpg" /></a>
|
|
138
|
+
<div class='inner-w-img'>
|
|
139
|
+
<span>
|
|
140
|
+
<strong><a href="http://mobile.twitter.com/sowersb">sowersb</a></strong>
|
|
141
|
+
<span class="status">Nats giving away the whole farm for Gonzalez!? Cole, Norris, Peacock, AND Milone? Don't think Gonzalez is worth that, led league in walks</span>
|
|
142
|
+
</span>
|
|
143
|
+
<div class='list-tweet-status'>
|
|
144
|
+
<a href="/sowersb/status/149961151118184448" class="status_link">7 days ago</a>
|
|
1156
145
|
|
|
1157
|
-
|
|
1158
|
-
|
|
1159
|
-
|
|
1160
|
-
</
|
|
146
|
+
</div>
|
|
147
|
+
<div class='list-tweet-actions'>
|
|
148
|
+
</div>
|
|
149
|
+
</div>
|
|
150
|
+
</div>
|
|
151
|
+
<div class='list-tweet' id='tweet_149670854165409794'>
|
|
152
|
+
<a href="http://mobile.twitter.com/sowersb"><img alt="Brent Sowers" class="list-tweet-img" src="http://a0.twimg.com/profile_images/1420695224/Snapshot_of_me_1_normal.jpg" /></a>
|
|
153
|
+
<div class='inner-w-img'>
|
|
154
|
+
<span>
|
|
155
|
+
<strong><a href="http://mobile.twitter.com/sowersb">sowersb</a></strong>
|
|
156
|
+
<span class="status">I just protected nature by supporting The Nature Conservancy! Find out why and join me: <a rel="nofollow" href="http://t.co/WqPue7Td" target="_blank" class="twitter_external_link">bit.ly/9oUdGp</a></span>
|
|
157
|
+
</span>
|
|
158
|
+
<div class='list-tweet-status'>
|
|
159
|
+
<a href="/sowersb/status/149670854165409794" class="status_link">8 days ago</a>
|
|
1161
160
|
|
|
1162
|
-
|
|
161
|
+
</div>
|
|
162
|
+
<div class='list-tweet-actions'>
|
|
163
|
+
</div>
|
|
164
|
+
</div>
|
|
165
|
+
</div>
|
|
166
|
+
<div class='list-tweet' id='tweet_149669828322541568'>
|
|
167
|
+
<a href="http://mobile.twitter.com/sowersb"><img alt="Brent Sowers" class="list-tweet-img" src="http://a0.twimg.com/profile_images/1420695224/Snapshot_of_me_1_normal.jpg" /></a>
|
|
168
|
+
<div class='inner-w-img'>
|
|
169
|
+
<span>
|
|
170
|
+
<strong><a href="http://mobile.twitter.com/sowersb">sowersb</a></strong>
|
|
171
|
+
<span class="status">I'm defending science! Join me in supporting the Union of Concerned Scientists (<a href="/UCSUSA" class="twitter-atreply"><s>@</s>UCSUSA</a>)! <a rel="nofollow" href="http://t.co/rnLWlyNY" target="_blank" class="twitter_external_link">ucsusa.org/supportUCS</a></span>
|
|
172
|
+
</span>
|
|
173
|
+
<div class='list-tweet-status'>
|
|
174
|
+
<a href="/sowersb/status/149669828322541568" class="status_link">8 days ago</a>
|
|
1163
175
|
|
|
1164
|
-
|
|
1165
|
-
|
|
1166
|
-
|
|
1167
|
-
|
|
176
|
+
</div>
|
|
177
|
+
<div class='list-tweet-actions'>
|
|
178
|
+
</div>
|
|
179
|
+
</div>
|
|
180
|
+
</div>
|
|
181
|
+
<div class='list-tweet' id='tweet_149661703536250882'>
|
|
182
|
+
<a href="http://mobile.twitter.com/sowersb"><img alt="Brent Sowers" class="list-tweet-img" src="http://a0.twimg.com/profile_images/1420695224/Snapshot_of_me_1_normal.jpg" /></a>
|
|
183
|
+
<div class='inner-w-img'>
|
|
184
|
+
<span>
|
|
185
|
+
<strong><a href="http://mobile.twitter.com/sowersb">sowersb</a></strong>
|
|
186
|
+
<span class="status">me feel a little better about bombing my interview with LivingSocial a year ago</span>
|
|
187
|
+
</span>
|
|
188
|
+
<div class='list-tweet-status'>
|
|
189
|
+
<a href="/sowersb/status/149661703536250882" class="status_link">8 days ago</a>
|
|
1168
190
|
|
|
1169
|
-
|
|
191
|
+
</div>
|
|
192
|
+
<div class='list-tweet-actions'>
|
|
193
|
+
</div>
|
|
194
|
+
</div>
|
|
195
|
+
</div>
|
|
196
|
+
<div class='list-tweet' id='tweet_149661683000938497'>
|
|
197
|
+
<a href="http://mobile.twitter.com/sowersb"><img alt="Brent Sowers" class="list-tweet-img" src="http://a0.twimg.com/profile_images/1420695224/Snapshot_of_me_1_normal.jpg" /></a>
|
|
198
|
+
<div class='inner-w-img'>
|
|
199
|
+
<span>
|
|
200
|
+
<strong><a href="http://mobile.twitter.com/sowersb">sowersb</a></strong>
|
|
201
|
+
<span class="status">work projects to the latest beta release of Rails. Just not enough of those types of people around. Seeing hungryacademy makes...</span>
|
|
202
|
+
</span>
|
|
203
|
+
<div class='list-tweet-status'>
|
|
204
|
+
<a href="/sowersb/status/149661683000938497" class="status_link">8 days ago</a>
|
|
1170
205
|
|
|
1171
|
-
|
|
1172
|
-
|
|
1173
|
-
|
|
1174
|
-
|
|
1175
|
-
|
|
1176
|
-
|
|
1177
|
-
|
|
1178
|
-
|
|
1179
|
-
|
|
206
|
+
</div>
|
|
207
|
+
<div class='list-tweet-actions'>
|
|
208
|
+
</div>
|
|
209
|
+
</div>
|
|
210
|
+
</div>
|
|
211
|
+
<div class='list-tweet' id='tweet_149661643129880577'>
|
|
212
|
+
<a href="http://mobile.twitter.com/sowersb"><img alt="Brent Sowers" class="list-tweet-img" src="http://a0.twimg.com/profile_images/1420695224/Snapshot_of_me_1_normal.jpg" /></a>
|
|
213
|
+
<div class='inner-w-img'>
|
|
214
|
+
<span>
|
|
215
|
+
<strong><a href="http://mobile.twitter.com/sowersb">sowersb</a></strong>
|
|
216
|
+
<span class="status">devs is they're too selective. You can't hire an army of Rubyists who eat, breathe, and sleep Rails who are constantly updating their....</span>
|
|
217
|
+
</span>
|
|
218
|
+
<div class='list-tweet-status'>
|
|
219
|
+
<a href="/sowersb/status/149661643129880577" class="status_link">8 days ago</a>
|
|
1180
220
|
|
|
1181
|
-
|
|
221
|
+
</div>
|
|
222
|
+
<div class='list-tweet-actions'>
|
|
223
|
+
</div>
|
|
224
|
+
</div>
|
|
225
|
+
</div>
|
|
226
|
+
<div class='list-tweet' id='tweet_149661580852858880'>
|
|
227
|
+
<a href="http://mobile.twitter.com/sowersb"><img alt="Brent Sowers" class="list-tweet-img" src="http://a0.twimg.com/profile_images/1420695224/Snapshot_of_me_1_normal.jpg" /></a>
|
|
228
|
+
<div class='inner-w-img'>
|
|
229
|
+
<span>
|
|
230
|
+
<strong><a href="http://mobile.twitter.com/sowersb">sowersb</a></strong>
|
|
231
|
+
<span class="status">a dev who's played a lot with new techs (Rails). Maybe some recent graduates would be interested. Reason LivingSocial can't find enough...</span>
|
|
232
|
+
</span>
|
|
233
|
+
<div class='list-tweet-status'>
|
|
234
|
+
<a href="/sowersb/status/149661580852858880" class="status_link">8 days ago</a>
|
|
1182
235
|
|
|
1183
|
-
|
|
236
|
+
</div>
|
|
237
|
+
<div class='list-tweet-actions'>
|
|
238
|
+
</div>
|
|
239
|
+
</div>
|
|
240
|
+
</div>
|
|
241
|
+
<div class='list-tweet' id='tweet_149661469091434496'>
|
|
242
|
+
<a href="http://mobile.twitter.com/sowersb"><img alt="Brent Sowers" class="list-tweet-img" src="http://a0.twimg.com/profile_images/1420695224/Snapshot_of_me_1_normal.jpg" /></a>
|
|
243
|
+
<div class='inner-w-img'>
|
|
244
|
+
<span>
|
|
245
|
+
<strong><a href="http://mobile.twitter.com/sowersb">sowersb</a></strong>
|
|
246
|
+
<span class="status"><a rel="nofollow" href="hungryacademy.com" target="_blank" class="twitter_external_link">hungryacademy.com</a> is an interesting idea, not sure how many good ppl they'll get. I think anyone who would be interested in it is already...</span>
|
|
247
|
+
</span>
|
|
248
|
+
<div class='list-tweet-status'>
|
|
249
|
+
<a href="/sowersb/status/149661469091434496" class="status_link">8 days ago</a>
|
|
1184
250
|
|
|
251
|
+
</div>
|
|
252
|
+
<div class='list-tweet-actions'>
|
|
253
|
+
</div>
|
|
254
|
+
</div>
|
|
255
|
+
</div>
|
|
256
|
+
<div class='list-tweet' id='tweet_149189536159768576'>
|
|
257
|
+
<a href="http://mobile.twitter.com/sowersb"><img alt="Brent Sowers" class="list-tweet-img" src="http://a0.twimg.com/profile_images/1420695224/Snapshot_of_me_1_normal.jpg" /></a>
|
|
258
|
+
<div class='inner-w-img'>
|
|
259
|
+
<span>
|
|
260
|
+
<strong><a href="http://mobile.twitter.com/sowersb">sowersb</a></strong>
|
|
261
|
+
<span class="status"><a href="/AndyMinor" class="twitter-atreply"><s>@</s>AndyMinor</a> That's awesome, so how long before the Post hires you as a sports writer?</span>
|
|
262
|
+
</span>
|
|
263
|
+
<div class='list-tweet-status'>
|
|
264
|
+
<a href="/sowersb/status/149189536159768576" class="status_link">9 days ago</a>
|
|
265
|
+
<span class="text"> </span><a href="/AndyMinor/status/149170733308841984" class="status_link">in reply to AndyMinor</a>
|
|
266
|
+
</div>
|
|
267
|
+
<div class='list-tweet-actions'>
|
|
268
|
+
</div>
|
|
269
|
+
</div>
|
|
270
|
+
</div>
|
|
271
|
+
<div class='list-tweet' id='tweet_149159336592162817'>
|
|
272
|
+
<a href="http://mobile.twitter.com/dhh"><img alt="DHH" class="list-tweet-img" src="http://a1.twimg.com/profile_images/67881828/headshot64_normal.jpg" /></a>
|
|
273
|
+
<div class='inner-w-img'>
|
|
274
|
+
<span>
|
|
275
|
+
<span class="imgsprite_ic_retweet_tweet_gif"></span>
|
|
276
|
+
<strong><a href="http://mobile.twitter.com/dhh">dhh</a></strong>
|
|
277
|
+
<span class="status">Best game of all time? Easy, Civilization. Started playing it in 1991 and I'm still loving it today on the iPad. Sid Meier is king!!</span>
|
|
278
|
+
</span>
|
|
279
|
+
<div class='list-tweet-status'>
|
|
280
|
+
<a href="/dhh/status/149158479339335680" class="status_link">9 days ago</a>
|
|
1185
281
|
|
|
282
|
+
</div>
|
|
283
|
+
<br class='r' />
|
|
284
|
+
<div class='retweet-info'>
|
|
285
|
+
<a href="/dhh/status/149158479339335680" class="status_link">Retweeted by sowersb</a>
|
|
286
|
+
</div>
|
|
287
|
+
<div class='list-tweet-actions'>
|
|
288
|
+
</div>
|
|
289
|
+
</div>
|
|
290
|
+
</div>
|
|
291
|
+
<div class='list-tweet' id='tweet_149102209982926850'>
|
|
292
|
+
<a href="http://mobile.twitter.com/sowersb"><img alt="Brent Sowers" class="list-tweet-img" src="http://a0.twimg.com/profile_images/1420695224/Snapshot_of_me_1_normal.jpg" /></a>
|
|
293
|
+
<div class='inner-w-img'>
|
|
294
|
+
<span>
|
|
295
|
+
<strong><a href="http://mobile.twitter.com/sowersb">sowersb</a></strong>
|
|
296
|
+
<span class="status">Netflix, why can't I buy a gift card for dvd service? Stop cramming streaming down our throats!</span>
|
|
297
|
+
</span>
|
|
298
|
+
<div class='list-tweet-status'>
|
|
299
|
+
<a href="/sowersb/status/149102209982926850" class="status_link">10 days ago</a>
|
|
300
|
+
|
|
301
|
+
<a href="/sowersb/status/149102209982926850"><span class="imgsprite_ic_geotweet_png"></span></a>
|
|
302
|
+
</div>
|
|
303
|
+
<div class='list-tweet-actions'>
|
|
304
|
+
</div>
|
|
305
|
+
</div>
|
|
306
|
+
</div>
|
|
307
|
+
<div class='list-tweet' id='tweet_147780274061721600'>
|
|
308
|
+
<a href="http://mobile.twitter.com/sowersb"><img alt="Brent Sowers" class="list-tweet-img" src="http://a0.twimg.com/profile_images/1420695224/Snapshot_of_me_1_normal.jpg" /></a>
|
|
309
|
+
<div class='inner-w-img'>
|
|
310
|
+
<span>
|
|
311
|
+
<strong><a href="http://mobile.twitter.com/sowersb">sowersb</a></strong>
|
|
312
|
+
<span class="status">Pretty staggering, every road fatality in the US from 2001-2009 split up by type. Great map visualization. <a rel="nofollow" href="http://t.co/dNOAE9Ps" target="_blank" class="twitter_external_link">bit.ly/uhhoKC</a></span>
|
|
313
|
+
</span>
|
|
314
|
+
<div class='list-tweet-status'>
|
|
315
|
+
<a href="/sowersb/status/147780274061721600" class="status_link">13 days ago</a>
|
|
1186
316
|
|
|
317
|
+
</div>
|
|
318
|
+
<div class='list-tweet-actions'>
|
|
319
|
+
</div>
|
|
320
|
+
</div>
|
|
321
|
+
</div>
|
|
322
|
+
<div class='list-tweet' id='tweet_147708944314408960'>
|
|
323
|
+
<a href="http://mobile.twitter.com/sowersb"><img alt="Brent Sowers" class="list-tweet-img" src="http://a0.twimg.com/profile_images/1420695224/Snapshot_of_me_1_normal.jpg" /></a>
|
|
324
|
+
<div class='inner-w-img'>
|
|
325
|
+
<span>
|
|
326
|
+
<strong><a href="http://mobile.twitter.com/sowersb">sowersb</a></strong>
|
|
327
|
+
<span class="status"><a href="/kashomoney" class="twitter-atreply"><s>@</s>kashomoney</a> FB is abandoning FBML altogether... I need to rewrite the views for my app by June 1</span>
|
|
328
|
+
</span>
|
|
329
|
+
<div class='list-tweet-status'>
|
|
330
|
+
<a href="/sowersb/status/147708944314408960" class="status_link">13 days ago</a>
|
|
1187
331
|
|
|
1188
|
-
|
|
332
|
+
</div>
|
|
333
|
+
<div class='list-tweet-actions'>
|
|
334
|
+
</div>
|
|
335
|
+
</div>
|
|
336
|
+
</div>
|
|
337
|
+
<div class='list-tweet' id='tweet_147708740345413632'>
|
|
338
|
+
<a href="http://mobile.twitter.com/sowersb"><img alt="Brent Sowers" class="list-tweet-img" src="http://a0.twimg.com/profile_images/1420695224/Snapshot_of_me_1_normal.jpg" /></a>
|
|
339
|
+
<div class='inner-w-img'>
|
|
340
|
+
<span>
|
|
341
|
+
<strong><a href="http://mobile.twitter.com/sowersb">sowersb</a></strong>
|
|
342
|
+
<span class="status"><a href="/kashomoney" class="twitter-atreply"><s>@</s>kashomoney</a> BTW don't think I can get my FB app to work with https, it's FBML and doesn't look like FB supports https for FBML apps</span>
|
|
343
|
+
</span>
|
|
344
|
+
<div class='list-tweet-status'>
|
|
345
|
+
<a href="/sowersb/status/147708740345413632" class="status_link">13 days ago</a>
|
|
1189
346
|
|
|
347
|
+
</div>
|
|
348
|
+
<div class='list-tweet-actions'>
|
|
349
|
+
</div>
|
|
350
|
+
</div>
|
|
351
|
+
</div>
|
|
352
|
+
<div class='list-tweet' id='tweet_147708406474612736'>
|
|
353
|
+
<a href="http://mobile.twitter.com/sowersb"><img alt="Brent Sowers" class="list-tweet-img" src="http://a0.twimg.com/profile_images/1420695224/Snapshot_of_me_1_normal.jpg" /></a>
|
|
354
|
+
<div class='inner-w-img'>
|
|
355
|
+
<span>
|
|
356
|
+
<strong><a href="http://mobile.twitter.com/sowersb">sowersb</a></strong>
|
|
357
|
+
<span class="status"><a href="/kashomoney" class="twitter-atreply"><s>@</s>kashomoney</a> Haha, no more on polymorphism, I kept trying unsuccessfully to kill the conversation.</span>
|
|
358
|
+
</span>
|
|
359
|
+
<div class='list-tweet-status'>
|
|
360
|
+
<a href="/sowersb/status/147708406474612736" class="status_link">13 days ago</a>
|
|
361
|
+
<span class="text"> </span><a href="/kashomoney/status/147707183377817602" class="status_link">in reply to kashomoney</a>
|
|
362
|
+
</div>
|
|
363
|
+
<div class='list-tweet-actions'>
|
|
364
|
+
</div>
|
|
365
|
+
</div>
|
|
366
|
+
</div>
|
|
367
|
+
<div class='list-tweet' id='tweet_147689141054881792'>
|
|
368
|
+
<a href="http://mobile.twitter.com/sowersb"><img alt="Brent Sowers" class="list-tweet-img" src="http://a0.twimg.com/profile_images/1420695224/Snapshot_of_me_1_normal.jpg" /></a>
|
|
369
|
+
<div class='inner-w-img'>
|
|
370
|
+
<span>
|
|
371
|
+
<strong><a href="http://mobile.twitter.com/sowersb">sowersb</a></strong>
|
|
372
|
+
<span class="status">Oh no, we're arguing in my office about what polymorphism is....</span>
|
|
373
|
+
</span>
|
|
374
|
+
<div class='list-tweet-status'>
|
|
375
|
+
<a href="/sowersb/status/147689141054881792" class="status_link">13 days ago</a>
|
|
1190
376
|
|
|
1191
|
-
|
|
377
|
+
</div>
|
|
378
|
+
<div class='list-tweet-actions'>
|
|
379
|
+
</div>
|
|
380
|
+
</div>
|
|
381
|
+
</div>
|
|
1192
382
|
|
|
1193
|
-
|
|
383
|
+
<div align='center'>
|
|
384
|
+
<div class='list-more'>
|
|
385
|
+
<img alt="Ic_spinner_more" src="http://a3.twimg.com/twitter-mobile/912a16ff798148d3eae1ce6ca9e33dfc6c2ae405/images/ic_spinner_more.gif" /><a href="/sowersb?max_id=147409348212166656" id="more_link">more</a>
|
|
386
|
+
</div>
|
|
387
|
+
</div>
|
|
388
|
+
</div>
|
|
389
|
+
</div>
|
|
390
|
+
<div id='search_footer'>
|
|
391
|
+
<form action="http://mobile.twitter.com/searches" class="search" method="post"><div style="margin:0;padding:0;display:inline"><input name="authenticity_token" type="hidden" value="c75faec50c5d9a88cf50" /></div>
|
|
392
|
+
Search Twitter
|
|
393
|
+
<br />
|
|
394
|
+
<input class="search-form" id="search_query" name="search[query]" size="20" type="text" value="" />
|
|
395
|
+
<button class="search-btns" id="" type="submit">Search</button>
|
|
396
|
+
</form>
|
|
397
|
+
<div class='search-middle'>Popular Topics</div>
|
|
398
|
+
<div class='search-trends'>
|
|
399
|
+
<ul id='trend_footer_list'>
|
|
400
|
+
<li><a href="http://mobile.twitter.com/searches?q=%23everygirlisbeautifulandspecial">#everygirlisbeautifulandspecial</a></li>
|
|
401
|
+
<li><a href="http://mobile.twitter.com/searches?q=%23followmemeganandliz">#followmemeganandliz</a></li>
|
|
402
|
+
<li><a href="http://mobile.twitter.com/searches?q=%23favorite90smovie">#favorite90smovie</a></li>
|
|
403
|
+
<li><a href="http://mobile.twitter.com/searches?q=%22James+Harden%22">James Harden</a></li>
|
|
404
|
+
<li><a href="http://mobile.twitter.com/searches?q=%22Tiana-May+Carter%22">Tiana-May Carter</a></li>
|
|
405
|
+
</ul>
|
|
406
|
+
</div>
|
|
407
|
+
</div>
|
|
1194
408
|
|
|
1195
|
-
</body>
|
|
1196
409
|
|
|
410
|
+
<div class='footer'>
|
|
411
|
+
<strong><a href="/sowersb">Refresh now</a></strong>
|
|
412
|
+
<br />
|
|
413
|
+
<br />
|
|
414
|
+
<div class='geo-status'></div>
|
|
415
|
+
<strong><a href="http://mobile.twitter.com/search/users">Find people</a></strong>
|
|
416
|
+
-
|
|
417
|
+
<strong><a href="http://support.twitter.com/groups/34-mobile">Help</a></strong>
|
|
418
|
+
-
|
|
419
|
+
<strong><a href="https://mobile.twitter.com/session/new?return_to=%2Fsowersb">Sign in</a></strong>
|
|
420
|
+
<br />
|
|
421
|
+
<br />
|
|
422
|
+
View twitter in:
|
|
423
|
+
<br />
|
|
424
|
+
<strong><a href="http://mobile.twitter.com/settings/change_ui">Standard</a></strong>
|
|
425
|
+
-
|
|
426
|
+
Mobile
|
|
427
|
+
<br />
|
|
428
|
+
<br />
|
|
429
|
+
© 2011 Twitter
|
|
430
|
+
</div>
|
|
431
|
+
<script src="http://a1.twimg.com/twitter-mobile/912a16ff798148d3eae1ce6ca9e33dfc6c2ae405/assets/base.js" type="text/javascript"></script>
|
|
432
|
+
</div>
|
|
433
|
+
<!-- production -->
|
|
434
|
+
</body>
|
|
1197
435
|
</html>
|