dash-bees 0.26 → 0.27

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG CHANGED
@@ -1,3 +1,5 @@
1
+ 2010-09-27 v0.27 More Atom 1.0/RSS 2.0 coverage.
2
+
1
3
  2010-09-26 v0.26 Premature release. Fixes 0.25.
2
4
 
3
5
  2010-09-25 v0.25 Better Atom and RSS processing.
@@ -21,5 +21,6 @@ Gem::Specification.new do |spec|
21
21
  spec.add_dependency "i18n"
22
22
  spec.add_dependency "json"
23
23
  spec.add_dependency "nokogiri"
24
+ spec.add_dependency "mail"
24
25
  spec.add_dependency "rack"
25
26
  end
@@ -7,6 +7,7 @@ require "nokogiri"
7
7
  require "dash-fu/bee/version"
8
8
  require "dash-fu/bee/http_session"
9
9
  require "dash-fu/bee/fields"
10
+ require "dash-fu/bee/utils"
10
11
 
11
12
  # See http://dash-fu.com
12
13
  module DashFu
@@ -14,6 +15,7 @@ module DashFu
14
15
  # The README covers it all.
15
16
  module Bee
16
17
  include DashFu::Bee::Fields
18
+ include DashFu::Bee::Utils
17
19
 
18
20
  class << self
19
21
  attr_accessor :logger
@@ -156,44 +158,6 @@ module DashFu
156
158
  @resources
157
159
  end
158
160
 
159
- # Shortcut for Rack::Utils.escape_html
160
- def escape_html(text)
161
- Rack::Utils.escape_html(text.to_s)
162
- end
163
- alias :h :escape_html
164
-
165
- # Truncates text value.
166
- def truncate(text, length = 250, continue = "...")
167
- return text unless text.length > length
168
- trim = length - continue.length
169
- text[0,trim] + continue
170
- end
171
-
172
- # Truncates HTML without unbalanced elements/entities.
173
- def truncate_html(html, limit = 30, ellipsis = "...")
174
- # Inspiration: http://pastie.textmate.org/145402
175
- doc = Nokogiri::XML(html)
176
- ellipsis_length = Nokogiri::XML(ellipsis).text.length
177
- content_length = doc.text.length
178
- return html if content_length <= limit
179
- truncate = lambda do |node, max|
180
- break node if node.text.length <= max
181
- node.children.each do |child|
182
- if max <= 0
183
- child.remove
184
- elsif child.text?
185
- child.content = child.text[0,max]
186
- max -= child.content.length
187
- else
188
- truncate[child, max]
189
- end
190
- end
191
- node
192
- end
193
- truncate[doc, limit - ellipsis_length].to_html.strip + ellipsis
194
- end
195
-
196
-
197
161
  # Returns API key for this source. May return string or hash, depending on
198
162
  # the API.
199
163
  def api_key
@@ -0,0 +1,45 @@
1
+ module DashFu::Bee
2
+ # Utility functions. Also accessible as instance methods in Bee.
3
+ module Utils
4
+ module_function
5
+
6
+ # Shortcut for Rack::Utils.escape_html
7
+ def escape_html(text)
8
+ Rack::Utils.escape_html(text.to_s)
9
+ end
10
+ alias :h :escape_html
11
+
12
+ # Truncates text value.
13
+ def truncate(text, length = 250, continue = "...")
14
+ return text unless text.length > length
15
+ trim = length - continue.length
16
+ text[0,trim] + continue
17
+ end
18
+
19
+ # Truncates HTML without unbalanced elements/entities.
20
+ def truncate_html(html, limit = 250, ellipsis = "...")
21
+ # Inspiration: http://pastie.textmate.org/145402
22
+ ellipsis_length = Nokogiri::HTML.fragment(ellipsis).text.length
23
+ truncate = lambda do |node, avail|
24
+ node.children.each do |child|
25
+ if avail <= 0
26
+ child.remove
27
+ elsif child.text?
28
+ source = child.parent.name == "pre" ? child.content : child.content.squeeze(" ")
29
+ child.content = source[/^(.{0,#{avail}})(\s.*)?$/, 1]
30
+ avail -= source.length
31
+ elsif child.element? && !%w{script style}.include?(child.name)
32
+ avail = truncate[child, avail]
33
+ else
34
+ child.remove
35
+ end
36
+ end
37
+ avail
38
+ end
39
+ nodes = Nokogiri::HTML.fragment(html)
40
+ left = truncate[nodes, limit - ellipsis_length]
41
+ left < 0 ? nodes.to_html + ellipsis : nodes.to_html
42
+ end
43
+
44
+ end
45
+ end
@@ -1,5 +1,5 @@
1
1
  module DashFu
2
2
  module Bee
3
- VERSION = "0.26"
3
+ VERSION = "0.27"
4
4
  end
5
5
  end
@@ -23,7 +23,7 @@ module DashFu::Bee
23
23
  source["url"] = io.base_uri.to_s
24
24
  else
25
25
  head = Nokogiri::HTML(body)>"html>head"
26
- if url = find_alternate_link(head, "application/atom+xml", "application/rss+xml")
26
+ if url = find_alternate_link(head, io.base_uri, "application/atom+xml", "application/rss+xml")
27
27
  URI.parse(url).open read_timeout: 3, redirect: true do |io|
28
28
  if io.status.first == "200"
29
29
  feed = process_feed(io.read, false)
@@ -61,7 +61,7 @@ module DashFu::Bee
61
61
  if feed = process_feed(body, source["updated"])
62
62
  feed[:entries].each do |entry|
63
63
  if entry[:content]
64
- content = truncate_html(entry[:content].strip, 250)
64
+ content = truncate_html(entry[:content], 500)
65
65
  html = "posted <a href=\"#{entry[:url]}\">#{h entry[:title]}</a>:\n<blockquote>#{content}</blockquote>"
66
66
  else
67
67
  html = "posted a link <a href=\"#{entry[:url]}\">#{h entry[:title]}</a>"
@@ -98,10 +98,10 @@ module DashFu::Bee
98
98
  # after that time.
99
99
  def process_feed(xml, since = nil)
100
100
  doc = Nokogiri::XML(xml)
101
- if feed = doc.children.find { |e| e.name == "feed" }
101
+ if feed = doc.xpath("//atom:feed", "atom"=>"http://www.w3.org/2005/Atom").first
102
102
  process_atom feed, since
103
- elsif rss = doc.children.find { |e| e.name == "rss" }
104
- process_rss rss>"channel", since
103
+ elsif channel = doc.xpath("//rss[@version=\"2.0\"]/channel").first
104
+ process_rss channel, since
105
105
  end
106
106
  end
107
107
 
@@ -133,7 +133,7 @@ module DashFu::Bee
133
133
 
134
134
  { id: (entry>"id").text,
135
135
  title: CGI.unescapeHTML((entry>"title").text),
136
- url: find_alternate_link(entry, "text/html", "text/xhtml", nil),
136
+ url: find_alternate_link(entry, nil, "text/html", "text/xhtml", nil) || find_self_link(entry),
137
137
  content: html,
138
138
  person: person,
139
139
  timestamp: published }
@@ -141,9 +141,9 @@ module DashFu::Bee
141
141
  end
142
142
  return {
143
143
  title: CGI.unescapeHTML((feed>"title").text),
144
- url: find_alternate_link(feed, "text/html", "text/xhtml", nil),
144
+ url: find_alternate_link(feed, nil, "text/html", "text/xhtml", nil) || find_self_link(feed),
145
145
  icon: (feed>"icon").text,
146
- entries: entries
146
+ entries: entries ? entries.reverse : []
147
147
  }
148
148
  end
149
149
 
@@ -155,11 +155,22 @@ module DashFu::Bee
155
155
  published = Time.rfc822((item>"pubDate").text) rescue feed_published
156
156
  next if since && published < since
157
157
  guid = (item>"guid").first
158
+ if creator = item.xpath("dc:creator", "dc"=>"http://purl.org/dc/elements/1.1/").first
159
+ person = { fullname: creator.text }
160
+ elsif author = (item>"author").first
161
+ begin
162
+ email = Mail::Address.new(author.text)
163
+ person = { fullname: email.name, email: email.address }
164
+ rescue
165
+ person = { fullname: author.text }
166
+ end
167
+ end
158
168
  link = (item>"feedburner:origLink").first || (item>"link").first
159
169
  { id: guid ? guid.text : nil,
160
170
  title: CGI.unescapeHTML((item>"title").text),
161
171
  url: link ? link.text : guid,
162
172
  content: CGI.unescapeHTML((item>"description").text),
173
+ person: person,
163
174
  timestamp: published }
164
175
  }
165
176
  end
@@ -167,19 +178,24 @@ module DashFu::Bee
167
178
  title: CGI.unescapeHTML((channel>"title").text),
168
179
  url: (channel>"link").text,
169
180
  icon: (channel>"image>url").text,
170
- entries: entries
181
+ entries: entries ? entries.reverse : []
171
182
  }
172
- rescue
173
- puts $!
174
183
  end
175
184
 
176
- def find_alternate_link(elem, *types)
185
+ def find_alternate_link(elem, base, *types)
177
186
  links = (elem>"link[rel~=\"alternate\"]").select { |link| types.include?(link["type"]) }.sort_by { |link| types.index(link["type"]) }
178
187
  unless links.empty?
179
188
  uri = URI.parse(links.first["href"]) rescue nil
189
+ uri = base + uri if base
180
190
  return uri.to_s if uri && uri.absolute? && (uri.scheme == "http" || uri.scheme == "https")
181
191
  end
182
192
  end
183
193
 
194
+ def find_self_link(elem)
195
+ if link = (elem>"link[rel~=\"self\"]").first || (elem>"link").find { |link| link["rel"].blank? }
196
+ uri = URI.parse(link["href"]) rescue nil
197
+ return uri.to_s if uri && uri.absolute? && (uri.scheme == "http" || uri.scheme == "https")
198
+ end
199
+ end
184
200
  end
185
201
  end
@@ -3,10 +3,13 @@
3
3
  request: !ruby/struct:VCR::Request
4
4
  method: :get
5
5
  uri: http://example.org:80/feed.xml
6
+ body:
7
+ headers:
6
8
  response: !ruby/struct:VCR::Response
7
9
  status: !ruby/struct:VCR::ResponseStatus
8
10
  code: 200
9
11
  message: OK
12
+ headers:
10
13
  body: |-
11
14
  <?xml version="1.0" encoding="utf-8"?>
12
15
  <feed xmlns="http://www.w3.org/2005/Atom">
@@ -54,14 +57,18 @@
54
57
  </content>
55
58
  </entry>
56
59
  </feed>
60
+ http_version:
57
61
  - !ruby/struct:VCR::HTTPInteraction
58
62
  request: !ruby/struct:VCR::Request
59
63
  method: :get
60
64
  uri: http://example.org:80/summary.xml
65
+ body:
66
+ headers:
61
67
  response: !ruby/struct:VCR::Response
62
68
  status: !ruby/struct:VCR::ResponseStatus
63
69
  code: 200
64
70
  message: OK
71
+ headers:
65
72
  body: |-
66
73
  <?xml version="1.0" encoding="utf-8"?>
67
74
  <feed xmlns="http://www.w3.org/2005/Atom">
@@ -82,14 +89,18 @@
82
89
  </content>
83
90
  </entry>
84
91
  </feed>
92
+ http_version:
85
93
  - !ruby/struct:VCR::HTTPInteraction
86
94
  request: !ruby/struct:VCR::Request
87
95
  method: :get
88
96
  uri: http://example.org:80/update.xml
97
+ body:
98
+ headers:
89
99
  response: !ruby/struct:VCR::Response
90
100
  status: !ruby/struct:VCR::ResponseStatus
91
101
  code: 200
92
102
  message: OK
103
+ headers:
93
104
  body: |-
94
105
  <?xml version="1.0" encoding="utf-8"?>
95
106
  <feed xmlns="http://www.w3.org/2005/Atom">
@@ -99,14 +110,18 @@
99
110
  <updated>2003-12-13T08:29:29-04:00</updated>
100
111
  </entry>
101
112
  </feed>
113
+ http_version:
102
114
  - !ruby/struct:VCR::HTTPInteraction
103
115
  request: !ruby/struct:VCR::Request
104
116
  method: :get
105
117
  uri: http://example.org:80/html.xml
118
+ body:
119
+ headers:
106
120
  response: !ruby/struct:VCR::Response
107
121
  status: !ruby/struct:VCR::ResponseStatus
108
122
  code: 200
109
123
  message: OK
124
+ headers:
110
125
  body: |-
111
126
  <?xml version="1.0" encoding="utf-8"?>
112
127
  <feed xmlns="http://www.w3.org/2005/Atom">
@@ -116,14 +131,18 @@
116
131
  <content type="html">&lt;i&gt;HTML &lt;br&gt; content&lt;/i&gt;</content>
117
132
  </entry>
118
133
  </feed>
134
+ http_version:
119
135
  - !ruby/struct:VCR::HTTPInteraction
120
136
  request: !ruby/struct:VCR::Request
121
137
  method: :get
122
138
  uri: http://example.org:80/truncated.xml
139
+ body:
140
+ headers:
123
141
  response: !ruby/struct:VCR::Response
124
142
  status: !ruby/struct:VCR::ResponseStatus
125
143
  code: 200
126
144
  message: OK
145
+ headers:
127
146
  body: |-
128
147
  <?xml version="1.0" encoding="utf-8"?>
129
148
  <feed xmlns="http://www.w3.org/2005/Atom">
@@ -132,22 +151,27 @@
132
151
  <title>Atom draft-07 snapshot</title>
133
152
  <content type="xhtml">
134
153
  <div>
135
- <p><em>Truncated Truncated Truncated Truncated Truncated Truncated Truncated Truncated Truncated Truncated Truncated Truncated Truncated Truncated Truncated Truncated Truncated Truncated
136
- Truncated Truncated Truncated Truncated Truncated Truncated Truncated Truncated Truncated Truncated Truncated Truncated Truncated Truncated Truncated Truncated Truncated Truncated Truncated
137
- Truncated Truncated Truncated Truncated Truncated Truncated Truncated Truncated Truncated Truncated Truncated Truncated Truncated Truncated Truncated Truncated Truncated Truncated
138
- </em></p>
154
+ <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>
155
+ <p>Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>
156
+ <p>Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>
157
+ <p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
158
+ <p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt.</p>
139
159
  </div>
140
160
  </content>
141
161
  </entry>
142
162
  </feed>
163
+ http_version:
143
164
  - !ruby/struct:VCR::HTTPInteraction
144
165
  request: !ruby/struct:VCR::Request
145
166
  method: :get
146
167
  uri: http://example.org:80/rss2.xml
168
+ body:
169
+ headers:
147
170
  response: !ruby/struct:VCR::Response
148
171
  status: !ruby/struct:VCR::ResponseStatus
149
172
  code: 200
150
173
  message: OK
174
+ headers:
151
175
  body: |-
152
176
  <?xml version="1.0" encoding="UTF-8"?>
153
177
  <rss version="2.0">
@@ -167,3 +191,2100 @@
167
191
  </item>
168
192
  </channel>
169
193
  </rss>
194
+ http_version:
195
+ - !ruby/struct:VCR::HTTPInteraction
196
+ request: !ruby/struct:VCR::Request
197
+ method: :get
198
+ uri: http://xkcd.org:80/
199
+ body:
200
+ headers:
201
+ accept:
202
+ - "*/*"
203
+ user-agent:
204
+ - Ruby
205
+ response: !ruby/struct:VCR::Response
206
+ status: !ruby/struct:VCR::ResponseStatus
207
+ code: 200
208
+ message: OK
209
+ headers:
210
+ vary:
211
+ - Accept-Encoding
212
+ content-type:
213
+ - text/html
214
+ accept-ranges:
215
+ - bytes
216
+ etag:
217
+ - "\"3130182202\""
218
+ last-modified:
219
+ - Mon, 27 Sep 2010 04:35:22 GMT
220
+ content-length:
221
+ - "8325"
222
+ date:
223
+ - Tue, 28 Sep 2010 00:58:08 GMT
224
+ server:
225
+ - lighttpd/1.4.19
226
+ body: |+
227
+ <?xml version="1.0" encoding="utf-8" ?>
228
+ <?xml-stylesheet href="http://imgs.xkcd.com/s/c40a9f8.css" type="text/css" media="screen" ?>
229
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
230
+ <html xmlns="http://www.w3.org/1999/xhtml">
231
+ <head>
232
+ <title>xkcd: Adjectives</title>
233
+ <link rel="alternate" type="application/atom+xml" title="Atom 1.0" href="/atom.xml" />
234
+ <link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="/rss.xml" />
235
+
236
+ <link rel="icon" href="http://imgs.xkcd.com/s/919f273.ico" type="image/x-icon" />
237
+ <link rel="shortcut icon" href="http://imgs.xkcd.com/s/919f273.ico" type="image/x-icon" />
238
+
239
+ <link rel="stylesheet" type="text/css" href="http://imgs.xkcd.com/s/c40a9f8.css" media="screen" title="Default" />
240
+ <!--[if IE]><link rel="stylesheet" type="text/css" href="http://imgs.xkcd.com/s/ecbbecc.css" media="screen" title="Default" /><![endif]-->
241
+
242
+ </head>
243
+ <body>
244
+ <div id="container">
245
+ <div id="topContainer">
246
+ <div id="topLeft" class="dialog">
247
+ <div class="hd"><div class="c"></div></div>
248
+ <div class="bd">
249
+ <div class="c">
250
+ <div class="s">
251
+ <ul>
252
+ <li><a href="/archive/">Archive</a><br /></li>
253
+ <li><a href="http://forums.xkcd.com">Forums</a><br /></li>
254
+ <li><a href="http://blag.xkcd.com/">News/Blag</a><br /></li>
255
+ <li><a href="http://store.xkcd.com/">Store</a><br /></li>
256
+ <li><a href="/about/">About</a><br /></li>
257
+ </ul>
258
+ </div>
259
+ </div>
260
+ </div>
261
+ <div class="ft"><div class="c"></div></div>
262
+ </div>
263
+ <div id="topRight" class="dialog">
264
+ <div class="hd"><div class="c"></div></div>
265
+ <div class="bd">
266
+ <div class="c">
267
+ <div class="s">
268
+ <div id="topRightContainer">
269
+ <div id="logo">
270
+ <a href="/"><img src="http://imgs.xkcd.com/s/9be30a7.png" alt="xkcd.com logo" height="83" width="185"/></a>
271
+ <h2><br />A webcomic of romance,<br/> sarcasm, math, and language.</h2>
272
+ <div class="clearleft"></div>
273
+ XKCD updates every Monday, Wednesday, and Friday.<br />
274
+ There are t-shirts, prints, posters, and other items in the <a href="http://store.xkcd.com/">store</a>!
275
+
276
+ </div>
277
+ </div>
278
+ </div>
279
+ </div>
280
+ </div>
281
+ <div class="ft"><div class="c"></div></div>
282
+ </div>
283
+ </div>
284
+ <div id="contentContainer">
285
+ <div id="middleContent" class="dialog">
286
+ <div class="hd"><div class="c"></div></div>
287
+ <div class="bd">
288
+ <div class="c">
289
+ <div class="s">
290
+
291
+ <h1>Adjectives</h1><br/>
292
+ <br />
293
+ <div class="menuCont">
294
+ <ul>
295
+ <li><a href="/1/">|&lt;</a></li>
296
+ <li><a href="/797/" accesskey="p">&lt; Prev</a></li>
297
+ <li><a href="http://dynamic.xkcd.com/random/comic/" id="rnd_btn_t">Random</a></li>
298
+ <li><a href="#" accesskey="n">Next &gt;</a></li>
299
+ <li><a href="/">&gt;|</a></li>
300
+ </ul>
301
+ </div>
302
+ <br/>
303
+ <br/>
304
+ <img src="http://imgs.xkcd.com/comics/adjectives.png" title="&#39;Fucking ineffable&#39; sounds like someone remembering how to do self-censorship halfway through a phrase." alt="Adjectives" /><br/>
305
+ <br/>
306
+ <div class="menuCont">
307
+ <ul>
308
+ <li><a href="/1/">|&lt;</a></li>
309
+ <li><a href="/797/" accesskey="p">&lt; Prev</a></li>
310
+ <li><a href="http://dynamic.xkcd.com/random/comic/" id="rnd_btn_b">Random</a></li>
311
+ <li><a href="#" accesskey="n">Next &gt;</a></li>
312
+ <li><a href="/">&gt;|</a></li>
313
+ </ul>
314
+ </div>
315
+ <h3>Permanent link to this comic: http://xkcd.com/798/</h3>
316
+ <h3>Image URL (for hotlinking/embedding): http://imgs.xkcd.com/comics/adjectives.png</h3>
317
+
318
+ <div id="transcript" style="display: none"></div>
319
+
320
+ </div>
321
+ </div>
322
+ </div>
323
+ <div class="ft"><div class="c"></div></div>
324
+ </div>
325
+ <div id="middleFooter" class="dialog">
326
+ <div class="hd"><div class="c"></div></div>
327
+ <div class="bd">
328
+ <div class="c">
329
+ <div class="s">
330
+ <img src="http://imgs.xkcd.com/s/a899e84.jpg" width="516" height="100" alt="Selected Comics" usemap="#comicmap" />
331
+ <map name="comicmap">
332
+ <area shape="rect" coords="0,0,100,100" href="/150/" alt="Grownups" />
333
+ <area shape="rect" coords="104,0,204,100" href="/730/" alt="Circuit Diagram" />
334
+ <area shape="rect" coords="208,0,308,100" href="/162/" alt="Angular Momentum" />
335
+ <area shape="rect" coords="312,0,412,100" href="/688/" alt="Self-Description" />
336
+ <area shape="rect" coords="416,0,516,100" href="/556/" alt="Alternative Energy Revolution" />
337
+ </map><br/><br />
338
+
339
+ <script type="text/javascript" src="http://www.google.com/jsapi"></script>
340
+ <script type="text/javascript">
341
+ google.load('search', '1');
342
+ google.setOnLoadCallback(function() {
343
+ google.search.CustomSearchControl.attachAutoCompletion(
344
+ '012652707207066138651:zudjtuwe28q',
345
+ document.getElementById('q'),
346
+ 'cse-search-box');
347
+ });
348
+ </script>
349
+ <form action="http://www.google.com/cse" id="cse-search-box">
350
+ <div>
351
+ <input type="hidden" name="cx" value="012652707207066138651:zudjtuwe28q" />
352
+ <input type="hidden" name="ie" value="UTF-8" />
353
+ <input type="text" name="q" id="q" autocomplete="off" size="31" />
354
+ <input type="submit" name="sa" value="Search" />
355
+ </div>
356
+ </form>
357
+ <script type="text/javascript" src="http://www.google.com/cse/brand?form=cse-search-box&lang=en"></script>
358
+
359
+ <a href="/rss.xml">RSS Feed</a> - <a href="/atom.xml">Atom Feed</a>
360
+ <br />
361
+ <br/>
362
+
363
+ <div id="comicLinks">
364
+ Comics I enjoy:<br/>
365
+ <a href="http://www.qwantz.com">Dinosaur Comics</a>,
366
+ <a href="http://www.asofterworld.com">A Softer World</a>,
367
+ <a href="http://pbfcomics.com/">Perry Bible Fellowship</a>,
368
+ <a href="http://www.boltcity.com/copper/">Copper</a>,
369
+ <a href="http://questionablecontent.net/">Questionable Content</a>,
370
+ <a href="http://achewood.com/">Achewood</a>,
371
+ <a href="http://wondermark.com/">Wondermark</a>,
372
+ <a href="http://thisisindexed.com/">Indexed</a>,
373
+ <a href="http://www.buttercupfestival.com/buttercupfestival.htm">Buttercup Festival</a>
374
+ </div>
375
+
376
+
377
+ <br/>
378
+ Warning: this comic occasionally contains strong language (which may be unsuitable for children), unusual humor (which may be unsuitable for adults), and advanced mathematics (which may be unsuitable for liberal-arts majors).<br/>
379
+ <br/>
380
+ <h4>We did not invent the algorithm. The algorithm consistently finds Jesus. The algorithm killed Jeeves. <br />The algorithm is banned in China. The algorithm is from Jersey. The algorithm constantly finds Jesus.<br />This is not the algorithm. This is close.</h4><br/>
381
+ <div class="line"></div>
382
+ <br/>
383
+ <div id="licenseText">
384
+ <!-- <a rel="license" href="http://creativecommons.org/licenses/by-nc/2.5/"><img alt="Creative Commons License" style="border:none" src="http://imgs.xkcd.com/static/somerights20.png" /></a><br/> -->
385
+ This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-nc/2.5/">Creative Commons Attribution-NonCommercial 2.5 License</a>.
386
+ <!-- <rdf:RDF xmlns="http://web.resource.org/cc/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"><Work rdf:about=""><dc:creator>Randall Munroe</dc:creator><dcterms:rightsHolder>Randall Munroe</dcterms:rightsHolder><dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:source rdf:resource="http://www.xkcd.com/"/><license rdf:resource="http://creativecommons.org/licenses/by-nc/2.5/" /></Work><License rdf:about="http://creativecommons.org/licenses/by-nc/2.5/"><permits rdf:resource="http://web.resource.org/cc/Reproduction" /><permits rdf:resource="http://web.resource.org/cc/Distribution" /><requires rdf:resource="http://web.resource.org/cc/Notice" /><requires rdf:resource="http://web.resource.org/cc/Attribution" /><prohibits rdf:resource="http://web.resource.org/cc/CommercialUse" /><permits rdf:resource="http://web.resource.org/cc/DerivativeWorks" /></License></rdf:RDF> -->
387
+ <br/>
388
+ This means you're free to copy and share these comics (but not to sell them). <a href="/license.html">More details</a>.<br/>
389
+ </div>
390
+ </div>
391
+ </div>
392
+ </div>
393
+ <div class="ft"><div class="c"></div></div>
394
+ </div>
395
+ </div>
396
+ </div>
397
+ </body>
398
+ </html>
399
+
400
+
401
+ http_version: "1.1"
402
+ - !ruby/struct:VCR::HTTPInteraction
403
+ request: !ruby/struct:VCR::Request
404
+ method: :get
405
+ uri: http://xkcd.org:80/atom.xml
406
+ body:
407
+ headers:
408
+ accept:
409
+ - "*/*"
410
+ user-agent:
411
+ - Ruby
412
+ response: !ruby/struct:VCR::Response
413
+ status: !ruby/struct:VCR::ResponseStatus
414
+ code: 200
415
+ message: OK
416
+ headers:
417
+ vary:
418
+ - Accept-Encoding
419
+ content-type:
420
+ - application/xml
421
+ accept-ranges:
422
+ - bytes
423
+ etag:
424
+ - "\"3524434522\""
425
+ last-modified:
426
+ - Mon, 27 Sep 2010 04:35:23 GMT
427
+ content-length:
428
+ - "2222"
429
+ date:
430
+ - Tue, 28 Sep 2010 01:03:11 GMT
431
+ server:
432
+ - lighttpd/1.4.19
433
+ body: |-
434
+ <?xml version="1.0" encoding="utf-8"?>
435
+ <feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en"><title>xkcd.com</title><link href="http://xkcd.com/" rel="alternate"></link><id>http://xkcd.com/</id><updated>2010-09-27T00:00:00Z</updated><entry><title>Adjectives</title><link href="http://xkcd.com/798/" rel="alternate"></link><updated>2010-09-27T00:00:00Z</updated><id>http://xkcd.com/798/</id><summary type="html">&lt;img src="http://imgs.xkcd.com/comics/adjectives.png" title="'Fucking ineffable' sounds like someone remembering how to do self-censorship halfway through a phrase." alt="'Fucking ineffable' sounds like someone remembering how to do self-censorship halfway through a phrase." /&gt;</summary></entry><entry><title>debian-main</title><link href="http://xkcd.com/797/" rel="alternate"></link><updated>2010-09-24T00:00:00Z</updated><id>http://xkcd.com/797/</id><summary type="html">&lt;img src="http://imgs.xkcd.com/comics/debian_main.png" title="dpkg: error processing package (--purge): subprocess pre-removal script returned error exit 163: OH_GOD_THEYRE_INSIDE_MY_CLOTHES" alt="dpkg: error processing package (--purge): subprocess pre-removal script returned error exit 163: OH_GOD_THEYRE_INSIDE_MY_CLOTHES" /&gt;</summary></entry><entry><title>Bad Ex</title><link href="http://xkcd.com/796/" rel="alternate"></link><updated>2010-09-22T00:00:00Z</updated><id>http://xkcd.com/796/</id><summary type="html">&lt;img src="http://imgs.xkcd.com/comics/bad_ex.png" title="Since the goatee, glasses, and Seltzer &amp; Friedberg DVD collection didn't tip you off, there will be a $20 negligence charge for this service." alt="Since the goatee, glasses, and Seltzer &amp; Friedberg DVD collection didn't tip you off, there will be a $20 negligence charge for this service." /&gt;</summary></entry><entry><title>Conditional Risk</title><link href="http://xkcd.com/795/" rel="alternate"></link><updated>2010-09-20T00:00:00Z</updated><id>http://xkcd.com/795/</id><summary type="html">&lt;img src="http://imgs.xkcd.com/comics/conditional_risk.png" title="'Dude, wait -- I'm not American! So my risk is basically zero!'" alt="'Dude, wait -- I'm not American! So my risk is basically zero!'" /&gt;</summary></entry></feed>
436
+ http_version: "1.1"
437
+ - !ruby/struct:VCR::HTTPInteraction
438
+ request: !ruby/struct:VCR::Request
439
+ method: :get
440
+ uri: http://xkcd.org:80/rss.xml
441
+ body:
442
+ headers:
443
+ accept:
444
+ - "*/*"
445
+ user-agent:
446
+ - Ruby
447
+ response: !ruby/struct:VCR::Response
448
+ status: !ruby/struct:VCR::ResponseStatus
449
+ code: 200
450
+ message: OK
451
+ headers:
452
+ vary:
453
+ - Accept-Encoding
454
+ content-type:
455
+ - application/xml
456
+ accept-ranges:
457
+ - bytes
458
+ etag:
459
+ - "\"3604105942\""
460
+ last-modified:
461
+ - Mon, 27 Sep 2010 04:35:23 GMT
462
+ content-length:
463
+ - "2152"
464
+ date:
465
+ - Tue, 28 Sep 2010 01:10:00 GMT
466
+ server:
467
+ - lighttpd/1.4.19
468
+ body: |-
469
+ <?xml version="1.0" encoding="utf-8"?>
470
+ <rss version="2.0"><channel><title>xkcd.com</title><link>http://xkcd.com/</link><description>xkcd.com: A webcomic of romance and math humor.</description><language>en</language><item><title>Adjectives</title><link>http://xkcd.com/798/</link><description>&lt;img src="http://imgs.xkcd.com/comics/adjectives.png" title="'Fucking ineffable' sounds like someone remembering how to do self-censorship halfway through a phrase." alt="'Fucking ineffable' sounds like someone remembering how to do self-censorship halfway through a phrase." /&gt;</description><pubDate>Mon, 27 Sep 2010 04:00:00 -0000</pubDate><guid>http://xkcd.com/798/</guid></item><item><title>debian-main</title><link>http://xkcd.com/797/</link><description>&lt;img src="http://imgs.xkcd.com/comics/debian_main.png" title="dpkg: error processing package (--purge): subprocess pre-removal script returned error exit 163: OH_GOD_THEYRE_INSIDE_MY_CLOTHES" alt="dpkg: error processing package (--purge): subprocess pre-removal script returned error exit 163: OH_GOD_THEYRE_INSIDE_MY_CLOTHES" /&gt;</description><pubDate>Fri, 24 Sep 2010 04:00:00 -0000</pubDate><guid>http://xkcd.com/797/</guid></item><item><title>Bad Ex</title><link>http://xkcd.com/796/</link><description>&lt;img src="http://imgs.xkcd.com/comics/bad_ex.png" title="Since the goatee, glasses, and Seltzer &amp; Friedberg DVD collection didn't tip you off, there will be a $20 negligence charge for this service." alt="Since the goatee, glasses, and Seltzer &amp; Friedberg DVD collection didn't tip you off, there will be a $20 negligence charge for this service." /&gt;</description><pubDate>Wed, 22 Sep 2010 04:00:00 -0000</pubDate><guid>http://xkcd.com/796/</guid></item><item><title>Conditional Risk</title><link>http://xkcd.com/795/</link><description>&lt;img src="http://imgs.xkcd.com/comics/conditional_risk.png" title="'Dude, wait -- I'm not American! So my risk is basically zero!'" alt="'Dude, wait -- I'm not American! So my risk is basically zero!'" /&gt;</description><pubDate>Mon, 20 Sep 2010 04:00:00 -0000</pubDate><guid>http://xkcd.com/795/</guid></item></channel></rss>
471
+ http_version: "1.1"
472
+ - !ruby/struct:VCR::HTTPInteraction
473
+ request: !ruby/struct:VCR::Request
474
+ method: :get
475
+ uri: http://github.com:80/blog
476
+ body:
477
+ headers:
478
+ accept:
479
+ - "*/*"
480
+ user-agent:
481
+ - Ruby
482
+ response: !ruby/struct:VCR::Response
483
+ status: !ruby/struct:VCR::ResponseStatus
484
+ code: 200
485
+ message: OK
486
+ headers:
487
+ server:
488
+ - nginx/0.7.67
489
+ date:
490
+ - Tue, 28 Sep 2010 01:26:22 GMT
491
+ content-type:
492
+ - text/html; charset=utf-8
493
+ connection:
494
+ - keep-alive
495
+ status:
496
+ - 200 OK
497
+ etag:
498
+ - "\"72f49ac632d75c16e5f195121c854d79\""
499
+ x-runtime:
500
+ - 122ms
501
+ content-length:
502
+ - "53561"
503
+ set-cookie:
504
+ - csrf_id=471ab2ea040e82a904c9817aefee178f; path=/
505
+ - _github_ses=BAh7BzoRbG9jYWxlX2d1ZXNzMCIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%3D%3D--e10506e0f6935897cafe4f56774e20aa35e579a5; path=/; expires=Wed, 01 Jan 2020 08:00:00 GMT; HttpOnly
506
+ cache-control:
507
+ - private, max-age=0, must-revalidate
508
+ body: "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n\n\
509
+ <html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\n <head>\n <meta http-equiv=\"content-type\" content=\"text/html;charset=UTF-8\" />\n <meta http-equiv=\"X-UA-Compatible\" content=\"chrome=1\">\n <title>The Official Blog - GitHub</title>\n <link rel=\"search\" type=\"application/opensearchdescription+xml\" href=\"/opensearch.xml\" title=\"GitHub\" />\n <link rel=\"fluid-icon\" href=\"http://github.com/fluidicon.png\" title=\"GitHub\" />\n\n <link href=\"http://assets3.github.com/stylesheets/bundle_common.css?b93c68c7f180addad844ab9e069d6cbeea277228\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" />\n\
510
+ <link href=\"http://assets3.github.com/stylesheets/bundle_github.css?b93c68c7f180addad844ab9e069d6cbeea277228\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" />\n\n <script type=\"text/javascript\" charset=\"utf-8\">\n var GitHub = {}\n var github_user = null\n \n </script>\n <script src=\"http://assets1.github.com/javascripts/jquery/jquery-1.4.2.min.js?b93c68c7f180addad844ab9e069d6cbeea277228\" type=\"text/javascript\"></script>\n <script src=\"http://assets1.github.com/javascripts/bundle_common.js?b93c68c7f180addad844ab9e069d6cbeea277228\" type=\"text/javascript\"></script>\n\
511
+ <script src=\"http://assets2.github.com/javascripts/bundle_github.js?b93c68c7f180addad844ab9e069d6cbeea277228\" type=\"text/javascript\"></script>\n\n <script type=\"text/javascript\" charset=\"utf-8\">\n GitHub.spy({\n repo: \"\"\n })\n </script>\n\n \n \n\n <link href=\"http://feeds.feedburner.com/github\" rel=\"alternate\" title=\"The GitHub Blog\" type=\"application/atom+xml\" />\n <link href=\"http://feeds.feedburner.com/github-comments\" rel=\"alternate\" title=\"GitHub Blog Comments\" type=\"application/atom+xml\" />\n\n\n <script type=\"text/javascript\">\n var _gaq = _gaq || [];\n _gaq.push(['_setAccount', 'UA-3769691-2']);\n _gaq.push(['_trackPageview']);\n (function() {\n var ga = document.createElement('script');\n ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';\n ga.setAttribute('async', 'true');\n document.documentElement.firstChild.appendChild(ga);\n })();\n </script>\n\n </head>\n\n \n\n <body class=\"logged_out \">\n \n\n \n <script type=\"text/javascript\">\n var _kmq = _kmq || [];\n function _kms(u){\n var s = document.createElement('script'); var f = document.getElementsByTagName('script')[0]; s.type = 'text/javascript'; s.async = true;\n s.src = u; f.parentNode.insertBefore(s, f);\n }\n _kms('//i.kissmetrics.com/i.js');_kms('//doug1izaerwt3.cloudfront.net/406e8bf3a2b8846ead55afb3cfaf6664523e3a54.1.js');\n </script>\n \n\n \n\n \n\n \n\n <div class=\"\" id=\"main\">\n <div id=\"header\" class=\"true\">\n \n <a class=\"logo boring\" href=\"http://github.com\">\n <img src=\"/images/modules/header/logov3.png?changed\" class=\"default\" alt=\"github\" />\n <![if !IE]>\n <img src=\"/images/modules/header/logov3-hover.png\" class=\"hover\" alt=\"github\" />\n <![endif]>\n </a>\n \n \n <div class=\"topsearch\">\n \n <ul class=\"nav logged_out\">\n <li><a href=\"http://github.com\">Home</a></li>\n <li class=\"pricing\"><a href=\"/plans\">Pricing and Signup</a></li>\n <li><a href=\"http://github.com/training\">Training</a></li>\n <li><a href=\"http://gist.github.com\">Gist</a></li>\n <li><a href=\"/blog\">Blog</a></li>\n <li><a href=\"https://github.com/login\">Login</a></li>\n </ul>\n \n\
512
+ </div>\n\n </div>\n\n \n \n <div class=\"site\">\n \n\n\
513
+ <div id=\"posts\">\n <div class=\"list\">\n <ul>\n <li class=\"hentry post\" id=\"post_724\">\n <h2><a href=\"/blog/724-a-few-words-on-the-recent-outages\" class=\"reverse url entry-title\" rel=\"bookmark\">A few words on the recent outages</a> <small></small></h2>\n <div class=\"meta\">\n <div class=\"who_when\">\n <img src=\"http://www.gravatar.com/avatar/920e60e81da4fb61eaeb95fa9d7c3b70?s=140&d=http%3A%2F%2Fgithub.com%2Fimages%2Fgravatars%2Fgravatar-140.png\" alt=\"\" width=\"16\" height=\"16\" />\n <span class=\"author vcard fn\"><a href=\"/rodjek\">rodjek</a></span>\n <span class=\"published\" title=\"2010-09-24T13:48:44-07:00\">24 Sep 2010</span>\n \n </div>\n <div class=\"respond\">\n <a href=\"/blog/724-a-few-words-on-the-recent-outages#comments\">1 comment</a>\n </div>\n </div>\n <div class=\"entry-content\">\n \n <p>While we've been working hard to keep ahead of the demand for new file servers to push to and new web servers to keep the angry unicorn at bay, we've sadly neglected a very vital part of our infrastructure: the load balancers.</p>\n\n\
514
+ <p>Earlier today our active load balancer became starved for resources due to some unfortunate timing, with a higher than normal amount of hits to the site while a rather intensive periodic job was running in the background. This caused the load balancer to start swapping out, drastically reducing its performance.</p>\n\n\
515
+ <p>A few minutes later - after determining that the active load balancer wasn't going to recover any time soon - the standby load balancer proceeded to take over from the active load balancer. Unfortunately, as anyone who has worked with HA systems before will agree, failovers don't always go as planned. The standby load balancer failed to start all the necessary resources and the site was left in a broken state. Once we were alerted to the issue, we logged in and quickly determined what the issue was and started working on resolving it.</p>\n\n\
516
+ <h4>What's the outcome of these outages?</h4>\n\n\
517
+ <p>We've increased the resources available to the load balancers in order to account for the growth we've had over the last year. We've also had a potent reminder on how important it is to keep a close eye on all parts of your infrastructure, not just the bits that are the most visible.</p>\n\n \n </div>\n\
518
+ </li><li class=\"hentry post\" id=\"post_723\">\n <h2><a href=\"/blog/723-tim-sharpe-is-a-githubber\" class=\"reverse url entry-title\" rel=\"bookmark\">Tim Sharpe is a GitHubber</a> <small></small></h2>\n <div class=\"meta\">\n <div class=\"who_when\">\n <img src=\"http://www.gravatar.com/avatar/25c7c18223fb42a4c6ae1c8db6f50f9b?s=140&d=http%3A%2F%2Fgithub.com%2Fimages%2Fgravatars%2Fgravatar-140.png\" alt=\"\" width=\"16\" height=\"16\" />\n <span class=\"author vcard fn\"><a href=\"/mojombo\">mojombo</a></span>\n <span class=\"published\" title=\"2010-09-24T10:15:19-07:00\">24 Sep 2010</span>\n \n </div>\n <div class=\"respond\">\n <a href=\"/blog/723-tim-sharpe-is-a-githubber#comments\">2 comments</a>\n </div>\n </div>\n <div class=\"entry-content\">\n \n <p>Monday marked <a href=\"http://github.com/rodjek\">Tim Sharpe's</a> first day at GitHub. He'll be joining us as our first full time sysadmin. His skills in Puppet and DRBD configuration are legendary. While not fighting crocodiles or dropbears in the Australian outback, Tim will be in charge of making sure that our servers stay comfy and warm in their racks.</p>\n\n\
519
+ <center><a href=\"http://www.marvunapp.com/Appendix4/dropbears.htm\"><img src=\"http://img.skitch.com/20100924-gi2qt69fgpj1147wk9jgmckhn1.jpg\" alt=\"Tim Sharpe\" /></a></center>\n\n\n\
520
+ <p>With Tim on board, you can be sure that any problems will be handled with finesse and we'll be ready to grow to accommodate all of the repos you can throw at us.</p>\n\n\
521
+ <p>Welcome, Tim!</p>\n\n \n </div>\n\
522
+ </li><li class=\"hentry post\" id=\"post_722\">\n <h2><a href=\"/blog/722-a-little-help-for-merging-pull-requests\" class=\"reverse url entry-title\" rel=\"bookmark\">A little help for merging pull requests</a> <small></small></h2>\n <div class=\"meta\">\n <div class=\"who_when\">\n <img src=\"http://www.gravatar.com/avatar/5f2da528927a2ec9ba4fec2069cbc958?s=140&d=http%3A%2F%2Fgithub.com%2Fimages%2Fgravatars%2Fgravatar-140.png\" alt=\"\" width=\"16\" height=\"16\" />\n <span class=\"author vcard fn\"><a href=\"/kneath\">kneath</a></span>\n <span class=\"published\" title=\"2010-09-23T14:47:20-07:00\">23 Sep 2010</span>\n \n </div>\n <div class=\"respond\">\n <a href=\"/blog/722-a-little-help-for-merging-pull-requests#comments\">19 comments</a>\n </div>\n </div>\n <div class=\"entry-content\">\n \n <p>While you're waiting for the long anticipated MergeButton\xE2\x84\xA2, I wanted to take a moment to highlight a few bits of documentation we have for pull requests.</p>\n\n\
523
+ <p>If you have any questions about how pull requests work or how to deal with them, be sure to read our <a href=\"http://help.github.com/pull-requests/\">extensive help article on pull requests</a>. We have documentation on how to create, preview, manage, review and merge pull requests.</p>\n\n\
524
+ <p>Another useful place for help can now be found at the bottom of any pull request that you can merge (meaning: open pull requests on repositories you have push access to).</p>\n\n\
525
+ <p><img src=\"http://github-images.s3.amazonaws.com/blog/2010/pull_request-help.jpg\" alt=\"\" /></p>\n\n\
526
+ <p>Lastly, don't forget about <a href=\"/defunkt/hub\">hub</a> and the <a href=\"/defunkt/github-gem\">github gem</a> which introduce a little bit of syntactic sugar around dealing with your GitHub network on the command line.</p>\n\n \n </div>\n\
527
+ </li><li class=\"hentry post\" id=\"post_721\">\n <h2><a href=\"/blog/721-github-meetup-belfast-saturday-sep-18th\" class=\"reverse url entry-title\" rel=\"bookmark\">GitHub Meetup Belfast, Saturday Sep 18th</a> <small></small></h2>\n <div class=\"meta\">\n <div class=\"who_when\">\n <img src=\"http://www.gravatar.com/avatar/25c7c18223fb42a4c6ae1c8db6f50f9b?s=140&d=http%3A%2F%2Fgithub.com%2Fimages%2Fgravatars%2Fgravatar-140.png\" alt=\"\" width=\"16\" height=\"16\" />\n <span class=\"author vcard fn\"><a href=\"/mojombo\">mojombo</a></span>\n <span class=\"published\" title=\"2010-09-17T12:41:23-07:00\">17 Sep 2010</span>\n \n </div>\n <div class=\"respond\">\n <a href=\"/blog/721-github-meetup-belfast-saturday-sep-18th#comments\">0 comments</a>\n </div>\n </div>\n <div class=\"entry-content\">\n \n <div align=\"center\">\n\
528
+ <img src=\"http://img.skitch.com/20100917-x9ygnwud5ytgikcsgxiqjht56b.jpg\">\n\
529
+ </div>\n\n\n\
530
+ <p>As the last stop on my four-country, three-conference international tour I'm coming to Belfast! The festivities will start Saturday, September 18th at 19:00 at <a href=\"http://maps.google.com/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=duke+of+york,+belfast&amp;sll=37.0625,-95.677068&amp;sspn=55.718442,106.787109&amp;ie=UTF8&amp;hq=duke+of+york,&amp;hnear=Belfast,+United+Kingdom&amp;z=15&amp;iwloc=A\">Duke of York</a>.</p>\n\n\
531
+ <p>So, come by and meet me (Tom Preston-Werner). I'll be wearing a gray GitHub shirt that says \"fork you\" on the front. First round's on us!</p>\n\n \n </div>\n\
532
+ </li><li class=\"hentry post\" id=\"post_719\">\n <h2><a href=\"/blog/719-eston-bond-is-a-githubber\" class=\"reverse url entry-title\" rel=\"bookmark\">Eston Bond is a GitHubber</a> <small></small></h2>\n <div class=\"meta\">\n <div class=\"who_when\">\n <img src=\"http://www.gravatar.com/avatar/5f2da528927a2ec9ba4fec2069cbc958?s=140&d=http%3A%2F%2Fgithub.com%2Fimages%2Fgravatars%2Fgravatar-140.png\" alt=\"\" width=\"16\" height=\"16\" />\n <span class=\"author vcard fn\"><a href=\"/kneath\">kneath</a></span>\n <span class=\"published\" title=\"2010-09-15T12:22:24-07:00\">15 Sep 2010</span>\n \n </div>\n <div class=\"respond\">\n <a href=\"/blog/719-eston-bond-is-a-githubber#comments\">9 comments</a>\n </div>\n </div>\n <div class=\"entry-content\">\n \n <p>Monday marked <a href=\"http://github.com/eston\">Eston Bond's</a> first day at GitHub. He'll be joining me working on the look &amp; feel of all things GitHub. We're all stoked to have another designer on board and can't wait to see what awesome comes from it.</p>\n\n\
533
+ <center><img src=\"http://github-images.s3.amazonaws.com/blog/2010/estonbond.jpg\" alt=\"Eston Bond\" /></center>\n\n\n\
534
+ <p>You might know Eston from his time as a Product Designer at <a href=\"http://facebook.com/\">Facebook</a> fame or as the designer of <a href=\"http://techcrunch.com/2009/05/28/spymaster-the-twitter-game-that-will-assassinate-your-time/\">Spymaster</a>. Eston is starting a new blog at <a href=\"http://estonbond.com/\">estonbond.com</a>, tweets as <a href=\"http://twitter.com/eston\">@eston</a> and hacks as <a href=\"http://github.com/eston/\">eston</a>.</p>\n\n\
535
+ <p>Welcome, Eston!</p>\n\n \n </div>\n\
536
+ </li><li class=\"hentry post\" id=\"post_718\">\n <h2><a href=\"/blog/718-github-meetup-moscow-tonight-sep-15\" class=\"reverse url entry-title\" rel=\"bookmark\">GitHub Meetup Moscow, Tonight, Sep 15</a> <small></small></h2>\n <div class=\"meta\">\n <div class=\"who_when\">\n <img src=\"http://www.gravatar.com/avatar/25c7c18223fb42a4c6ae1c8db6f50f9b?s=140&d=http%3A%2F%2Fgithub.com%2Fimages%2Fgravatars%2Fgravatar-140.png\" alt=\"\" width=\"16\" height=\"16\" />\n <span class=\"author vcard fn\"><a href=\"/mojombo\">mojombo</a></span>\n <span class=\"published\" title=\"2010-09-14T22:24:32-07:00\">14 Sep 2010</span>\n \n </div>\n <div class=\"respond\">\n <a href=\"/blog/718-github-meetup-moscow-tonight-sep-15#comments\">20 comments</a>\n </div>\n </div>\n <div class=\"entry-content\">\n \n <div align=\"center\">\n\
537
+ <img src=\"http://img.skitch.com/20100915-d4tk6qkybdfcke8t55pedqqbjm.jpg\">\n\
538
+ </div>\n\n\n\
539
+ <p>I'm in Moscow for the <a href=\"http://techforum.mail.ru/\">@mail.ru Tech Forum</a> and I'll be holding a casual GitHub Drinkup at <a href=\"http://maps.google.com/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=sally+obrien,+Russian+Federation,+Moscow&amp;sll=55.739099,37.618044&amp;sspn=0.037979,0.104284&amp;ie=UTF8&amp;hq=sally+obrien,&amp;hnear=Moscow,+Russian+Federation&amp;ll=55.741028,37.61693&amp;spn=0.037977,0.104284&amp;z=14&amp;iwloc=A\">Sally O'Brien's</a> starting at 21:00.</p>\n\n\
540
+ <p>So, come by and meet me (Tom Preston-Werner). I'll be wearing a gray GitHub shirt that says \"fork you\" on the front. First round's on us!</p>\n\n \n </div>\n\
541
+ </li><li class=\"hentry post\" id=\"post_717\">\n <h2><a href=\"/blog/717-git-user-survey-2010\" class=\"reverse url entry-title\" rel=\"bookmark\">Git User Survey 2010</a> <small></small></h2>\n <div class=\"meta\">\n <div class=\"who_when\">\n <img src=\"http://www.gravatar.com/avatar/b8dbb1987e8e5318584865f880036796?s=140&d=http%3A%2F%2Fgithub.com%2Fimages%2Fgravatars%2Fgravatar-140.png\" alt=\"\" width=\"16\" height=\"16\" />\n <span class=\"author vcard fn\"><a href=\"/defunkt\">defunkt</a></span>\n <span class=\"published\" title=\"2010-09-13T17:53:41-07:00\">13 Sep 2010</span>\n \n </div>\n <div class=\"respond\">\n <a href=\"/blog/717-git-user-survey-2010#comments\">7 comments</a>\n </div>\n </div>\n <div class=\"entry-content\">\n \n <p>It's that time again: the <a href=\"https://www.survs.com/survey/MUPYR8UJ4B\">2010 Git User Survey</a> is here!</p>\n\n\
542
+ <p><strong>All questions are optional,</strong> but every answer you give helps make git even more awesome.</p>\n\n\
543
+ <p>The survey will run until October 15th so fill it out soon. Results will be posted to <a href=\"https://git.wiki.kernel.org/index.php/GitSurvey2010\">https://git.wiki.kernel.org/index.php/GitSurvey2010</a> after that date.</p>\n\n\
544
+ <p>Thanks for helping out!</p>\n\n \n </div>\n\
545
+ </li><li class=\"hentry post\" id=\"post_716\">\n <h2><a href=\"/blog/716-github-wiki-upgrade-this-weekend\" class=\"reverse url entry-title\" rel=\"bookmark\">GitHub Wiki Upgrade This Weekend</a> <small></small></h2>\n <div class=\"meta\">\n <div class=\"who_when\">\n <img src=\"http://www.gravatar.com/avatar/821395fe70906c8290df7f18ac4ac6cf?s=140&d=http%3A%2F%2Fgithub.com%2Fimages%2Fgravatars%2Fgravatar-140.png\" alt=\"\" width=\"16\" height=\"16\" />\n <span class=\"author vcard fn\"><a href=\"/technoweenie\">technoweenie</a></span>\n <span class=\"published\" title=\"2010-09-10T11:00:26-07:00\">10 Sep 2010</span>\n \n </div>\n <div class=\"respond\">\n <a href=\"/blog/716-github-wiki-upgrade-this-weekend#comments\">4 comments</a>\n </div>\n </div>\n <div class=\"entry-content\">\n \n <p><strong>Update</strong>: Done! If you notice any issues, file a <a href=\"http://support.github.com\">support issue</a> with the <code>user/repo</code> path. No data on our end was deleted, so we can restore any lost data.</p>\n\n\
546
+ <p><strike><em>Update</em>: Still going! We've slowed down the progress of upgrades to minimize impact to the site.</strike></p>\n\n\
547
+ <p>On Sunday, September 12th, we're going to be upgrading all remaining classic wikis to the <a href=\"http://github.com/blog/699-making-github-more-open-git-backed-wikis\">new Git-backed wiki system</a>. Here's how I plan to do it:</p>\n\n\
548
+ <ul>\n\
549
+ <li>If the classic wiki is empty, enable the Git-backed wiki.</li>\n\
550
+ <li>If no Git-backed wiki exists, transfer the classic wiki to Git, and then disable the classic wiki.</li>\n\
551
+ <li>If the Git-backed wiki already exists, assume the transfer has completed, and disable the classic wiki.</li>\n\
552
+ </ul>\n\n\n\
553
+ <p>A few things to keep in mind:</p>\n\n\
554
+ <ul>\n\
555
+ <li>We won't be deleting any data. If you have problems, <a href=\"http://support.github.com/discussions\">file a support issue</a>. We can make temporary exceptions for repos that need to keep the classic wiki until some bug is fixed.</li>\n\
556
+ <li>If you upgraded a wiki but never disabled the classic wiki, you can <a href=\"http://support.github.com/discussions\">ask us</a> to wipe the Git repo so we can redo it.</li>\n\
557
+ <li>There are still a few minor bugs in the system that I hope to have fixed by Sunday.</li>\n\
558
+ </ul>\n\n\n\
559
+ <p>Thanks for being patient during the month long beta period. We got a lot of great feedback, fixed some nasty bugs, and are seeing a lot of activity on the <a href=\"http://github.com/github/gollum/issues\">open source front</a>.</p>\n\n \n </div>\n\
560
+ </li><li class=\"hentry post\" id=\"post_715\">\n <h2><a href=\"/blog/715-github-meetup-in-dublin-sept-11\" class=\"reverse url entry-title\" rel=\"bookmark\">GitHub Meetup in Dublin - Sept 11</a> <small></small></h2>\n <div class=\"meta\">\n <div class=\"who_when\">\n <img src=\"http://www.gravatar.com/avatar/290cf664d9e6f823fc3af57556493db7?s=140&d=http%3A%2F%2Fgithub.com%2Fimages%2Fgravatars%2Fgravatar-140.png\" alt=\"\" width=\"16\" height=\"16\" />\n <span class=\"author vcard fn\"><a href=\"/pjhyett\">pjhyett</a></span>\n <span class=\"published\" title=\"2010-09-09T02:24:14-07:00\"> 9 Sep 2010</span>\n \n </div>\n <div class=\"respond\">\n <a href=\"/blog/715-github-meetup-in-dublin-sept-11#comments\">3 comments</a>\n </div>\n </div>\n <div class=\"entry-content\">\n \n <p>Join <a href=\"/mojombo\">Tom</a>, <a href=\"/kneath\">Kyle</a>, <a href=\"/schacon\">Scott</a> and <a href=\"/pjhyett\">PJ</a> at the <a href=\"http://maps.google.com/maps?ie=UTF8&amp;q=guinness+gravity+bar&amp;fb=1&amp;hq=guinness+gravity+bar&amp;cid=0,0,12706997779410078966&amp;ei=oqeITPr5G5qH4gbW_rnOBA&amp;ved=0CDwQnwIwBw&amp;hnear=&amp;ll=53.34211,-6.286583&amp;spn=0.007482,0.018067&amp;z=16&amp;iwloc=A\">Guinness Gravity Bar</a> this Saturday from 20:00.</p>\n\n\
561
+ <p>There will be a bunch of people there for the <a href=\"http://funconf.com\">FunConf</a> after party, so make sure to say hi to one of us if you're able to make it.</p>\n\n\
562
+ <p><img src=\"http://img.skitch.com/20100909-j41d25q1s8x1stn5qfk3d9a52x.jpg\" alt=\"\" /></p>\n\n\
563
+ <p>Did I mention there will be Guinness?</p>\n\n \n </div>\n\
564
+ </li><li class=\"hentry post\" id=\"post_714\">\n <h2><a href=\"/blog/714-twitter-service-hooks-return\" class=\"reverse url entry-title\" rel=\"bookmark\">Twitter Service Hooks Return</a> <small></small></h2>\n <div class=\"meta\">\n <div class=\"who_when\">\n <img src=\"http://www.gravatar.com/avatar/a86224d72ce21cd9f5bee6784d4b06c7?s=140&d=http%3A%2F%2Fgithub.com%2Fimages%2Fgravatars%2Fgravatar-140.png\" alt=\"\" width=\"16\" height=\"16\" />\n <span class=\"author vcard fn\"><a href=\"/atmos\">atmos</a></span>\n <span class=\"published\" title=\"2010-09-08T13:42:43-07:00\"> 8 Sep 2010</span>\n \n </div>\n <div class=\"respond\">\n <a href=\"/blog/714-twitter-service-hooks-return#comments\">14 comments</a>\n </div>\n </div>\n <div class=\"entry-content\">\n \n <p>A few weeks back <a href=\"http://dev.twitter.com/pages/basic_auth_shutdown\">twitter removed basic auth support</a> and as a result many of you haven't been receiving twitter notifications for changes to your repositories. We've taken the the necessary steps to re-enable this service via their OAuth based API. All you need to do is edit your repository and click on the link to get an OAuth token.</p>\n\n\
565
+ <p><img src=\"http://img.skitch.com/20100908-p33u3j6t4ma9522prcy3sna8cm.jpg\" alt=\"Click on the OAuth Link\" /></p>\n\n \n </div>\n\
566
+ </li><li class=\"hentry post\" id=\"post_713\">\n <h2><a href=\"/blog/713-the-reverse-twitter-effect\" class=\"reverse url entry-title\" rel=\"bookmark\">The Reverse Twitter Effect</a> <small></small></h2>\n <div class=\"meta\">\n <div class=\"who_when\">\n <img src=\"http://www.gravatar.com/avatar/b8dbb1987e8e5318584865f880036796?s=140&d=http%3A%2F%2Fgithub.com%2Fimages%2Fgravatars%2Fgravatar-140.png\" alt=\"\" width=\"16\" height=\"16\" />\n <span class=\"author vcard fn\"><a href=\"/defunkt\">defunkt</a></span>\n <span class=\"published\" title=\"2010-09-01T11:29:04-07:00\"> 1 Sep 2010</span>\n \n </div>\n <div class=\"respond\">\n <a href=\"/blog/713-the-reverse-twitter-effect#comments\">14 comments</a>\n </div>\n </div>\n <div class=\"entry-content\">\n \n <p>While Twitter may see traffic spikes during <a href=\"http://events.apple.com.edgesuite.net/1009qpeijrfn/event\">Apple events</a>, we see quite the opposite:</p>\n\n\
567
+ <center>\n\
568
+ <img src=\"http://img.skitch.com/20100901-d7frhdqtkbj5awp67sukpatxh1.png\">\n\
569
+ </center>\n\n\n \n </div>\n\
570
+ </li><li class=\"hentry post\" id=\"post_712\">\n <h2><a href=\"/blog/712-pull-requests-2-0\" class=\"reverse url entry-title\" rel=\"bookmark\">Pull Requests 2.0</a> <small></small></h2>\n <div class=\"meta\">\n <div class=\"who_when\">\n <img src=\"http://www.gravatar.com/avatar/abfc88b96ae18c85ba7aac3bded2ec5e?s=140&d=http%3A%2F%2Fgithub.com%2Fimages%2Fgravatars%2Fgravatar-140.png\" alt=\"\" width=\"16\" height=\"16\" />\n <span class=\"author vcard fn\"><a href=\"/rtomayko\">rtomayko</a></span>\n <span class=\"published\" title=\"2010-08-31T02:12:38-07:00\">31 Aug 2010</span>\n \n </div>\n <div class=\"respond\">\n <a href=\"/blog/712-pull-requests-2-0#comments\">95 comments</a>\n </div>\n </div>\n <div class=\"entry-content\">\n \n <p>GitHub launched with a simple pull request system on day one. You've used it to\n\
571
+ send <strong>200 thousand</strong> pull requests in just over two years. Now we're taking it\n\
572
+ to the next level with a re-imagined design and a slew of new tools that\n\
573
+ streamline the process of discussing, reviewing, and managing changes.</p>\n\n\
574
+ <p><img src=\"http://share.kyleneath.com/captures/skitched-20100830-133751.png\" alt=\"\" /></p>\n\n\
575
+ <p>As of today, pull requests are <strong>living discussions</strong> about the <strong>code</strong> you\n\
576
+ want merged. They're our take on <strong>code review</strong> and represent a big part of our\n\
577
+ vision for collaborative development.</p>\n\n\
578
+ <h3>Know What You're Sending</h3>\n\n\
579
+ <p>Sending a pull request is simple. Browse to the branch or commit with your\n\
580
+ recent work and hit the\n\
581
+ <img\n src='http://img.skitch.com/20100823-ui738y55bmn96nq3gp1q51upt.png'\n style='border:0;vertical-align:middle;position:relative;top:-2px;margin-bottom:-1px;display:inline'\n alt='Pull Request'\n\
582
+ /> button. You'll be greeted by a brand new screen:</p>\n\n\
583
+ <p><a href=\"http://img.skitch.com/20100831-k9jau6a3sbams4p3588b3ba2qd.png\" target=\"_blank\"><img src=\"http://img.skitch.com/20100831-k9jau6a3sbams4p3588b3ba2qd.png\" alt=\"\"></a></p>\n\n\
584
+ <p>Pull requests are now fully <strong>revision aware</strong> and take into account not only\n\
585
+ <em>what</em> you would like pulled but also <em>where</em> you intend those changes to be\n\
586
+ applied. They even work when sending from and to the same repository, making\n\
587
+ pull requests just as useful in scenarios where a team is working out of a\n\
588
+ single shared repository as they are in the <em>fork + pull</em> model.</p>\n\n\
589
+ <h3>When you send a pull request, you're starting a discussion.</h3>\n\n\
590
+ <p>Some back and forth is typically required before a pull request is accepted. The\n\
591
+ maintainer needs clarification, or the change doesn't conform to the project's\n\
592
+ coding conventions, or maybe someone was able to take a concept 80% to\n\
593
+ completion and needs help working through the last bits.</p>\n\n\
594
+ <p>The discussion view makes pull requests the best place to have these types\n\
595
+ of conversations. Anywhere. Here's why:</p>\n\n\
596
+ <p><a href=\"http://img.skitch.com/20100831-j7fapxihs2a3i48ai5qmqceskp.png\" target=\"_blank\"><img src=\"http://img.skitch.com/20100831-j7fapxihs2a3i48ai5qmqceskp.png\" alt=\"\"></a></p>\n\n\
597
+ <p>The discussion view presents all pull request related activity as it unfolds:\n\
598
+ comment on the pull request itself, push follow up commits, or leave commit\n\
599
+ notes - it's all interleaved into the discussion view as it happens.</p>\n\n\
600
+ <h3>Revision Aware</h3>\n\n\
601
+ <p>The discussion view is perfect for watching changes evolve over time, but it's\n\
602
+ equally important to know exactly what modifications would be made if the\n\
603
+ changes were accepted right now. The <em>Commits</em> and <em>Files Changed</em> tabs are\n\
604
+ quickly accessible and show the cumulative progress of the pull request:</p>\n\n\
605
+ <p><a href=\"http://img.skitch.com/20100831-mers1qjsq9acifp2gc2tf559cc.png\" target=\"_blank\"><img src=\"http://img.skitch.com/20100831-mers1qjsq9acifp2gc2tf559cc.png\" alt=\"\"></a></p>\n\n\
606
+ <p>Look familiar? It's a miniature\n\
607
+ <a href=\"http://github.com/blog/612-introducing-github-compare-view\">compare view</a>.</p>\n\n\
608
+ <h3>Visible, Linkable, Archived</h3>\n\n\
609
+ <p>Anyone with access can browse a repository's pull requests by visiting the\n\
610
+ repository's <em>Network &#8674; Pull Requests</em> page.</p>\n\n\
611
+ <p><a href=\"http://img.skitch.com/20100823-bahbpwpemx3jh2kpke77d2dxtc.png\" target=\"_blank\"><img src=\"http://img.skitch.com/20100823-bahbpwpemx3jh2kpke77d2dxtc.png\" alt=\"\"></a></p>\n\n\
612
+ <p>Every pull request has a URL so you can link to them. They're archived forever\n\
613
+ and indexed by search engines.</p>\n\n\
614
+ <h3>An Issue at heart</h3>\n\n\
615
+ <p>Pull requests are tightly integrated into GitHub Issues. When you see an\n\
616
+ <img\n src=\"http://github.com/images/modules/issues/pull_request_icon.png\"\n style='border:0;vertical-align:middle;display:inline'\n alt='[^]'\n\
617
+ /> icon in the issues list, it means there's a pull request attached.</p>\n\n\
618
+ <p><a href=\"http://img.skitch.com/20100823-pq3qwwxpecehfb5q2n773pww4w.png\" target=\"_blank\"><img src=\"http://img.skitch.com/20100823-pq3qwwxpecehfb5q2n773pww4w.png\" alt=\"\"></a></p>\n\n\
619
+ <p>Don't use Issues? No problem. You still get awesome pull requests.</p>\n\n\
620
+ <h3>Pull Request Dashboard</h3>\n\n\
621
+ <p>The pull request dashboard gives a high level view of all pull requests across\n\
622
+ every repository you or your organization is involved with.</p>\n\n\
623
+ <p><a href=\"http://github.com/dashboard/pulls\" target=\"_blank\"><img src=\"http://img.skitch.com/20100823-j32jfck5umyyj8ukrne81dkytq.png\"></a></p>\n\n\
624
+ <h3>What are you waiting for?</h3>\n\n\
625
+ <p>Pull requests sent prior to today <strong>are not</strong> automatically imported into the new system. If you have outstanding requests, use them as an opportunity to try out revision aware pull requests today!</p>\n\n \n </div>\n\
626
+ </li><li class=\"hentry post\" id=\"post_711\">\n <h2><a href=\"/blog/711-corey-donohoe-is-a-githubber\" class=\"reverse url entry-title\" rel=\"bookmark\">Corey Donohoe is a GitHubber</a> <small></small></h2>\n <div class=\"meta\">\n <div class=\"who_when\">\n <img src=\"http://www.gravatar.com/avatar/b8dbb1987e8e5318584865f880036796?s=140&d=http%3A%2F%2Fgithub.com%2Fimages%2Fgravatars%2Fgravatar-140.png\" alt=\"\" width=\"16\" height=\"16\" />\n <span class=\"author vcard fn\"><a href=\"/defunkt\">defunkt</a></span>\n <span class=\"published\" title=\"2010-08-30T17:25:22-07:00\">30 Aug 2010</span>\n \n </div>\n <div class=\"respond\">\n <a href=\"/blog/711-corey-donohoe-is-a-githubber#comments\">19 comments</a>\n </div>\n </div>\n <div class=\"entry-content\">\n \n <p>Today marks <a href=\"http://github.com/atmos\">Corey \"atmos\" Donohoe's</a> first day as a GitHubber. He'll be helping us make GitHub more awesome.</p>\n\n\
627
+ <div align=\"center\">\n\
628
+ <a href=\"http://github.com/atmos\">\n\
629
+ <img src=http://img.skitch.com/20100831-ewi4u82uf9x12fyphcsdqnqxs5.jpg\">\n\
630
+ </a>\n\
631
+ </div>\n\n\n\
632
+ <p>We're all super excited to have Corey on board, and a quick browse through his repos explains why: <a href=\"http://github.com/atmos/singem\">Sinatra</a>, <a href=\"http://github.com/atmos/ircat.js\">node.js</a>, and <a href=\"http://github.com/atmos/sinatra_auth_github\">OAuth</a> are among his interests. He has some <a href=\"http://www.flickr.com/photos/atmos/4249627253/\">amazing dogs</a>, too.</p>\n\n\
633
+ <p>Also OS X - if you like the sound of homebrew and chef you'll definitely want to check out his <a href=\"http://www.atmos.org/cider/\">cider</a> project.</p>\n\n\
634
+ <p>You can follow him on <a href=\"http://github.com/atmos\">GitHub</a>, <a href=\"http://twitter.com/atmos\">twitter</a>, <a href=\"http://tumblr.atmos.org/\">tumblr</a>, or at his <a href=\"http://www.atmos.org/posts.html\">blog</a>.</p>\n\n\
635
+ <p>Welcome to the team, Corey!</p>\n\n \n </div>\n\
636
+ </li><li class=\"hentry post\" id=\"post_708\">\n <h2><a href=\"/blog/708-mozilla-labs-on-github\" class=\"reverse url entry-title\" rel=\"bookmark\">Mozilla Labs on GitHub</a> <small></small></h2>\n <div class=\"meta\">\n <div class=\"who_when\">\n <img src=\"http://www.gravatar.com/avatar/b8dbb1987e8e5318584865f880036796?s=140&d=http%3A%2F%2Fgithub.com%2Fimages%2Fgravatars%2Fgravatar-140.png\" alt=\"\" width=\"16\" height=\"16\" />\n <span class=\"author vcard fn\"><a href=\"/defunkt\">defunkt</a></span>\n <span class=\"published\" title=\"2010-08-26T18:42:03-07:00\">26 Aug 2010</span>\n \n </div>\n <div class=\"respond\">\n <a href=\"/blog/708-mozilla-labs-on-github#comments\">3 comments</a>\n </div>\n </div>\n <div class=\"entry-content\">\n \n <p><a href=\"http://mozillalabs.com\">Mozilla Labs</a> is now mirroring open source to GitHub: <a href=\"http://github.com/mozillalabs\">http://github.com/mozillalabs</a></p>\n\n\
637
+ <center>\n\
638
+ <a href=\"http://github.com/mozillalabs\">\n\
639
+ <img src=\"http://img.skitch.com/20100827-bbj83mmb2cgbusutb5pxwabdr7.png\">\n\
640
+ </a>\n\
641
+ </center>\n\n\n\
642
+ <p>Read <a href=\"http://mozillalabs.com/conceptseries/2010/08/25/contribute-to-labs-projects-on-github\">the blog post</a> or check out the <a href=\"http://github.com/mozilla\">repositories on GitHub</a>.</p>\n\n\
643
+ <p>Rumor has it we'll being see more from Mozilla on GitHub in the future, too!</p>\n\n \n </div>\n\
644
+ </li><li class=\"hentry post\" id=\"post_707\">\n <h2><a href=\"/blog/707-git-notes-display\" class=\"reverse url entry-title\" rel=\"bookmark\">Git Notes Display</a> <small></small></h2>\n <div class=\"meta\">\n <div class=\"who_when\">\n <img src=\"http://www.gravatar.com/avatar/9375a9529679f1b42b567a640d775e7d?s=140&d=http%3A%2F%2Fgithub.com%2Fimages%2Fgravatars%2Fgravatar-140.png\" alt=\"\" width=\"16\" height=\"16\" />\n <span class=\"author vcard fn\"><a href=\"/schacon\">schacon</a></span>\n <span class=\"published\" title=\"2010-08-25T14:26:31-07:00\">25 Aug 2010</span>\n \n </div>\n <div class=\"respond\">\n <a href=\"/blog/707-git-notes-display#comments\">20 comments</a>\n </div>\n </div>\n <div class=\"entry-content\">\n \n <p>I just blogged about the new <code>git-notes</code> functionality over at the <a href=\"http://progit.org/2010/08/25/notes.html\">Pro Git blog</a>. If you're interested in using Git notes for something, you might be interested to know that GitHub now supports them and will display them on your commit pages.</p>\n\n\
645
+ <p>If you push notes to GitHub, you will be able to see them at the bottom of the diff when you are <a href=\"http://github.com/schacon/kidgloves/commit/0385bcc3bc66d1b1ec07346c237061574335c3b8\">viewing that commit</a>. These are separate from GitHub commit comments and are displayed differently. The will look like this:</p>\n\n\
646
+ <p><img src=\"http://img.skitch.com/20100825-ruf4t4yugp5ppce8sjh1a12k75.jpg\"/></p>\n\n\
647
+ <p>To learn more about Git notes, read <a href=\"http://progit.org/2010/08/25/notes.html\">my post</a>. on them, but the short of it is: they're cool for appending notes from automated systems (like ticket or build systems) but not really for having interactive conversations with other developers (at least not yet). Hope you find them useful.</p>\n\n \n </div>\n\
648
+ </li>\n </ul>\n\n <div class=\"pagination\"><span class=\"disabled\">&laquo; Previous</span> <span class=\"current\">1</span> <a href=\"/blog?page=2\" rel=\"next\">2</a> <a href=\"/blog?page=3\">3</a> <a href=\"/blog?page=4\">4</a> <a href=\"/blog?page=5\">5</a> <a href=\"/blog?page=6\">6</a> <a href=\"/blog?page=7\">7</a> <a href=\"/blog?page=8\">8</a> <a href=\"/blog?page=9\">9</a> <span class=\"gap\">&hellip;</span> <a href=\"/blog?page=45\">45</a> <a href=\"/blog?page=46\">46</a> <a href=\"/blog?page=2\" hotkey=\"l\" rel=\"next\">Next &raquo;</a></div>\n </div>\n \n\n\
649
+ <div class=\"sidebar\">\n <div class=\"rss\">\n <a href=\"http://feeds.feedburner.com/github\"><img alt=\"rss\" src=\"http://assets2.github.com/images/modules/posts/rss.png?b93c68c7f180addad844ab9e069d6cbeea277228\" title=\"Subscribe to the GitHub Blog\" /></a>\n </div>\n\n <div class=\"others\">\n <ul>\n <li>\n <div><a href=\"/blog/broadcasts\">Broadcasts</a></div>\n <div class=\"meta\">New features &amp; announcements</div>\n </li>\n </ul>\n </div>\n\n \n <div class=\"others\">\n \n\
650
+ <div class=\"github-jobs-promotion\" url=\"http://jobs.github.com/widget.js?callback=jobsWidgetCallback\">\n <p>\n <a class=\"job-link\" href=\"#\" target=\"_blank\">\n <strong class=\"job-company\">Company</strong> is hiring:\n <strong class=\"job-position\">Position</strong> in\n <span class=\"job-location\">Location</span>\n </a>\n \n </p>\n <a href=\"http://jobs.github.com\" target=\"_blank\" class=\"jobs-logo\">Brought to you by <strong>github:jobs</strong></a>\n\
651
+ </div>\n\n\n </div>\n \n\n <div class=\"others\">\n <ul>\n \n <li>\n <div><a href=\"/blog/724-a-few-words-on-the-recent-outages\" rel=\"bookmark\">A few words on the recent outages</a></div>\n <div class=\"meta\">rodjek on Sep 24</div>\n </li>\n \n <li>\n <div><a href=\"/blog/723-tim-sharpe-is-a-githubber\" rel=\"bookmark\">Tim Sharpe is a GitHubber</a></div>\n <div class=\"meta\">mojombo on Sep 24</div>\n </li>\n \n <li>\n <div><a href=\"/blog/722-a-little-help-for-merging-pull-requests\" rel=\"bookmark\">A little help for merging pull requests</a></div>\n <div class=\"meta\">kneath on Sep 23</div>\n </li>\n \n <li>\n <div><a href=\"/blog/721-github-meetup-belfast-saturday-sep-18th\" rel=\"bookmark\">GitHub Meetup Belfast, Saturday Sep 18th</a></div>\n <div class=\"meta\">mojombo on Sep 17</div>\n </li>\n \n <li>\n <div><a href=\"/blog/719-eston-bond-is-a-githubber\" rel=\"bookmark\">Eston Bond is a GitHubber</a></div>\n <div class=\"meta\">kneath on Sep 15</div>\n </li>\n \n <li>\n <div><a href=\"/blog/718-github-meetup-moscow-tonight-sep-15\" rel=\"bookmark\">GitHub Meetup Moscow, Tonight, Sep 15</a></div>\n <div class=\"meta\">mojombo on Sep 14</div>\n </li>\n \n <li>\n <div><a href=\"/blog/717-git-user-survey-2010\" rel=\"bookmark\">Git User Survey 2010</a></div>\n <div class=\"meta\">defunkt on Sep 13</div>\n </li>\n \n <li>\n <div><a href=\"/blog/716-github-wiki-upgrade-this-weekend\" rel=\"bookmark\">GitHub Wiki Upgrade This Weekend</a></div>\n <div class=\"meta\">technoweenie on Sep 10</div>\n </li>\n \n <li>\n <div><a href=\"/blog/715-github-meetup-in-dublin-sept-11\" rel=\"bookmark\">GitHub Meetup in Dublin - Sept 11</a></div>\n <div class=\"meta\">pjhyett on Sep 09</div>\n </li>\n \n <li>\n <div><a href=\"/blog/714-twitter-service-hooks-return\" rel=\"bookmark\">Twitter Service Hooks Return</a></div>\n <div class=\"meta\">atmos on Sep 08</div>\n </li>\n \n <li>\n <div><a href=\"/blog/713-the-reverse-twitter-effect\" rel=\"bookmark\">The Reverse Twitter Effect</a></div>\n <div class=\"meta\">defunkt on Sep 01</div>\n </li>\n \n <li>\n <div><a href=\"/blog/712-pull-requests-2-0\" rel=\"bookmark\">Pull Requests 2.0</a></div>\n <div class=\"meta\">rtomayko on Aug 31</div>\n </li>\n \n <li>\n <div><a href=\"/blog/711-corey-donohoe-is-a-githubber\" rel=\"bookmark\">Corey Donohoe is a GitHubber</a></div>\n <div class=\"meta\">defunkt on Aug 30</div>\n </li>\n \n <li>\n <div><a href=\"/blog/708-mozilla-labs-on-github\" rel=\"bookmark\">Mozilla Labs on GitHub</a></div>\n <div class=\"meta\">defunkt on Aug 26</div>\n </li>\n \n <li>\n <div><a href=\"/blog/707-git-notes-display\" rel=\"bookmark\">Git Notes Display</a></div>\n <div class=\"meta\">schacon on Aug 25</div>\n </li>\n \n </ul>\n </div>\n <div class=\"others\">\n <h3>The GitHub Bloggers</h3>\n <ul>\n \n \n \n \n <li>\n <a href=\"/atmos\">\n <img src=\"http://www.gravatar.com/avatar/a86224d72ce21cd9f5bee6784d4b06c7?s=140&d=http%3A%2F%2Fgithub.com%2Fimages%2Fgravatars%2Fgravatar-140.png\" alt=\"\" width=\"24\" height=\"24\" class=\"who_when\" />\n </a>\n <a href=\"/atmos\">atmos</a>\n </li>\n \n \n \n <li>\n <a href=\"/defunkt\">\n <img src=\"http://www.gravatar.com/avatar/b8dbb1987e8e5318584865f880036796?s=140&d=http%3A%2F%2Fgithub.com%2Fimages%2Fgravatars%2Fgravatar-140.png\" alt=\"\" width=\"24\" height=\"24\" class=\"who_when\" />\n </a>\n <a href=\"/defunkt\">defunkt</a>\n </li>\n \n \n \n <li>\n <a href=\"/eston\">\n <img src=\"http://www.gravatar.com/avatar/470a9a6f2f7da9eaee26339c5a3f8933?s=140&d=http%3A%2F%2Fgithub.com%2Fimages%2Fgravatars%2Fgravatar-140.png\" alt=\"\" width=\"24\" height=\"24\" class=\"who_when\" />\n </a>\n <a href=\"/eston\">eston</a>\n </li>\n \n \n \n <li>\n <a href=\"/holman\">\n <img src=\"http://www.gravatar.com/avatar/6f63cde8b16b035280ca615f621a6c8c?s=140&d=http%3A%2F%2Fgithub.com%2Fimages%2Fgravatars%2Fgravatar-140.png\" alt=\"\" width=\"24\" height=\"24\" class=\"who_when\" />\n </a>\n <a href=\"/holman\">holman</a>\n </li>\n \n \n \n <li>\n <a href=\"/kneath\">\n <img src=\"http://www.gravatar.com/avatar/5f2da528927a2ec9ba4fec2069cbc958?s=140&d=http%3A%2F%2Fgithub.com%2Fimages%2Fgravatars%2Fgravatar-140.png\" alt=\"\" width=\"24\" height=\"24\" class=\"who_when\" />\n </a>\n <a href=\"/kneath\">kneath</a>\n </li>\n \n \n \n <li>\n <a href=\"/luckiestmonkey\">\n <img src=\"http://www.gravatar.com/avatar/17fc534665d54bcd8b4d2676d709aa99?s=140&d=http%3A%2F%2Fgithub.com%2Fimages%2Fgravatars%2Fgravatar-140.png\" alt=\"\" width=\"24\" height=\"24\" class=\"who_when\" />\n </a>\n <a href=\"/luckiestmonkey\">luckiestmonkey</a>\n </li>\n \n \n \n <li>\n <a href=\"/mojombo\">\n <img src=\"http://www.gravatar.com/avatar/25c7c18223fb42a4c6ae1c8db6f50f9b?s=140&d=http%3A%2F%2Fgithub.com%2Fimages%2Fgravatars%2Fgravatar-140.png\" alt=\"\" width=\"24\" height=\"24\" class=\"who_when\" />\n </a>\n <a href=\"/mojombo\">mojombo</a>\n </li>\n \n \n \n \n <li>\n <a href=\"/pjhyett\">\n <img src=\"http://www.gravatar.com/avatar/290cf664d9e6f823fc3af57556493db7?s=140&d=http%3A%2F%2Fgithub.com%2Fimages%2Fgravatars%2Fgravatar-140.png\" alt=\"\" width=\"24\" height=\"24\" class=\"who_when\" />\n </a>\n <a href=\"/pjhyett\">pjhyett</a>\n </li>\n \n \n \n <li>\n <a href=\"/rodjek\">\n <img src=\"http://www.gravatar.com/avatar/920e60e81da4fb61eaeb95fa9d7c3b70?s=140&d=http%3A%2F%2Fgithub.com%2Fimages%2Fgravatars%2Fgravatar-140.png\" alt=\"\" width=\"24\" height=\"24\" class=\"who_when\" />\n </a>\n <a href=\"/rodjek\">rodjek</a>\n </li>\n \n \n \n <li>\n <a href=\"/rtomayko\">\n <img src=\"http://www.gravatar.com/avatar/abfc88b96ae18c85ba7aac3bded2ec5e?s=140&d=http%3A%2F%2Fgithub.com%2Fimages%2Fgravatars%2Fgravatar-140.png\" alt=\"\" width=\"24\" height=\"24\" class=\"who_when\" />\n </a>\n <a href=\"/rtomayko\">rtomayko</a>\n </li>\n \n \n \n <li>\n <a href=\"/schacon\">\n <img src=\"http://www.gravatar.com/avatar/9375a9529679f1b42b567a640d775e7d?s=140&d=http%3A%2F%2Fgithub.com%2Fimages%2Fgravatars%2Fgravatar-140.png\" alt=\"\" width=\"24\" height=\"24\" class=\"who_when\" />\n </a>\n <a href=\"/schacon\">schacon</a>\n </li>\n \n \n \n <li>\n <a href=\"/technoweenie\">\n <img src=\"http://www.gravatar.com/avatar/821395fe70906c8290df7f18ac4ac6cf?s=140&d=http%3A%2F%2Fgithub.com%2Fimages%2Fgravatars%2Fgravatar-140.png\" alt=\"\" width=\"24\" height=\"24\" class=\"who_when\" />\n </a>\n <a href=\"/technoweenie\">technoweenie</a>\n </li>\n \n \n \n <li>\n <a href=\"/tekkub\">\n <img src=\"http://www.gravatar.com/avatar/495abe87ebbc36e70c8db98680ec8a46?s=140&d=http%3A%2F%2Fgithub.com%2Fimages%2Fgravatars%2Fgravatar-140.png\" alt=\"\" width=\"24\" height=\"24\" class=\"who_when\" />\n </a>\n <a href=\"/tekkub\">tekkub</a>\n </li>\n \n </ul>\n </div>\n\n <div class=\"others\">\n\
652
+ <p><a href=\"http://feeds.feedburner.com/github\"><img src=\"http://feeds.feedburner.com/~fc/github?bg=99CCFF&amp;fg=444444&amp;anim=0\" height=\"26\" width=\"88\" style=\"border:0; float:left; margin-right:1em;\" alt=\"\" /></a> <a href=\"http://twitter.com/github\"><img src=\"http://twittercounter.com/counter/?username=github&style=blue\" style=\"border:0;\" alt=\"Twitter counter\" /></a></p>\n </div>\n\
653
+ </div>\n\n\
654
+ </div>\n\n </div>\n \n </div>\n\n <div id=\"footer\" class=\"clearfix\">\n <div class=\"site\">\n <div class=\"sponsor\">\n <a href=\"http://www.rackspace.com\" class=\"logo\">\n <img alt=\"Dedicated Server\" src=\"http://assets2.github.com/images/modules/footer/rackspace_logo.png?b93c68c7f180addad844ab9e069d6cbeea277228\" />\n </a>\n Powered by the <a href=\"http://www.rackspace.com \">Dedicated\n Servers</a> and<br/> <a href=\"http://www.rackspacecloud.com\">Cloud\n Computing</a> of Rackspace Hosting<span>&reg;</span>\n </div>\n\n <ul class=\"links\">\n <li class=\"blog\"><a href=\"http://github.com/blog\">Blog</a></li>\n <li><a href=\"http://support.github.com\">Support</a></li>\n <li><a href=\"http://github.com/training\">Training</a></li>\n <li><a href=\"http://jobs.github.com\">Job Board</a></li>\n <li><a href=\"http://shop.github.com\">Shop</a></li>\n <li><a href=\"http://github.com/contact\">Contact</a></li>\n <li><a href=\"http://develop.github.com\">API</a></li>\n <li><a href=\"http://status.github.com\">Status</a></li>\n </ul>\n <ul class=\"sosueme\">\n <li class=\"main\">&copy; 2010 <span id=\"_rrt\" title=\"0.12562s from fe6.rs.github.com\">GitHub</span> Inc. All rights reserved.</li>\n <li><a href=\"/site/terms\">Terms of Service</a></li>\n <li><a href=\"/site/privacy\">Privacy</a></li>\n <li><a href=\"http://github.com/security\">Security</a></li>\n </ul>\n </div>\n </div><!-- /#footer -->\n\n \n \n \n <!-- current locale: -->\n <div class=\"locales\">\n <div class=\"site\">\n\n <ul class=\"choices clearfix limited-locales\">\n <li><span class=\"current\">Italiano</span></li>\n \n \n <li><a rel=\"nofollow\" href=\"?locale=en\">English</a></li>\n \n \n \n <li><a rel=\"nofollow\" href=\"?locale=de\">Deutsch</a></li>\n \n \n \n <li><a rel=\"nofollow\" href=\"?locale=fr\">Fran\xC3\xA7ais</a></li>\n \n \n \n <li><a rel=\"nofollow\" href=\"?locale=ja\">\xE6\x97\xA5\xE6\x9C\xAC\xE8\xAA\x9E</a></li>\n \n \n \n <li><a rel=\"nofollow\" href=\"?locale=pt-BR\">Portugu\xC3\xAAs (BR)</a></li>\n \n \n \n <li><a rel=\"nofollow\" href=\"?locale=ru\">\xD0\xA0\xD1\x83\xD1\x81\xD1\x81\xD0\xBA\xD0\xB8\xD0\xB9</a></li>\n \n \n \n <li><a rel=\"nofollow\" href=\"?locale=zh\">\xE4\xB8\xAD\xE6\x96\x87</a></li>\n \n \n <li class=\"all\"><a href=\"#\" class=\"minibutton btn-forward js-all-locales\"><span><span class=\"icon\"></span>See all available languages</span></a></li>\n </ul>\n\n <div class=\"all-locales clearfix\">\n <h3>Your current locale selection: <strong>Italiano</strong>. Choose another?</h3>\n \n \n <ul class=\"choices\">\n \n \n <li><a rel=\"nofollow\" href=\"?locale=en\">English</a></li>\n \n \n \n <li><a rel=\"nofollow\" href=\"?locale=af\">Afrikaans</a></li>\n \n \n \n <li><a rel=\"nofollow\" href=\"?locale=ca\">Catal\xC3\xA0</a></li>\n \n \n \n <li><a rel=\"nofollow\" href=\"?locale=cs\">\xC4\x8Ce\xC5\xA1tina</a></li>\n \n \n </ul>\n \n <ul class=\"choices\">\n \n \n <li><a rel=\"nofollow\" href=\"?locale=de\">Deutsch</a></li>\n \n \n \n <li><a rel=\"nofollow\" href=\"?locale=es\">Espa\xC3\xB1ol</a></li>\n \n \n \n <li><a rel=\"nofollow\" href=\"?locale=fr\">Fran\xC3\xA7ais</a></li>\n \n \n \n <li><a rel=\"nofollow\" href=\"?locale=hr\">Hrvatski</a></li>\n \n \n </ul>\n \n <ul class=\"choices\">\n \n \n <li><a rel=\"nofollow\" href=\"?locale=id\">Indonesia</a></li>\n \n \n \n <li><a rel=\"nofollow\" href=\"?locale=it\">Italiano</a></li>\n \n \n \n <li><a rel=\"nofollow\" href=\"?locale=ja\">\xE6\x97\xA5\xE6\x9C\xAC\xE8\xAA\x9E</a></li>\n \n \n \n <li><a rel=\"nofollow\" href=\"?locale=nl\">Nederlands</a></li>\n \n \n </ul>\n \n <ul class=\"choices\">\n \n \n <li><a rel=\"nofollow\" href=\"?locale=no\">Norsk</a></li>\n \n \n \n <li><a rel=\"nofollow\" href=\"?locale=pl\">Polski</a></li>\n \n \n \n <li><a rel=\"nofollow\" href=\"?locale=pt-BR\">Portugu\xC3\xAAs (BR)</a></li>\n \n \n \n <li><a rel=\"nofollow\" href=\"?locale=ru\">\xD0\xA0\xD1\x83\xD1\x81\xD1\x81\xD0\xBA\xD0\xB8\xD0\xB9</a></li>\n \n \n </ul>\n \n <ul class=\"choices\">\n \n \n <li><a rel=\"nofollow\" href=\"?locale=sr\">\xD0\xA1\xD1\x80\xD0\xBF\xD1\x81\xD0\xBA\xD0\xB8</a></li>\n \n \n \n <li><a rel=\"nofollow\" href=\"?locale=sv\">Svenska</a></li>\n \n \n \n <li><a rel=\"nofollow\" href=\"?locale=zh\">\xE4\xB8\xAD\xE6\x96\x87</a></li>\n \n \n </ul>\n \n </div>\n\n </div>\n <div class=\"fade\"></div>\n </div>\n \n \n\n <script>window._auth_token = \"f57e44ab7cee2e9860bc14a1dc87c725dd4d2e6c\"</script>\n <div id=\"keyboard_shortcuts_pane\" style=\"display:none\">\n <h2>Keyboard Shortcuts</h2>\n\n <div class=\"columns threecols\">\n <div class=\"column first\">\n <h3>Site wide shortcuts</h3>\n <dl class=\"keyboard-mappings\">\n <dt>s</dt>\n <dd>Focus site search</dd>\n </dl>\n <dl class=\"keyboard-mappings\">\n <dt>?</dt>\n <dd>Bring up this help dialog</dd>\n </dl>\n </div><!-- /.column.first -->\n <div class=\"column middle\">\n <h3>Commit list</h3>\n <dl class=\"keyboard-mappings\">\n <dt>j</dt>\n <dd>Move selected down</dd>\n </dl>\n <dl class=\"keyboard-mappings\">\n <dt>k</dt>\n <dd>Move selected up</dd>\n </dl>\n <dl class=\"keyboard-mappings\">\n <dt>t</dt>\n <dd>Open tree</dd>\n </dl>\n <dl class=\"keyboard-mappings\">\n <dt>p</dt>\n <dd>Open parent</dd>\n </dl>\n <dl class=\"keyboard-mappings\">\n <dt>c <em>or</em> o <em>or</em> enter</dt>\n <dd>Open commit</dd>\n </dl>\n </div><!-- /.column.first -->\n <div class=\"column last\">\n <h3>Pull request list</h3>\n <dl class=\"keyboard-mappings\">\n <dt>j</dt>\n <dd>Move selected down</dd>\n </dl>\n <dl class=\"keyboard-mappings\">\n <dt>k</dt>\n <dd>Move selected up</dd>\n </dl>\n <dl class=\"keyboard-mappings\">\n <dt>o <em>or</em> enter</dt>\n <dd>Open issue</dd>\n </dl>\n </div><!-- /.columns.last -->\n </div><!-- /.columns.equacols -->\n\n <div class=\"rule\"></div>\n\n <h3>Issues</h3>\n\n <div class=\"columns threecols\">\n <div class=\"column first\">\n <dl class=\"keyboard-mappings\">\n <dt>j</dt>\n <dd>Move selected down</dd>\n </dl>\n <dl class=\"keyboard-mappings\">\n <dt>k</dt>\n <dd>Move selected up</dd>\n </dl>\n <dl class=\"keyboard-mappings\">\n <dt>x</dt>\n <dd>Toggle select target</dd>\n </dl>\n <dl class=\"keyboard-mappings\">\n <dt>o <em>or</em> enter</dt>\n <dd>Open issue</dd>\n </dl>\n </div><!-- /.column.first -->\n <div class=\"column middle\">\n <dl class=\"keyboard-mappings\">\n <dt>I</dt>\n <dd>Mark selected as read</dd>\n </dl>\n <dl class=\"keyboard-mappings\">\n <dt>U</dt>\n <dd>Mark selected as unread</dd>\n </dl>\n <dl class=\"keyboard-mappings\">\n <dt>e</dt>\n <dd>Close selected</dd>\n </dl>\n <dl class=\"keyboard-mappings\">\n <dt>y</dt>\n <dd>Remove selected from view</dd>\n </dl>\n </div><!-- /.column.middle -->\n <div class=\"column last\">\n <dl class=\"keyboard-mappings\">\n <dt>c</dt>\n <dd>Create issue</dd>\n </dl>\n <dl class=\"keyboard-mappings\">\n <dt>l</dt>\n <dd>Create label</dd>\n </dl>\n <dl class=\"keyboard-mappings\">\n <dt>i</dt>\n <dd>Back to inbox</dd>\n </dl>\n <dl class=\"keyboard-mappings\">\n <dt>u</dt>\n <dd>Back to issues</dd>\n </dl>\n <dl class=\"keyboard-mappings\">\n <dt>/</dt>\n <dd>Focus issues search</dd>\n </dl>\n </div>\n </div>\n\n <div class=\"rule\"></div>\n\n <h3>Network Graph</h3>\n <div class=\"columns equacols\">\n <div class=\"column first\">\n <dl class=\"keyboard-mappings\">\n <dt>\xE2\x86\x90 <em>or</em> h</dt>\n <dd>Scroll left</dd>\n </dl>\n <dl class=\"keyboard-mappings\">\n <dt>\xE2\x86\x92 <em>or</em> l</dt>\n <dd>Scroll right</dd>\n </dl>\n <dl class=\"keyboard-mappings\">\n <dt>\xE2\x86\x91 <em>or</em> k</dt>\n <dd>Scroll up</dd>\n </dl>\n <dl class=\"keyboard-mappings\">\n <dt>\xE2\x86\x93 <em>or</em> j</dt>\n <dd>Scroll down</dd>\n </dl>\n <dl class=\"keyboard-mappings\">\n <dt>t</dt>\n <dd>Toggle visibility of head labels</dd>\n </dl>\n </div><!-- /.column.first -->\n <div class=\"column last\">\n <dl class=\"keyboard-mappings\">\n <dt>shift \xE2\x86\x90 <em>or</em> shift h</dt>\n <dd>Scroll all the way left</dd>\n </dl>\n <dl class=\"keyboard-mappings\">\n <dt>shift \xE2\x86\x92 <em>or</em> shift l</dt>\n <dd>Scroll all the way right</dd>\n </dl>\n <dl class=\"keyboard-mappings\">\n <dt>shift \xE2\x86\x91 <em>or</em> shift k</dt>\n <dd>Scroll all the way up</dd>\n </dl>\n <dl class=\"keyboard-mappings\">\n <dt>shift \xE2\x86\x93 <em>or</em> shift j</dt>\n <dd>Scroll all the way down</dd>\n </dl>\n </div><!-- /.column.last -->\n </div>\n\n\
655
+ </div>\n \n\n <!--[if IE 8]>\n <script type=\"text/javascript\" charset=\"utf-8\">\n $(document.body).addClass(\"ie8\")\n </script>\n <![endif]-->\n\n <!--[if IE 7]>\n <script type=\"text/javascript\" charset=\"utf-8\">\n $(document.body).addClass(\"ie7\")\n </script>\n <![endif]-->\n\n <script type=\"text/javascript\">\n _kmq.push(['trackClick', 'entice_banner_link', 'Entice banner clicked']);\n \n </script>\n \n </body>\n\
656
+ </html>\n"
657
+ http_version: "1.1"
658
+ - !ruby/struct:VCR::HTTPInteraction
659
+ request: !ruby/struct:VCR::Request
660
+ method: :get
661
+ uri: http://www.reddit.com:80/r/ruby/.rss
662
+ body:
663
+ headers:
664
+ accept:
665
+ - "*/*"
666
+ user-agent:
667
+ - Ruby
668
+ response: !ruby/struct:VCR::Response
669
+ status: !ruby/struct:VCR::ResponseStatus
670
+ code: 200
671
+ message: OK
672
+ headers:
673
+ content-type:
674
+ - text/xml; charset=UTF-8
675
+ set-cookie:
676
+ - reddit_first=%7B%22firsttime%22%3A%20%22first%22%7D; Domain=reddit.com; expires=Thu, 31 Dec 2037 23:59:59 GMT; Path=/
677
+ server:
678
+ - "'; DROP TABLE servertypes; --"
679
+ date:
680
+ - Tue, 28 Sep 2010 01:26:41 GMT
681
+ content-length:
682
+ - "20476"
683
+ connection:
684
+ - keep-alive
685
+ body: "<?xml version=\"1.0\" encoding=\"UTF-8\"?><rss version=\"2.0\" xmlns:dc=\"http://purl.org/dc/elements/1.1/\" xmlns:media=\"http://search.yahoo.com/mrss\"><channel><title>reddit for ruby hackers</title><link>http://www.reddit.com/r/ruby/</link><description></description><image><url>http://static.reddit.com/reddit.com.header.png</url><title>reddit for ruby hackers</title><link>http://www.reddit.com/r/ruby/</link></image><item><title>Reloading Ruby Code</title><link>http://www.reddit.com/r/ruby/comments/djdtf/reloading_ruby_code/</link><guid isPermaLink=\"true\">http://www.reddit.com/r/ruby/comments/djdtf/reloading_ruby_code/</guid><pubDate>Mon, 27 Sep 2010 07:44:34 +0000</pubDate><dc:date>2010-09-27T07:44:34.612724+00:00</dc:date><description>submitted by &lt;a href=&quot;http://www.reddit.com/user/cldwalker&quot;&gt; cldwalker &lt;/a&gt; &lt;br/&gt; &lt;a href=&quot;http://rkh.im/2010/08/code-reloading&quot;&gt;[link]&lt;/a&gt; &lt;a href=\"http://www.reddit.com/r/ruby/comments/djdtf/reloading_ruby_code/\"&gt;[1 comment]&lt;/a&gt;</description></item><item><title>Almost everything is an object (and everything is almost an object!)</title><link>http://www.reddit.com/r/ruby/comments/dja3l/almost_everything_is_an_object_and_everything_is/</link><guid isPermaLink=\"true\">http://www.reddit.com/r/ruby/comments/dja3l/almost_everything_is_an_object_and_everything_is/</guid><pubDate>Mon, 27 Sep 2010 01:54:47 +0000</pubDate><dc:date>2010-09-27T01:54:47.541645+00:00</dc:date><description>submitted by &lt;a href=&quot;http://www.reddit.com/user/IndianGuru&quot;&gt; IndianGuru &lt;/a&gt; &lt;br/&gt; &lt;a href=&quot;http://rubylearning.com/blog/2010/09/27/almost-everything-is-an-object-and-everything-is-almost-an-object/&quot;&gt;[link]&lt;/a&gt; &lt;a href=\"http://www.reddit.com/r/ruby/comments/dja3l/almost_everything_is_an_object_and_everything_is/\"&gt;[1 comment]&lt;/a&gt;</description></item><item><title>Autocompletion for ruby-debug</title><link>http://www.reddit.com/r/ruby/comments/djdtw/autocompletion_for_rubydebug/</link><guid isPermaLink=\"true\">http://www.reddit.com/r/ruby/comments/djdtw/autocompletion_for_rubydebug/</guid><pubDate>Mon, 27 Sep 2010 00:45:42 -0700</pubDate><dc:date>2010-09-27T00:45:42.956293-07:00</dc:date><description>submitted by &lt;a href=&quot;http://www.reddit.com/user/cldwalker&quot;&gt; cldwalker &lt;/a&gt; &lt;br/&gt; &lt;a href=&quot;http://github.com/cldwalker/ruby-debug-completion#readme&quot;&gt;[link]&lt;/a&gt; &lt;a href=\"http://www.reddit.com/r/ruby/comments/djdtw/autocompletion_for_rubydebug/\"&gt;[comment]&lt;/a&gt;</description></item><item><title>Adventures in Ruby MVVM \xE2\x80\x93 Wrapping it up</title><link>http://www.reddit.com/r/ruby/comments/djdko/adventures_in_ruby_mvvm_wrapping_it_up/</link><guid isPermaLink=\"true\">http://www.reddit.com/r/ruby/comments/djdko/adventures_in_ruby_mvvm_wrapping_it_up/</guid><pubDate>Mon, 27 Sep 2010 07:18:17 +0000</pubDate><dc:date>2010-09-27T07:18:17.394095+00:00</dc:date><description>submitted by &lt;a href=&quot;http://www.reddit.com/user/gst&quot;&gt; gst &lt;/a&gt; &lt;br/&gt; &lt;a href=&quot;http://houseofbilz.com/archives/2010/09/26/adventures-in-ruby-mvvm-wrapping-it-up/&quot;&gt;[link]&lt;/a&gt; &lt;a href=\"http://www.reddit.com/r/ruby/comments/djdko/adventures_in_ruby_mvvm_wrapping_it_up/\"&gt;[1 comment]&lt;/a&gt;</description></item><item><title>Rubinius 1.1 released</title><link>http://www.reddit.com/r/ruby/comments/dium3/rubinius_11_released/</link><guid isPermaLink=\"true\">http://www.reddit.com/r/ruby/comments/dium3/rubinius_11_released/</guid><pubDate>Sat, 25 Sep 2010 13:24:14 -0700</pubDate><dc:date>2010-09-25T13:24:14.720682-07:00</dc:date><description>submitted by &lt;a href=&quot;http://www.reddit.com/user/mebrahim&quot;&gt; mebrahim &lt;/a&gt; &lt;br/&gt; &lt;a href=&quot;http://rubini.us/about/one_one&quot;&gt;[link]&lt;/a&gt; &lt;a href=\"http://www.reddit.com/r/ruby/comments/dium3/rubinius_11_released/\"&gt;[2 comments]&lt;/a&gt;</description></item><item><title>Rubinius 1.1 Released</title><link>http://www.reddit.com/r/ruby/comments/dikex/rubinius_11_released/</link><guid isPermaLink=\"true\">http://www.reddit.com/r/ruby/comments/dikex/rubinius_11_released/</guid><pubDate>Fri, 24 Sep 2010 17:28:35 -0700</pubDate><dc:date>2010-09-24T17:28:35.238216-07:00</dc:date><description>submitted by &lt;a href=&quot;http://www.reddit.com/user/retardo&quot;&gt; retardo &lt;/a&gt; &lt;br/&gt; &lt;a href=&quot;http://www.rubyinside.com/rubinius-1-1-released-its-just-better-3824.html&quot;&gt;[link]&lt;/a&gt; &lt;a href=\"http://www.reddit.com/r/ruby/comments/dikex/rubinius_11_released/\"&gt;[comment]&lt;/a&gt;</description></item><item><title>Writing modular HTTP client code with Faraday</title><link>http://www.reddit.com/r/ruby/comments/dikou/writing_modular_http_client_code_with_faraday/</link><guid isPermaLink=\"true\">http://www.reddit.com/r/ruby/comments/dikou/writing_modular_http_client_code_with_faraday/</guid><pubDate>Fri, 24 Sep 2010 17:58:49 -0700</pubDate><dc:date>2010-09-24T17:58:49.683324-07:00</dc:date><description>submitted by &lt;a href=&quot;http://www.reddit.com/user/retardo&quot;&gt; retardo &lt;/a&gt; &lt;br/&gt; &lt;a href=&quot;http://adventuresincoding.com/2010/09/writing-modular-http-client-code-with-faraday/&quot;&gt;[link]&lt;/a&gt; &lt;a href=\"http://www.reddit.com/r/ruby/comments/dikou/writing_modular_http_client_code_with_faraday/\"&gt;[comment]&lt;/a&gt;</description></item><item><title>I just merged ruby support into pyapns proper. Thanks open source community for the patches and support. :)</title><link>http://www.reddit.com/r/ruby/comments/dih07/i_just_merged_ruby_support_into_pyapns_proper/</link><guid isPermaLink=\"true\">http://www.reddit.com/r/ruby/comments/dih07/i_just_merged_ruby_support_into_pyapns_proper/</guid><pubDate>Fri, 24 Sep 2010 12:42:55 -0700</pubDate><dc:date>2010-09-24T12:42:55.095257-07:00</dc:date><description>submitted by &lt;a href=&quot;http://www.reddit.com/user/samuraisam&quot;&gt; samuraisam &lt;/a&gt; &lt;br/&gt; &lt;a href=&quot;http://github.com/samuraisam/pyapns&quot;&gt;[link]&lt;/a&gt; &lt;a href=\"http://www.reddit.com/r/ruby/comments/dih07/i_just_merged_ruby_support_into_pyapns_proper/\"&gt;[comment]&lt;/a&gt;</description></item><item><title>Planning a Pacific Northwest Ruby Conference</title><link>http://www.reddit.com/r/ruby/comments/didki/planning_a_pacific_northwest_ruby_conference/</link><guid isPermaLink=\"true\">http://www.reddit.com/r/ruby/comments/didki/planning_a_pacific_northwest_ruby_conference/</guid><pubDate>Fri, 24 Sep 2010 09:01:48 -0700</pubDate><dc:date>2010-09-24T09:01:48.044832-07:00</dc:date><description>submitted by &lt;a href=&quot;http://www.reddit.com/user/retardo&quot;&gt; retardo &lt;/a&gt; &lt;br/&gt; &lt;a href=&quot;http://lists.zenspider.com/pipermail/ruby/2010-September/005311.html&quot;&gt;[link]&lt;/a&gt; &lt;a href=\"http://www.reddit.com/r/ruby/comments/didki/planning_a_pacific_northwest_ruby_conference/\"&gt;[1 comment]&lt;/a&gt;</description></item><item><title>So\xE2\x80\xA6 you\xE2\x80\x99re new to Ruby!</title><link>http://www.reddit.com/r/ruby/comments/di8a6/so_youre_new_to_ruby/</link><guid isPermaLink=\"true\">http://www.reddit.com/r/ruby/comments/di8a6/so_youre_new_to_ruby/</guid><pubDate>Fri, 24 Sep 2010 00:55:15 -0700</pubDate><dc:date>2010-09-24T00:55:15.529643-07:00</dc:date><description>submitted by &lt;a href=&quot;http://www.reddit.com/user/gst&quot;&gt; gst &lt;/a&gt; &lt;br/&gt; &lt;a href=&quot;http://rubylearning.com/blog/2010/09/24/so-youre-new-to-ruby/&quot;&gt;[link]&lt;/a&gt; &lt;a href=\"http://www.reddit.com/r/ruby/comments/di8a6/so_youre_new_to_ruby/\"&gt;[7 comments]&lt;/a&gt;</description></item><item><title>Help a newb upgrade to ruby 1.9.2</title><link>http://www.reddit.com/r/ruby/comments/dhb3e/help_a_newb_upgrade_to_ruby_192/</link><guid isPermaLink=\"true\">http://www.reddit.com/r/ruby/comments/dhb3e/help_a_newb_upgrade_to_ruby_192/</guid><pubDate>Wed, 22 Sep 2010 05:27:25 -0700</pubDate><dc:date>2010-09-22T05:27:25.802966-07:00</dc:date><description>&lt;!-- SC_OFF --&gt;&lt;div class=&quot;md&quot;&gt;&lt;p&gt;So I've decided to dive into the world of programming. Up until now I've only worked with html/css/javascript. I have OSX 10.6.4 and I understand I have rails 1.8.7 installed already.&lt;/p&gt; &lt;p&gt;I've been told to install RVM and use that to upgrade my ruby. However the first line here: &lt;a href=&quot;http://rvm.beginrescueend.com/rvm/install/ &quot; &gt;http://rvm.beginrescueend.com/rvm/install/ &lt;/a&gt; bash &amp;lt; &amp;lt;( curl &lt;a href=&quot;http://rvm.beginrescueend.com/releases/rvm-install-head&quot; &gt;http://rvm.beginrescueend.com/releases/rvm-install-head&lt;/a&gt; ) give me an error when I type it into terminal, so I assume I'm missing some important first step. Has anyone had any experience installing ruby 1.9.2 on OSX and can give me some direction?&lt;/p&gt; &lt;p&gt;edit: the error message I'm getting is:&lt;br/&gt; bash: line 18: git: command not found&lt;br/&gt; bash: line 20: cd: rvm: No such file or directory&lt;br/&gt; bash: ./scripts/install: No such file or directory&lt;/p&gt;&lt;/div&gt;&lt;!-- SC_ON --&gt; submitted by &lt;a href=&quot;http://www.reddit.com/user/StuartLeigh&quot;&gt; StuartLeigh &lt;/a&gt; &lt;br/&gt; &lt;a href=&quot;http://www.reddit.com/r/ruby/comments/dhb3e/help_a_newb_upgrade_to_ruby_192/&quot;&gt;[link]&lt;/a&gt; &lt;a href=\"http://www.reddit.com/r/ruby/comments/dhb3e/help_a_newb_upgrade_to_ruby_192/\"&gt;[17 comments]&lt;/a&gt;</description></item><item><title>Coding Karate for Rubyists</title><link>http://www.reddit.com/r/ruby/comments/dh6c5/coding_karate_for_rubyists/</link><guid isPermaLink=\"true\">http://www.reddit.com/r/ruby/comments/dh6c5/coding_karate_for_rubyists/</guid><pubDate>Tue, 21 Sep 2010 20:54:30 -0700</pubDate><dc:date>2010-09-21T20:54:30.068203-07:00</dc:date><description>submitted by &lt;a href=&quot;http://www.reddit.com/user/abc-xyz&quot;&gt; abc-xyz &lt;/a&gt; &lt;br/&gt; &lt;a href=&quot;http://rubylearning.com/blog/2010/09/22/14-ways-to-have-fun-coding-ruby/&quot;&gt;[link]&lt;/a&gt; &lt;a href=\"http://www.reddit.com/r/ruby/comments/dh6c5/coding_karate_for_rubyists/\"&gt;[comment]&lt;/a&gt;</description></item><item><title>Running multiple Ruby versions with Passenger</title><link>http://www.reddit.com/r/ruby/comments/dh41j/running_multiple_ruby_versions_with_passenger/</link><guid isPermaLink=\"true\">http://www.reddit.com/r/ruby/comments/dh41j/running_multiple_ruby_versions_with_passenger/</guid><pubDate>Tue, 21 Sep 2010 17:43:22 -0700</pubDate><dc:date>2010-09-21T17:43:22.578927-07:00</dc:date><description>submitted by &lt;a href=&quot;http://www.reddit.com/user/retardo&quot;&gt; retardo &lt;/a&gt; &lt;br/&gt; &lt;a href=&quot;http://blog.phusion.nl/2010/09/21/phusion-passenger-running-multiple-ruby-versions/&quot;&gt;[link]&lt;/a&gt; &lt;a href=\"http://www.reddit.com/r/ruby/comments/dh41j/running_multiple_ruby_versions_with_passenger/\"&gt;[comment]&lt;/a&gt;</description></item><item><title>You're cuking it right</title><link>http://www.reddit.com/r/ruby/comments/dgyh0/youre_cuking_it_right/</link><guid isPermaLink=\"true\">http://www.reddit.com/r/ruby/comments/dgyh0/youre_cuking_it_right/</guid><pubDate>Tue, 21 Sep 2010 11:01:14 -0700</pubDate><dc:date>2010-09-21T11:01:14.692027-07:00</dc:date><description>submitted by &lt;a href=&quot;http://www.reddit.com/user/retardo&quot;&gt; retardo &lt;/a&gt; &lt;br/&gt; &lt;a href=&quot;http://mislav.uniqpath.com/2010/09/cuking-it-right/&quot;&gt;[link]&lt;/a&gt; &lt;a href=\"http://www.reddit.com/r/ruby/comments/dgyh0/youre_cuking_it_right/\"&gt;[comment]&lt;/a&gt;</description></item><item><title>Routing Walkthrough: How does routing work internally in Rails 3?</title><link>http://www.reddit.com/r/ruby/comments/dgyj9/routing_walkthrough_how_does_routing_work/</link><guid isPermaLink=\"true\">http://www.reddit.com/r/ruby/comments/dgyj9/routing_walkthrough_how_does_routing_work/</guid><pubDate>Tue, 21 Sep 2010 11:06:13 -0700</pubDate><dc:date>2010-09-21T11:06:13.034898-07:00</dc:date><description>submitted by &lt;a href=&quot;http://www.reddit.com/user/retardo&quot;&gt; retardo &lt;/a&gt; &lt;br/&gt; &lt;a href=&quot;http://asciicasts.com/episodes/231-routing-walkthrough&quot;&gt;[link]&lt;/a&gt; &lt;a href=\"http://www.reddit.com/r/ruby/comments/dgyj9/routing_walkthrough_how_does_routing_work/\"&gt;[comment]&lt;/a&gt;</description></item><item><title>Writing modular web applications with Rack</title><link>http://www.reddit.com/r/ruby/comments/dgrro/writing_modular_web_applications_with_rack/</link><guid isPermaLink=\"true\">http://www.reddit.com/r/ruby/comments/dgrro/writing_modular_web_applications_with_rack/</guid><pubDate>Tue, 21 Sep 2010 02:40:48 -0700</pubDate><dc:date>2010-09-21T02:40:48.485811-07:00</dc:date><description>submitted by &lt;a href=&quot;http://www.reddit.com/user/ReiToei&quot;&gt; ReiToei &lt;/a&gt; &lt;br/&gt; &lt;a href=&quot;http://rubylearning.com/blog/2010/09/21/writing-modular-web-applications-with-rack/&quot;&gt;[link]&lt;/a&gt; &lt;a href=\"http://www.reddit.com/r/ruby/comments/dgrro/writing_modular_web_applications_with_rack/\"&gt;[comment]&lt;/a&gt;</description></item><item><title>The Hidden Gems of Ruby 1.9 (from Gogaruco)</title><link>http://www.reddit.com/r/ruby/comments/dglyf/the_hidden_gems_of_ruby_19_from_gogaruco/</link><guid isPermaLink=\"true\">http://www.reddit.com/r/ruby/comments/dglyf/the_hidden_gems_of_ruby_19_from_gogaruco/</guid><pubDate>Mon, 20 Sep 2010 17:29:53 -0700</pubDate><dc:date>2010-09-20T17:29:53.424086-07:00</dc:date><description>submitted by &lt;a href=&quot;http://www.reddit.com/user/tenderlove&quot;&gt; tenderlove &lt;/a&gt; &lt;br/&gt; &lt;a href=&quot;http://www.slideshare.net/tenderlove/hidden-gems-of-ruby-19&quot;&gt;[link]&lt;/a&gt; &lt;a href=\"http://www.reddit.com/r/ruby/comments/dglyf/the_hidden_gems_of_ruby_19_from_gogaruco/\"&gt;[3 comments]&lt;/a&gt;</description></item><item><title>GoGaRuCo 2010: Workflow</title><link>http://www.reddit.com/r/ruby/comments/dgnhd/gogaruco_2010_workflow/</link><guid isPermaLink=\"true\">http://www.reddit.com/r/ruby/comments/dgnhd/gogaruco_2010_workflow/</guid><pubDate>Mon, 20 Sep 2010 19:48:58 -0700</pubDate><dc:date>2010-09-20T19:48:58.320831-07:00</dc:date><description>submitted by &lt;a href=&quot;http://www.reddit.com/user/zenspider&quot;&gt; zenspider &lt;/a&gt; &lt;br/&gt; &lt;a href=&quot;http://www.slideshare.net/zenspider/workflow-5246098&quot;&gt;[link]&lt;/a&gt; &lt;a href=\"http://www.reddit.com/r/ruby/comments/dgnhd/gogaruco_2010_workflow/\"&gt;[9 comments]&lt;/a&gt;</description></item><item><title>ControlTower 1.0 - a web application server based on Rack, written from the ground for MacRuby</title><link>http://www.reddit.com/r/ruby/comments/dgmiv/controltower_10_a_web_application_server_based_on/</link><guid isPermaLink=\"true\">http://www.reddit.com/r/ruby/comments/dgmiv/controltower_10_a_web_application_server_based_on/</guid><pubDate>Mon, 20 Sep 2010 18:29:01 -0700</pubDate><dc:date>2010-09-20T18:29:01.568063-07:00</dc:date><description>submitted by &lt;a href=&quot;http://www.reddit.com/user/cydork&quot;&gt; cydork &lt;/a&gt; &lt;br/&gt; &lt;a href=&quot;http://www.macruby.org/blog/2010/09/20/announcing-control-tower.html&quot;&gt;[link]&lt;/a&gt; &lt;a href=\"http://www.reddit.com/r/ruby/comments/dgmiv/controltower_10_a_web_application_server_based_on/\"&gt;[1 comment]&lt;/a&gt;</description></item><item><title>New featues of embedding API for JRuby 1.6</title><link>http://www.reddit.com/r/ruby/comments/dgq4n/new_featues_of_embedding_api_for_jruby_16/</link><guid isPermaLink=\"true\">http://www.reddit.com/r/ruby/comments/dgq4n/new_featues_of_embedding_api_for_jruby_16/</guid><pubDate>Mon, 20 Sep 2010 23:34:14 -0700</pubDate><dc:date>2010-09-20T23:34:14.533902-07:00</dc:date><description>submitted by &lt;a href=&quot;http://www.reddit.com/user/gst&quot;&gt; gst &lt;/a&gt; &lt;br/&gt; &lt;a href=&quot;http://yokolet.blogspot.com/2010/09/new-featues-of-embedding-api-for-jruby.html&quot;&gt;[link]&lt;/a&gt; &lt;a href=\"http://www.reddit.com/r/ruby/comments/dgq4n/new_featues_of_embedding_api_for_jruby_16/\"&gt;[comment]&lt;/a&gt;</description></item><item><title>Starting a new Ruby group in New York for people new to Ruby. Pair Coding Galore!</title><link>http://www.reddit.com/r/ruby/comments/dgf2i/starting_a_new_ruby_group_in_new_york_for_people/</link><guid isPermaLink=\"true\">http://www.reddit.com/r/ruby/comments/dgf2i/starting_a_new_ruby_group_in_new_york_for_people/</guid><pubDate>Mon, 20 Sep 2010 09:30:54 -0700</pubDate><dc:date>2010-09-20T09:30:54.166835-07:00</dc:date><description>&lt;!-- SC_OFF --&gt;&lt;div class=&quot;md&quot;&gt;&lt;p&gt;If you're in New York and want to get together to learn about TDD and are interested in doing some pair work join us! It's geared more towards newer Rubyists but we need experienced coders to pair with. Thanks! &lt;a href=&quot;http://www.meetup.com/unearthruby/&quot; &gt;http://www.meetup.com/unearthruby/&lt;/a&gt;&lt;/p&gt;&lt;/div&gt;&lt;!-- SC_ON --&gt; submitted by &lt;a href=&quot;http://www.reddit.com/user/joblesspirate&quot;&gt; joblesspirate &lt;/a&gt; &lt;br/&gt; &lt;a href=&quot;http://www.reddit.com/r/ruby/comments/dgf2i/starting_a_new_ruby_group_in_new_york_for_people/&quot;&gt;[link]&lt;/a&gt; &lt;a href=\"http://www.reddit.com/r/ruby/comments/dgf2i/starting_a_new_ruby_group_in_new_york_for_people/\"&gt;[8 comments]&lt;/a&gt;</description></item><item><title>GoGaRuCo (Golden Gate Ruby Conference) 2010 Recap</title><link>http://www.reddit.com/r/ruby/comments/dgiq7/gogaruco_golden_gate_ruby_conference_2010_recap/</link><guid isPermaLink=\"true\">http://www.reddit.com/r/ruby/comments/dgiq7/gogaruco_golden_gate_ruby_conference_2010_recap/</guid><pubDate>Mon, 20 Sep 2010 13:18:41 -0700</pubDate><dc:date>2010-09-20T13:18:41.905079-07:00</dc:date><description>submitted by &lt;a href=&quot;http://www.reddit.com/user/danielfischer&quot;&gt; danielfischer &lt;/a&gt; &lt;br/&gt; &lt;a href=&quot;http://blog.danielfischer.com/2010/09/20/gogaruco-2010-recap/&quot;&gt;[link]&lt;/a&gt; &lt;a href=\"http://www.reddit.com/r/ruby/comments/dgiq7/gogaruco_golden_gate_ruby_conference_2010_recap/\"&gt;[comment]&lt;/a&gt;</description></item><item><title>ZeroMQ: Messaging patterns</title><link>http://www.reddit.com/r/ruby/comments/dg7zt/zeromq_messaging_patterns/</link><guid isPermaLink=\"true\">http://www.reddit.com/r/ruby/comments/dg7zt/zeromq_messaging_patterns/</guid><pubDate>Sun, 19 Sep 2010 22:52:48 -0700</pubDate><dc:date>2010-09-19T22:52:48.048335-07:00</dc:date><description>submitted by &lt;a href=&quot;http://www.reddit.com/user/gst&quot;&gt; gst &lt;/a&gt; &lt;br/&gt; &lt;a href=&quot;http://mitkokostov.info/post/1151080898/zeromq-messaging-patterns&quot;&gt;[link]&lt;/a&gt; &lt;a href=\"http://www.reddit.com/r/ruby/comments/dg7zt/zeromq_messaging_patterns/\"&gt;[3 comments]&lt;/a&gt;</description></item><item><title>Read Ruby 1.9: Free Ebook About the Ruby Programming Language</title><link>http://www.reddit.com/r/ruby/comments/dfv6v/read_ruby_19_free_ebook_about_the_ruby/</link><guid isPermaLink=\"true\">http://www.reddit.com/r/ruby/comments/dfv6v/read_ruby_19_free_ebook_about_the_ruby/</guid><pubDate>Sat, 18 Sep 2010 22:33:53 -0700</pubDate><dc:date>2010-09-18T22:33:53.850138-07:00</dc:date><description>submitted by &lt;a href=&quot;http://www.reddit.com/user/gst&quot;&gt; gst &lt;/a&gt; &lt;br/&gt; &lt;a href=&quot;http://ruby.runpaint.org/&quot;&gt;[link]&lt;/a&gt; &lt;a href=\"http://www.reddit.com/r/ruby/comments/dfv6v/read_ruby_19_free_ebook_about_the_ruby/\"&gt;[2 comments]&lt;/a&gt;</description></item><item><title>Where Rails Rocks (and where Python doesn't)</title><link>http://www.reddit.com/r/ruby/comments/dfv7j/where_rails_rocks_and_where_python_doesnt/</link><guid isPermaLink=\"true\">http://www.reddit.com/r/ruby/comments/dfv7j/where_rails_rocks_and_where_python_doesnt/</guid><pubDate>Sat, 18 Sep 2010 22:35:36 -0700</pubDate><dc:date>2010-09-18T22:35:36.101410-07:00</dc:date><description>submitted by &lt;a href=&quot;http://www.reddit.com/user/gst&quot;&gt; gst &lt;/a&gt; &lt;br/&gt; &lt;a href=&quot;http://blog.brandonbloom.name/2010/09/where-rails-rocks-and-where-python.html&quot;&gt;[link]&lt;/a&gt; &lt;a href=\"http://www.reddit.com/r/ruby/comments/dfv7j/where_rails_rocks_and_where_python_doesnt/\"&gt;[6 comments]&lt;/a&gt;</description></item></channel></rss>"
686
+ http_version: "1.1"
687
+ - !ruby/struct:VCR::HTTPInteraction
688
+ request: !ruby/struct:VCR::Request
689
+ method: :get
690
+ uri: http://feeds.feedburner.com:80/github
691
+ body:
692
+ headers:
693
+ accept:
694
+ - "*/*"
695
+ user-agent:
696
+ - Ruby
697
+ response: !ruby/struct:VCR::Response
698
+ status: !ruby/struct:VCR::ResponseStatus
699
+ code: 200
700
+ message: OK
701
+ headers:
702
+ content-type:
703
+ - text/xml; charset=UTF-8
704
+ etag:
705
+ - OLwtjF6Imql7gLwiqAfYElvDPlU
706
+ last-modified:
707
+ - Tue, 28 Sep 2010 02:31:01 GMT
708
+ date:
709
+ - Tue, 28 Sep 2010 02:37:35 GMT
710
+ expires:
711
+ - Tue, 28 Sep 2010 02:37:35 GMT
712
+ cache-control:
713
+ - private, max-age=0
714
+ x-content-type-options:
715
+ - nosniff
716
+ x-xss-protection:
717
+ - 1; mode=block
718
+ server:
719
+ - GSE
720
+ transfer-encoding:
721
+ - chunked
722
+ body: "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\r\n\
723
+ <?xml-stylesheet type=\"text/xsl\" media=\"screen\" href=\"/~d/styles/atom10full.xsl\"?><?xml-stylesheet type=\"text/css\" media=\"screen\" href=\"http://feeds.feedburner.com/~d/styles/itemcontent.css\"?><feed xmlns=\"http://www.w3.org/2005/Atom\" xmlns:media=\"http://search.yahoo.com/mrss/\" xml:lang=\"en-US\">\r\n <id>tag:github.com,2008:/blog</id>\r\n <link type=\"text/html\" rel=\"alternate\" href=\"http://github.com/blog\" />\r\n \r\n <title>The GitHub Blog</title>\r\n <updated>2010-09-24T13:58:39-07:00</updated>\r\n <atom10:link xmlns:atom10=\"http://www.w3.org/2005/Atom\" rel=\"self\" type=\"application/atom+xml\" href=\"http://feeds.feedburner.com/github\" /><feedburner:info xmlns:feedburner=\"http://rssnamespace.org/feedburner/ext/1.0\" uri=\"github\" /><atom10:link xmlns:atom10=\"http://www.w3.org/2005/Atom\" rel=\"hub\" href=\"http://pubsubhubbub.appspot.com/\" /><entry>\r\n <id>tag:github.com,2008:Post/724</id>\r\n <published>2010-09-24T13:48:44-07:00</published>\r\n <updated>2010-09-24T13:58:39-07:00</updated>\r\n <link type=\"text/html\" rel=\"alternate\" href=\"http://github.com/blog/724-a-few-words-on-the-recent-outages\" />\r\n <title>A few words on the recent outages</title>\r\n <content type=\"html\">&lt;p&gt;While we've been working hard to keep ahead of the demand for new file servers to push to and new web servers to keep the angry unicorn at bay, we've sadly neglected a very vital part of our infrastructure: the load balancers.&lt;/p&gt;\r\n\
724
+ \r\n\
725
+ &lt;p&gt;Earlier today our active load balancer became starved for resources due to some unfortunate timing, with a higher than normal amount of hits to the site while a rather intensive periodic job was running in the background. This caused the load balancer to start swapping out, drastically reducing its performance.&lt;/p&gt;\r\n\
726
+ \r\n\
727
+ &lt;p&gt;A few minutes later - after determining that the active load balancer wasn't going to recover any time soon - the standby load balancer proceeded to take over from the active load balancer. Unfortunately, as anyone who has worked with HA systems before will agree, failovers don't always go as planned. The standby load balancer failed to start all the necessary resources and the site was left in a broken state. Once we were alerted to the issue, we logged in and quickly determined what the issue was and started working on resolving it.&lt;/p&gt;\r\n\
728
+ \r\n\
729
+ &lt;h4&gt;What's the outcome of these outages?&lt;/h4&gt;\r\n\
730
+ \r\n\
731
+ &lt;p&gt;We've increased the resources available to the load balancers in order to account for the growth we've had over the last year. We've also had a potent reminder on how important it is to keep a close eye on all parts of your infrastructure, not just the bits that are the most visible.&lt;/p&gt;\r\n\
732
+ </content>\r\n <media:thumbnail url=\"http://www.gravatar.com/avatar/920e60e81da4fb61eaeb95fa9d7c3b70?s=30&amp;d=http%3A%2F%2Fgithub.com%2Fimages%2Fgravatars%2Fgravatar-140.png\" />\r\n <author>\r\n <name>rodjek</name>\r\n </author>\r\n </entry>\r\n <entry>\r\n <id>tag:github.com,2008:Post/723</id>\r\n <published>2010-09-24T10:15:19-07:00</published>\r\n <updated>2010-09-24T10:18:43-07:00</updated>\r\n <link type=\"text/html\" rel=\"alternate\" href=\"http://github.com/blog/723-tim-sharpe-is-a-githubber\" />\r\n <title>Tim Sharpe is a GitHubber</title>\r\n <content type=\"html\">&lt;p&gt;Monday marked &lt;a href=\"http://github.com/rodjek\"&gt;Tim Sharpe's&lt;/a&gt; first day at GitHub. He'll be joining us as our first full time sysadmin. His skills in Puppet and DRBD configuration are legendary. While not fighting crocodiles or dropbears in the Australian outback, Tim will be in charge of making sure that our servers stay comfy and warm in their racks.&lt;/p&gt;\r\n\
733
+ \r\n\
734
+ &lt;center&gt;&lt;a href=\"http://www.marvunapp.com/Appendix4/dropbears.htm\"&gt;&lt;img src=\"http://img.skitch.com/20100924-gi2qt69fgpj1147wk9jgmckhn1.jpg\" alt=\"Tim Sharpe\" /&gt;&lt;/a&gt;&lt;/center&gt;\r\n\
735
+ \r\n\
736
+ \r\n\
737
+ &lt;p&gt;With Tim on board, you can be sure that any problems will be handled with finesse and we'll be ready to grow to accommodate all of the repos you can throw at us.&lt;/p&gt;\r\n\
738
+ \r\n\
739
+ &lt;p&gt;Welcome, Tim!&lt;/p&gt;\r\n\
740
+ </content>\r\n <media:thumbnail url=\"http://www.gravatar.com/avatar/25c7c18223fb42a4c6ae1c8db6f50f9b?s=30&amp;d=http%3A%2F%2Fgithub.com%2Fimages%2Fgravatars%2Fgravatar-140.png\" />\r\n <author>\r\n <name>mojombo</name>\r\n </author>\r\n </entry>\r\n <entry>\r\n <id>tag:github.com,2008:Post/722</id>\r\n <published>2010-09-23T14:47:20-07:00</published>\r\n <updated>2010-09-23T14:53:27-07:00</updated>\r\n <link type=\"text/html\" rel=\"alternate\" href=\"http://github.com/blog/722-a-little-help-for-merging-pull-requests\" />\r\n <title>A little help for merging pull requests</title>\r\n <content type=\"html\">&lt;p&gt;While you're waiting for the long anticipated MergeButton\xE2\x84\xA2, I wanted to take a moment to highlight a few bits of documentation we have for pull requests.&lt;/p&gt;\r\n\
741
+ \r\n\
742
+ &lt;p&gt;If you have any questions about how pull requests work or how to deal with them, be sure to read our &lt;a href=\"http://help.github.com/pull-requests/\"&gt;extensive help article on pull requests&lt;/a&gt;. We have documentation on how to create, preview, manage, review and merge pull requests.&lt;/p&gt;\r\n\
743
+ \r\n\
744
+ &lt;p&gt;Another useful place for help can now be found at the bottom of any pull request that you can merge (meaning: open pull requests on repositories you have push access to).&lt;/p&gt;\r\n\
745
+ \r\n\
746
+ &lt;p&gt;&lt;img src=\"http://github-images.s3.amazonaws.com/blog/2010/pull_request-help.jpg\" alt=\"\" /&gt;&lt;/p&gt;\r\n\
747
+ \r\n\
748
+ &lt;p&gt;Lastly, don't forget about &lt;a href=\"/defunkt/hub\"&gt;hub&lt;/a&gt; and the &lt;a href=\"/defunkt/github-gem\"&gt;github gem&lt;/a&gt; which introduce a little bit of syntactic sugar around dealing with your GitHub network on the command line.&lt;/p&gt;\r\n\
749
+ </content>\r\n <media:thumbnail url=\"http://www.gravatar.com/avatar/5f2da528927a2ec9ba4fec2069cbc958?s=30&amp;d=http%3A%2F%2Fgithub.com%2Fimages%2Fgravatars%2Fgravatar-140.png\" />\r\n <author>\r\n <name>kneath</name>\r\n </author>\r\n </entry>\r\n <entry>\r\n <id>tag:github.com,2008:Post/721</id>\r\n <published>2010-09-17T12:41:23-07:00</published>\r\n <updated>2010-09-17T12:42:20-07:00</updated>\r\n <link type=\"text/html\" rel=\"alternate\" href=\"http://github.com/blog/721-github-meetup-belfast-saturday-sep-18th\" />\r\n <title>GitHub Meetup Belfast, Saturday Sep 18th</title>\r\n <content type=\"html\">&lt;div align=\"center\"&gt;\r\n\
750
+ &lt;img src=\"http://img.skitch.com/20100917-x9ygnwud5ytgikcsgxiqjht56b.jpg\"&gt;\r\n\
751
+ &lt;/div&gt;\r\n\
752
+ \r\n\
753
+ \r\n\
754
+ &lt;p&gt;As the last stop on my four-country, three-conference international tour I'm coming to Belfast! The festivities will start Saturday, September 18th at 19:00 at &lt;a href=\"http://maps.google.com/maps?f=q&amp;amp;source=s_q&amp;amp;hl=en&amp;amp;geocode=&amp;amp;q=duke+of+york,+belfast&amp;amp;sll=37.0625,-95.677068&amp;amp;sspn=55.718442,106.787109&amp;amp;ie=UTF8&amp;amp;hq=duke+of+york,&amp;amp;hnear=Belfast,+United+Kingdom&amp;amp;z=15&amp;amp;iwloc=A\"&gt;Duke of York&lt;/a&gt;.&lt;/p&gt;\r\n\
755
+ \r\n\
756
+ &lt;p&gt;So, come by and meet me (Tom Preston-Werner). I'll be wearing a gray GitHub shirt that says \"fork you\" on the front. First round's on us!&lt;/p&gt;\r\n\
757
+ </content>\r\n <media:thumbnail url=\"http://www.gravatar.com/avatar/25c7c18223fb42a4c6ae1c8db6f50f9b?s=30&amp;d=http%3A%2F%2Fgithub.com%2Fimages%2Fgravatars%2Fgravatar-140.png\" />\r\n <author>\r\n <name>mojombo</name>\r\n </author>\r\n </entry>\r\n <entry>\r\n <id>tag:github.com,2008:Post/719</id>\r\n <published>2010-09-15T12:22:24-07:00</published>\r\n <updated>2010-09-15T12:25:20-07:00</updated>\r\n <link type=\"text/html\" rel=\"alternate\" href=\"http://github.com/blog/719-eston-bond-is-a-githubber\" />\r\n <title>Eston Bond is a GitHubber</title>\r\n <content type=\"html\">&lt;p&gt;Monday marked &lt;a href=\"http://github.com/eston\"&gt;Eston Bond's&lt;/a&gt; first day at GitHub. He'll be joining me working on the look &amp;amp; feel of all things GitHub. We're all stoked to have another designer on board and can't wait to see what awesome comes from it.&lt;/p&gt;\r\n\
758
+ \r\n\
759
+ &lt;center&gt;&lt;img src=\"http://github-images.s3.amazonaws.com/blog/2010/estonbond.jpg\" alt=\"Eston Bond\" /&gt;&lt;/center&gt;\r\n\
760
+ \r\n\
761
+ \r\n\
762
+ &lt;p&gt;You might know Eston from his time as a Product Designer at &lt;a href=\"http://facebook.com/\"&gt;Facebook&lt;/a&gt; fame or as the designer of &lt;a href=\"http://techcrunch.com/2009/05/28/spymaster-the-twitter-game-that-will-assassinate-your-time/\"&gt;Spymaster&lt;/a&gt;. Eston is starting a new blog at &lt;a href=\"http://estonbond.com/\"&gt;estonbond.com&lt;/a&gt;, tweets as &lt;a href=\"http://twitter.com/eston\"&gt;@eston&lt;/a&gt; and hacks as &lt;a href=\"http://github.com/eston/\"&gt;eston&lt;/a&gt;.&lt;/p&gt;\r\n\
763
+ \r\n\
764
+ &lt;p&gt;Welcome, Eston!&lt;/p&gt;\r\n\
765
+ </content>\r\n <media:thumbnail url=\"http://www.gravatar.com/avatar/5f2da528927a2ec9ba4fec2069cbc958?s=30&amp;d=http%3A%2F%2Fgithub.com%2Fimages%2Fgravatars%2Fgravatar-140.png\" />\r\n <author>\r\n <name>kneath</name>\r\n </author>\r\n </entry>\r\n <entry>\r\n <id>tag:github.com,2008:Post/718</id>\r\n <published>2010-09-14T22:24:32-07:00</published>\r\n <updated>2010-09-14T22:27:56-07:00</updated>\r\n <link type=\"text/html\" rel=\"alternate\" href=\"http://github.com/blog/718-github-meetup-moscow-tonight-sep-15\" />\r\n <title>GitHub Meetup Moscow, Tonight, Sep 15</title>\r\n <content type=\"html\">&lt;div align=\"center\"&gt;\r\n\
766
+ &lt;img src=\"http://img.skitch.com/20100915-d4tk6qkybdfcke8t55pedqqbjm.jpg\"&gt;\r\n\
767
+ &lt;/div&gt;\r\n\
768
+ \r\n\
769
+ \r\n\
770
+ &lt;p&gt;I'm in Moscow for the &lt;a href=\"http://techforum.mail.ru/\"&gt;@mail.ru Tech Forum&lt;/a&gt; and I'll be holding a casual GitHub Drinkup at &lt;a href=\"http://maps.google.com/maps?f=q&amp;amp;source=s_q&amp;amp;hl=en&amp;amp;geocode=&amp;amp;q=sally+obrien,+Russian+Federation,+Moscow&amp;amp;sll=55.739099,37.618044&amp;amp;sspn=0.037979,0.104284&amp;amp;ie=UTF8&amp;amp;hq=sally+obrien,&amp;amp;hnear=Moscow,+Russian+Federation&amp;amp;ll=55.741028,37.61693&amp;amp;spn=0.037977,0.104284&amp;amp;z=14&amp;amp;iwloc=A\"&gt;Sally O'Brien's&lt;/a&gt; starting at 21:00.&lt;/p&gt;\r\n\
771
+ \r\n\
772
+ &lt;p&gt;So, come by and meet me (Tom Preston-Werner). I'll be wearing a gray GitHub shirt that says \"fork you\" on the front. First round's on us!&lt;/p&gt;\r\n\
773
+ </content>\r\n <media:thumbnail url=\"http://www.gravatar.com/avatar/25c7c18223fb42a4c6ae1c8db6f50f9b?s=30&amp;d=http%3A%2F%2Fgithub.com%2Fimages%2Fgravatars%2Fgravatar-140.png\" />\r\n <author>\r\n <name>mojombo</name>\r\n </author>\r\n </entry>\r\n <entry>\r\n <id>tag:github.com,2008:Post/717</id>\r\n <published>2010-09-13T17:53:41-07:00</published>\r\n <updated>2010-09-13T17:54:19-07:00</updated>\r\n <link type=\"text/html\" rel=\"alternate\" href=\"http://github.com/blog/717-git-user-survey-2010\" />\r\n <title>Git User Survey 2010</title>\r\n <content type=\"html\">&lt;p&gt;It's that time again: the &lt;a href=\"https://www.survs.com/survey/MUPYR8UJ4B\"&gt;2010 Git User Survey&lt;/a&gt; is here!&lt;/p&gt;\r\n\
774
+ \r\n\
775
+ &lt;p&gt;&lt;strong&gt;All questions are optional,&lt;/strong&gt; but every answer you give helps make git even more awesome.&lt;/p&gt;\r\n\
776
+ \r\n\
777
+ &lt;p&gt;The survey will run until October 15th so fill it out soon. Results will be posted to &lt;a href=\"https://git.wiki.kernel.org/index.php/GitSurvey2010\"&gt;https://git.wiki.kernel.org/index.php/GitSurvey2010&lt;/a&gt; after that date.&lt;/p&gt;\r\n\
778
+ \r\n\
779
+ &lt;p&gt;Thanks for helping out!&lt;/p&gt;\r\n\
780
+ </content>\r\n <media:thumbnail url=\"http://www.gravatar.com/avatar/b8dbb1987e8e5318584865f880036796?s=30&amp;d=http%3A%2F%2Fgithub.com%2Fimages%2Fgravatars%2Fgravatar-140.png\" />\r\n <author>\r\n <name>defunkt</name>\r\n </author>\r\n </entry>\r\n <entry>\r\n <id>tag:github.com,2008:Post/716</id>\r\n <published>2010-09-10T11:00:26-07:00</published>\r\n <updated>2010-09-14T15:34:27-07:00</updated>\r\n <link type=\"text/html\" rel=\"alternate\" href=\"http://github.com/blog/716-github-wiki-upgrade-this-weekend\" />\r\n <title>GitHub Wiki Upgrade This Weekend</title>\r\n <content type=\"html\">&lt;p&gt;&lt;strong&gt;Update&lt;/strong&gt;: Done! If you notice any issues, file a &lt;a href=\"http://support.github.com\"&gt;support issue&lt;/a&gt; with the &lt;code&gt;user/repo&lt;/code&gt; path. No data on our end was deleted, so we can restore any lost data.&lt;/p&gt;\r\n\
781
+ \r\n\
782
+ &lt;p&gt;&lt;strike&gt;&lt;em&gt;Update&lt;/em&gt;: Still going! We've slowed down the progress of upgrades to minimize impact to the site.&lt;/strike&gt;&lt;/p&gt;\r\n\
783
+ \r\n\
784
+ &lt;p&gt;On Sunday, September 12th, we're going to be upgrading all remaining classic wikis to the &lt;a href=\"http://github.com/blog/699-making-github-more-open-git-backed-wikis\"&gt;new Git-backed wiki system&lt;/a&gt;. Here's how I plan to do it:&lt;/p&gt;\r\n\
785
+ \r\n\
786
+ &lt;ul&gt;\r\n\
787
+ &lt;li&gt;If the classic wiki is empty, enable the Git-backed wiki.&lt;/li&gt;\r\n\
788
+ &lt;li&gt;If no Git-backed wiki exists, transfer the classic wiki to Git, and then disable the classic wiki.&lt;/li&gt;\r\n\
789
+ &lt;li&gt;If the Git-backed wiki already exists, assume the transfer has completed, and disable the classic wiki.&lt;/li&gt;\r\n\
790
+ &lt;/ul&gt;\r\n\
791
+ \r\n\
792
+ \r\n\
793
+ &lt;p&gt;A few things to keep in mind:&lt;/p&gt;\r\n\
794
+ \r\n\
795
+ &lt;ul&gt;\r\n\
796
+ &lt;li&gt;We won't be deleting any data. If you have problems, &lt;a href=\"http://support.github.com/discussions\"&gt;file a support issue&lt;/a&gt;. We can make temporary exceptions for repos that need to keep the classic wiki until some bug is fixed.&lt;/li&gt;\r\n\
797
+ &lt;li&gt;If you upgraded a wiki but never disabled the classic wiki, you can &lt;a href=\"http://support.github.com/discussions\"&gt;ask us&lt;/a&gt; to wipe the Git repo so we can redo it.&lt;/li&gt;\r\n\
798
+ &lt;li&gt;There are still a few minor bugs in the system that I hope to have fixed by Sunday.&lt;/li&gt;\r\n\
799
+ &lt;/ul&gt;\r\n\
800
+ \r\n\
801
+ \r\n\
802
+ &lt;p&gt;Thanks for being patient during the month long beta period. We got a lot of great feedback, fixed some nasty bugs, and are seeing a lot of activity on the &lt;a href=\"http://github.com/github/gollum/issues\"&gt;open source front&lt;/a&gt;.&lt;/p&gt;\r\n\
803
+ </content>\r\n <media:thumbnail url=\"http://www.gravatar.com/avatar/821395fe70906c8290df7f18ac4ac6cf?s=30&amp;d=http%3A%2F%2Fgithub.com%2Fimages%2Fgravatars%2Fgravatar-140.png\" />\r\n <author>\r\n <name>technoweenie</name>\r\n </author>\r\n </entry>\r\n <entry>\r\n <id>tag:github.com,2008:Post/715</id>\r\n <published>2010-09-09T02:24:14-07:00</published>\r\n <updated>2010-09-09T02:29:38-07:00</updated>\r\n <link type=\"text/html\" rel=\"alternate\" href=\"http://github.com/blog/715-github-meetup-in-dublin-sept-11\" />\r\n <title>GitHub Meetup in Dublin - Sept 11</title>\r\n <content type=\"html\">&lt;p&gt;Join &lt;a href=\"/mojombo\"&gt;Tom&lt;/a&gt;, &lt;a href=\"/kneath\"&gt;Kyle&lt;/a&gt;, &lt;a href=\"/schacon\"&gt;Scott&lt;/a&gt; and &lt;a href=\"/pjhyett\"&gt;PJ&lt;/a&gt; at the &lt;a href=\"http://maps.google.com/maps?ie=UTF8&amp;amp;q=guinness+gravity+bar&amp;amp;fb=1&amp;amp;hq=guinness+gravity+bar&amp;amp;cid=0,0,12706997779410078966&amp;amp;ei=oqeITPr5G5qH4gbW_rnOBA&amp;amp;ved=0CDwQnwIwBw&amp;amp;hnear=&amp;amp;ll=53.34211,-6.286583&amp;amp;spn=0.007482,0.018067&amp;amp;z=16&amp;amp;iwloc=A\"&gt;Guinness Gravity Bar&lt;/a&gt; this Saturday from 20:00.&lt;/p&gt;\r\n\
804
+ \r\n\
805
+ &lt;p&gt;There will be a bunch of people there for the &lt;a href=\"http://funconf.com\"&gt;FunConf&lt;/a&gt; after party, so make sure to say hi to one of us if you're able to make it.&lt;/p&gt;\r\n\
806
+ \r\n\
807
+ &lt;p&gt;&lt;img src=\"http://img.skitch.com/20100909-j41d25q1s8x1stn5qfk3d9a52x.jpg\" alt=\"\" /&gt;&lt;/p&gt;\r\n\
808
+ \r\n\
809
+ &lt;p&gt;Did I mention there will be Guinness?&lt;/p&gt;\r\n\
810
+ </content>\r\n <media:thumbnail url=\"http://www.gravatar.com/avatar/290cf664d9e6f823fc3af57556493db7?s=30&amp;d=http%3A%2F%2Fgithub.com%2Fimages%2Fgravatars%2Fgravatar-140.png\" />\r\n <author>\r\n <name>pjhyett</name>\r\n </author>\r\n </entry>\r\n <entry>\r\n <id>tag:github.com,2008:Post/714</id>\r\n <published>2010-09-08T13:42:43-07:00</published>\r\n <updated>2010-09-08T13:55:05-07:00</updated>\r\n <link type=\"text/html\" rel=\"alternate\" href=\"http://github.com/blog/714-twitter-service-hooks-return\" />\r\n <title>Twitter Service Hooks Return</title>\r\n <content type=\"html\">&lt;p&gt;A few weeks back &lt;a href=\"http://dev.twitter.com/pages/basic_auth_shutdown\"&gt;twitter removed basic auth support&lt;/a&gt; and as a result many of you haven't been receiving twitter notifications for changes to your repositories. We've taken the the necessary steps to re-enable this service via their OAuth based API. All you need to do is edit your repository and click on the link to get an OAuth token.&lt;/p&gt;\r\n\
811
+ \r\n\
812
+ &lt;p&gt;&lt;img src=\"http://img.skitch.com/20100908-p33u3j6t4ma9522prcy3sna8cm.jpg\" alt=\"Click on the OAuth Link\" /&gt;&lt;/p&gt;\r\n\
813
+ </content>\r\n <media:thumbnail url=\"http://www.gravatar.com/avatar/a86224d72ce21cd9f5bee6784d4b06c7?s=30&amp;d=http%3A%2F%2Fgithub.com%2Fimages%2Fgravatars%2Fgravatar-140.png\" />\r\n <author>\r\n <name>atmos</name>\r\n </author>\r\n </entry>\r\n <entry>\r\n <id>tag:github.com,2008:Post/713</id>\r\n <published>2010-09-01T11:29:04-07:00</published>\r\n <updated>2010-09-01T11:29:43-07:00</updated>\r\n <link type=\"text/html\" rel=\"alternate\" href=\"http://github.com/blog/713-the-reverse-twitter-effect\" />\r\n <title>The Reverse Twitter Effect</title>\r\n <content type=\"html\">&lt;p&gt;While Twitter may see traffic spikes during &lt;a href=\"http://events.apple.com.edgesuite.net/1009qpeijrfn/event\"&gt;Apple events&lt;/a&gt;, we see quite the opposite:&lt;/p&gt;\r\n\
814
+ \r\n\
815
+ &lt;center&gt;\r\n\
816
+ &lt;img src=\"http://img.skitch.com/20100901-d7frhdqtkbj5awp67sukpatxh1.png\"&gt;\r\n\
817
+ &lt;/center&gt;\r\n\
818
+ \r\n\
819
+ </content>\r\n <media:thumbnail url=\"http://www.gravatar.com/avatar/b8dbb1987e8e5318584865f880036796?s=30&amp;d=http%3A%2F%2Fgithub.com%2Fimages%2Fgravatars%2Fgravatar-140.png\" />\r\n <author>\r\n <name>defunkt</name>\r\n </author>\r\n </entry>\r\n <entry>\r\n <id>tag:github.com,2008:Post/712</id>\r\n <published>2010-08-31T02:12:38-07:00</published>\r\n <updated>2010-08-31T11:19:14-07:00</updated>\r\n <link type=\"text/html\" rel=\"alternate\" href=\"http://github.com/blog/712-pull-requests-2-0\" />\r\n <title>Pull Requests 2.0</title>\r\n <content type=\"html\">&lt;p&gt;GitHub launched with a simple pull request system on day one. You've used it to\r\n\
820
+ send &lt;strong&gt;200 thousand&lt;/strong&gt; pull requests in just over two years. Now we're taking it\r\n\
821
+ to the next level with a re-imagined design and a slew of new tools that\r\n\
822
+ streamline the process of discussing, reviewing, and managing changes.&lt;/p&gt;\r\n\
823
+ \r\n\
824
+ &lt;p&gt;&lt;img src=\"http://share.kyleneath.com/captures/skitched-20100830-133751.png\" alt=\"\" /&gt;&lt;/p&gt;\r\n\
825
+ \r\n\
826
+ &lt;p&gt;As of today, pull requests are &lt;strong&gt;living discussions&lt;/strong&gt; about the &lt;strong&gt;code&lt;/strong&gt; you\r\n\
827
+ want merged. They're our take on &lt;strong&gt;code review&lt;/strong&gt; and represent a big part of our\r\n\
828
+ vision for collaborative development.&lt;/p&gt;\r\n\
829
+ \r\n\
830
+ &lt;h3&gt;Know What You're Sending&lt;/h3&gt;\r\n\
831
+ \r\n\
832
+ &lt;p&gt;Sending a pull request is simple. Browse to the branch or commit with your\r\n\
833
+ recent work and hit the\r\n\
834
+ &lt;img\r\n src='http://img.skitch.com/20100823-ui738y55bmn96nq3gp1q51upt.png'\r\n style='border:0;vertical-align:middle;position:relative;top:-2px;margin-bottom:-1px;display:inline'\r\n alt='Pull Request'\r\n\
835
+ /&gt; button. You'll be greeted by a brand new screen:&lt;/p&gt;\r\n\
836
+ \r\n\
837
+ &lt;p&gt;&lt;a href=\"http://img.skitch.com/20100831-k9jau6a3sbams4p3588b3ba2qd.png\" target=\"_blank\"&gt;&lt;img src=\"http://img.skitch.com/20100831-k9jau6a3sbams4p3588b3ba2qd.png\" alt=\"\"&gt;&lt;/a&gt;&lt;/p&gt;\r\n\
838
+ \r\n\
839
+ &lt;p&gt;Pull requests are now fully &lt;strong&gt;revision aware&lt;/strong&gt; and take into account not only\r\n\
840
+ &lt;em&gt;what&lt;/em&gt; you would like pulled but also &lt;em&gt;where&lt;/em&gt; you intend those changes to be\r\n\
841
+ applied. They even work when sending from and to the same repository, making\r\n\
842
+ pull requests just as useful in scenarios where a team is working out of a\r\n\
843
+ single shared repository as they are in the &lt;em&gt;fork + pull&lt;/em&gt; model.&lt;/p&gt;\r\n\
844
+ \r\n\
845
+ &lt;h3&gt;When you send a pull request, you're starting a discussion.&lt;/h3&gt;\r\n\
846
+ \r\n\
847
+ &lt;p&gt;Some back and forth is typically required before a pull request is accepted. The\r\n\
848
+ maintainer needs clarification, or the change doesn't conform to the project's\r\n\
849
+ coding conventions, or maybe someone was able to take a concept 80% to\r\n\
850
+ completion and needs help working through the last bits.&lt;/p&gt;\r\n\
851
+ \r\n\
852
+ &lt;p&gt;The discussion view makes pull requests the best place to have these types\r\n\
853
+ of conversations. Anywhere. Here's why:&lt;/p&gt;\r\n\
854
+ \r\n\
855
+ &lt;p&gt;&lt;a href=\"http://img.skitch.com/20100831-j7fapxihs2a3i48ai5qmqceskp.png\" target=\"_blank\"&gt;&lt;img src=\"http://img.skitch.com/20100831-j7fapxihs2a3i48ai5qmqceskp.png\" alt=\"\"&gt;&lt;/a&gt;&lt;/p&gt;\r\n\
856
+ \r\n\
857
+ &lt;p&gt;The discussion view presents all pull request related activity as it unfolds:\r\n\
858
+ comment on the pull request itself, push follow up commits, or leave commit\r\n\
859
+ notes - it's all interleaved into the discussion view as it happens.&lt;/p&gt;\r\n\
860
+ \r\n\
861
+ &lt;h3&gt;Revision Aware&lt;/h3&gt;\r\n\
862
+ \r\n\
863
+ &lt;p&gt;The discussion view is perfect for watching changes evolve over time, but it's\r\n\
864
+ equally important to know exactly what modifications would be made if the\r\n\
865
+ changes were accepted right now. The &lt;em&gt;Commits&lt;/em&gt; and &lt;em&gt;Files Changed&lt;/em&gt; tabs are\r\n\
866
+ quickly accessible and show the cumulative progress of the pull request:&lt;/p&gt;\r\n\
867
+ \r\n\
868
+ &lt;p&gt;&lt;a href=\"http://img.skitch.com/20100831-mers1qjsq9acifp2gc2tf559cc.png\" target=\"_blank\"&gt;&lt;img src=\"http://img.skitch.com/20100831-mers1qjsq9acifp2gc2tf559cc.png\" alt=\"\"&gt;&lt;/a&gt;&lt;/p&gt;\r\n\
869
+ \r\n\
870
+ &lt;p&gt;Look familiar? It's a miniature\r\n\
871
+ &lt;a href=\"http://github.com/blog/612-introducing-github-compare-view\"&gt;compare view&lt;/a&gt;.&lt;/p&gt;\r\n\
872
+ \r\n\
873
+ &lt;h3&gt;Visible, Linkable, Archived&lt;/h3&gt;\r\n\
874
+ \r\n\
875
+ &lt;p&gt;Anyone with access can browse a repository's pull requests by visiting the\r\n\
876
+ repository's &lt;em&gt;Network &amp;#8674; Pull Requests&lt;/em&gt; page.&lt;/p&gt;\r\n\
877
+ \r\n\
878
+ &lt;p&gt;&lt;a href=\"http://img.skitch.com/20100823-bahbpwpemx3jh2kpke77d2dxtc.png\" target=\"_blank\"&gt;&lt;img src=\"http://img.skitch.com/20100823-bahbpwpemx3jh2kpke77d2dxtc.png\" alt=\"\"&gt;&lt;/a&gt;&lt;/p&gt;\r\n\
879
+ \r\n\
880
+ &lt;p&gt;Every pull request has a URL so you can link to them. They're archived forever\r\n\
881
+ and indexed by search engines.&lt;/p&gt;\r\n\
882
+ \r\n\
883
+ &lt;h3&gt;An Issue at heart&lt;/h3&gt;\r\n\
884
+ \r\n\
885
+ &lt;p&gt;Pull requests are tightly integrated into GitHub Issues. When you see an\r\n\
886
+ &lt;img\r\n src=\"http://github.com/images/modules/issues/pull_request_icon.png\"\r\n style='border:0;vertical-align:middle;display:inline'\r\n alt='[^]'\r\n\
887
+ /&gt; icon in the issues list, it means there's a pull request attached.&lt;/p&gt;\r\n\
888
+ \r\n\
889
+ &lt;p&gt;&lt;a href=\"http://img.skitch.com/20100823-pq3qwwxpecehfb5q2n773pww4w.png\" target=\"_blank\"&gt;&lt;img src=\"http://img.skitch.com/20100823-pq3qwwxpecehfb5q2n773pww4w.png\" alt=\"\"&gt;&lt;/a&gt;&lt;/p&gt;\r\n\
890
+ \r\n\
891
+ &lt;p&gt;Don't use Issues? No problem. You still get awesome pull requests.&lt;/p&gt;\r\n\
892
+ \r\n\
893
+ &lt;h3&gt;Pull Request Dashboard&lt;/h3&gt;\r\n\
894
+ \r\n\
895
+ &lt;p&gt;The pull request dashboard gives a high level view of all pull requests across\r\n\
896
+ every repository you or your organization is involved with.&lt;/p&gt;\r\n\
897
+ \r\n\
898
+ &lt;p&gt;&lt;a href=\"http://github.com/dashboard/pulls\" target=\"_blank\"&gt;&lt;img src=\"http://img.skitch.com/20100823-j32jfck5umyyj8ukrne81dkytq.png\"&gt;&lt;/a&gt;&lt;/p&gt;\r\n\
899
+ \r\n\
900
+ &lt;h3&gt;What are you waiting for?&lt;/h3&gt;\r\n\
901
+ \r\n\
902
+ &lt;p&gt;Pull requests sent prior to today &lt;strong&gt;are not&lt;/strong&gt; automatically imported into the new system. If you have outstanding requests, use them as an opportunity to try out revision aware pull requests today!&lt;/p&gt;\r\n\
903
+ </content>\r\n <media:thumbnail url=\"http://www.gravatar.com/avatar/abfc88b96ae18c85ba7aac3bded2ec5e?s=30&amp;d=http%3A%2F%2Fgithub.com%2Fimages%2Fgravatars%2Fgravatar-140.png\" />\r\n <author>\r\n <name>rtomayko</name>\r\n </author>\r\n </entry>\r\n <entry>\r\n <id>tag:github.com,2008:Post/711</id>\r\n <published>2010-08-30T17:25:22-07:00</published>\r\n <updated>2010-08-30T17:31:16-07:00</updated>\r\n <link type=\"text/html\" rel=\"alternate\" href=\"http://github.com/blog/711-corey-donohoe-is-a-githubber\" />\r\n <title>Corey Donohoe is a GitHubber</title>\r\n <content type=\"html\">&lt;p&gt;Today marks &lt;a href=\"http://github.com/atmos\"&gt;Corey \"atmos\" Donohoe's&lt;/a&gt; first day as a GitHubber. He'll be helping us make GitHub more awesome.&lt;/p&gt;\r\n\
904
+ \r\n\
905
+ &lt;div align=\"center\"&gt;\r\n\
906
+ &lt;a href=\"http://github.com/atmos\"&gt;\r\n\
907
+ &lt;img src=http://img.skitch.com/20100831-ewi4u82uf9x12fyphcsdqnqxs5.jpg\"&gt;\r\n\
908
+ &lt;/a&gt;\r\n\
909
+ &lt;/div&gt;\r\n\
910
+ \r\n\
911
+ \r\n\
912
+ &lt;p&gt;We're all super excited to have Corey on board, and a quick browse through his repos explains why: &lt;a href=\"http://github.com/atmos/singem\"&gt;Sinatra&lt;/a&gt;, &lt;a href=\"http://github.com/atmos/ircat.js\"&gt;node.js&lt;/a&gt;, and &lt;a href=\"http://github.com/atmos/sinatra_auth_github\"&gt;OAuth&lt;/a&gt; are among his interests. He has some &lt;a href=\"http://www.flickr.com/photos/atmos/4249627253/\"&gt;amazing dogs&lt;/a&gt;, too.&lt;/p&gt;\r\n\
913
+ \r\n\
914
+ &lt;p&gt;Also OS X - if you like the sound of homebrew and chef you'll definitely want to check out his &lt;a href=\"http://www.atmos.org/cider/\"&gt;cider&lt;/a&gt; project.&lt;/p&gt;\r\n\
915
+ \r\n\
916
+ &lt;p&gt;You can follow him on &lt;a href=\"http://github.com/atmos\"&gt;GitHub&lt;/a&gt;, &lt;a href=\"http://twitter.com/atmos\"&gt;twitter&lt;/a&gt;, &lt;a href=\"http://tumblr.atmos.org/\"&gt;tumblr&lt;/a&gt;, or at his &lt;a href=\"http://www.atmos.org/posts.html\"&gt;blog&lt;/a&gt;.&lt;/p&gt;\r\n\
917
+ \r\n\
918
+ &lt;p&gt;Welcome to the team, Corey!&lt;/p&gt;\r\n\
919
+ </content>\r\n <media:thumbnail url=\"http://www.gravatar.com/avatar/b8dbb1987e8e5318584865f880036796?s=30&amp;d=http%3A%2F%2Fgithub.com%2Fimages%2Fgravatars%2Fgravatar-140.png\" />\r\n <author>\r\n <name>defunkt</name>\r\n </author>\r\n </entry>\r\n <entry>\r\n <id>tag:github.com,2008:Post/708</id>\r\n <published>2010-08-26T18:42:03-07:00</published>\r\n <updated>2010-08-26T20:06:43-07:00</updated>\r\n <link type=\"text/html\" rel=\"alternate\" href=\"http://github.com/blog/708-mozilla-labs-on-github\" />\r\n <title>Mozilla Labs on GitHub</title>\r\n <content type=\"html\">&lt;p&gt;&lt;a href=\"http://mozillalabs.com\"&gt;Mozilla Labs&lt;/a&gt; is now mirroring open source to GitHub: &lt;a href=\"http://github.com/mozillalabs\"&gt;http://github.com/mozillalabs&lt;/a&gt;&lt;/p&gt;\r\n\
920
+ \r\n\
921
+ &lt;center&gt;\r\n\
922
+ &lt;a href=\"http://github.com/mozillalabs\"&gt;\r\n\
923
+ &lt;img src=\"http://img.skitch.com/20100827-bbj83mmb2cgbusutb5pxwabdr7.png\"&gt;\r\n\
924
+ &lt;/a&gt;\r\n\
925
+ &lt;/center&gt;\r\n\
926
+ \r\n\
927
+ \r\n\
928
+ &lt;p&gt;Read &lt;a href=\"http://mozillalabs.com/conceptseries/2010/08/25/contribute-to-labs-projects-on-github\"&gt;the blog post&lt;/a&gt; or check out the &lt;a href=\"http://github.com/mozilla\"&gt;repositories on GitHub&lt;/a&gt;.&lt;/p&gt;\r\n\
929
+ \r\n\
930
+ &lt;p&gt;Rumor has it we'll being see more from Mozilla on GitHub in the future, too!&lt;/p&gt;\r\n\
931
+ </content>\r\n <media:thumbnail url=\"http://www.gravatar.com/avatar/b8dbb1987e8e5318584865f880036796?s=30&amp;d=http%3A%2F%2Fgithub.com%2Fimages%2Fgravatars%2Fgravatar-140.png\" />\r\n <author>\r\n <name>defunkt</name>\r\n </author>\r\n </entry>\r\n <entry>\r\n <id>tag:github.com,2008:Post/707</id>\r\n <published>2010-08-25T14:26:31-07:00</published>\r\n <updated>2010-08-25T15:14:46-07:00</updated>\r\n <link type=\"text/html\" rel=\"alternate\" href=\"http://github.com/blog/707-git-notes-display\" />\r\n <title>Git Notes Display</title>\r\n <content type=\"html\">&lt;p&gt;I just blogged about the new &lt;code&gt;git-notes&lt;/code&gt; functionality over at the &lt;a href=\"http://progit.org/2010/08/25/notes.html\"&gt;Pro Git blog&lt;/a&gt;. If you're interested in using Git notes for something, you might be interested to know that GitHub now supports them and will display them on your commit pages.&lt;/p&gt;\r\n\
932
+ \r\n\
933
+ &lt;p&gt;If you push notes to GitHub, you will be able to see them at the bottom of the diff when you are &lt;a href=\"http://github.com/schacon/kidgloves/commit/0385bcc3bc66d1b1ec07346c237061574335c3b8\"&gt;viewing that commit&lt;/a&gt;. These are separate from GitHub commit comments and are displayed differently. The will look like this:&lt;/p&gt;\r\n\
934
+ \r\n\
935
+ &lt;p&gt;&lt;img src=\"http://img.skitch.com/20100825-ruf4t4yugp5ppce8sjh1a12k75.jpg\"/&gt;&lt;/p&gt;\r\n\
936
+ \r\n\
937
+ &lt;p&gt;To learn more about Git notes, read &lt;a href=\"http://progit.org/2010/08/25/notes.html\"&gt;my post&lt;/a&gt;. on them, but the short of it is: they're cool for appending notes from automated systems (like ticket or build systems) but not really for having interactive conversations with other developers (at least not yet). Hope you find them useful.&lt;/p&gt;\r\n\
938
+ </content>\r\n <media:thumbnail url=\"http://www.gravatar.com/avatar/9375a9529679f1b42b567a640d775e7d?s=30&amp;d=http%3A%2F%2Fgithub.com%2Fimages%2Fgravatars%2Fgravatar-140.png\" />\r\n <author>\r\n <name>schacon</name>\r\n </author>\r\n </entry>\r\n\
939
+ </feed>\r\n"
940
+ http_version: "1.1"
941
+ - !ruby/struct:VCR::HTTPInteraction
942
+ request: !ruby/struct:VCR::Request
943
+ method: :get
944
+ uri: http://staff.tumblr.com:80/
945
+ body:
946
+ headers:
947
+ accept:
948
+ - "*/*"
949
+ user-agent:
950
+ - Ruby
951
+ response: !ruby/struct:VCR::Response
952
+ status: !ruby/struct:VCR::ResponseStatus
953
+ code: 200
954
+ message: OK
955
+ headers:
956
+ server:
957
+ - Apache/2.2.3 (Red Hat)
958
+ p3p:
959
+ - CP="ALL ADM DEV PSAi COM OUR OTRo STP IND ONL"
960
+ x-tumblr-user:
961
+ - staff
962
+ link:
963
+ - <http://28.media.tumblr.com/avatar_013241641371_16.png>; rel=icon
964
+ vary:
965
+ - Accept-Encoding
966
+ x-tumblr-usec:
967
+ - D=280140
968
+ content-type:
969
+ - text/html; charset=UTF-8
970
+ content-length:
971
+ - "76493"
972
+ date:
973
+ - Tue, 28 Sep 2010 02:48:31 GMT
974
+ x-varnish:
975
+ - 2091019092 2090996497
976
+ age:
977
+ - "15"
978
+ via:
979
+ - 1.1 varnish
980
+ connection:
981
+ - close
982
+ body: "<!DOCTYPE html PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\"\r\n \"http://www.w3.org/TR/html4/loose.dtd\">\r\n\
983
+ \r\n\
984
+ <html lang=\"en\">\r\n\
985
+ <head>\r\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n <title>Tumblr Staff</title>\r\n <meta name=\"description\" content=\"The official feed from the people behind Tumblr. Follow us for the latest development updates, features, community spotlights, notices, events, tips, tutorials, hacks, meetups, themes, antics,...\" />\r\n <meta name=\"author\" content=\"Peter Vidani\">\r\n <meta name=\"viewport\" content=\"width=1000\"/> <!-- iPhone -->\r\n <link rel=\"shortcut icon\" href=\"http://28.media.tumblr.com/avatar_013241641371_16.png\" />\r\n <link rel=\"alternate\" type=\"application/rss+xml\" href=\"http://staff.tumblr.com/rss\" />\r\n <style type=\"text/css\">\r\n body {\r\n color: #595959;\r\n line-height: 20px;\r\n font-family: 'Helvetica Neue', Helvetica, Arial, 'Geneva', sans-serif;\r\n background: url(http://static.tumblr.com/thpaaos/uGckn51cc/bg-paper6.png) #F3F3F3 repeat;\r\n margin: 0;\r\n padding: 0;\r\n }\r\n\
986
+ \r\n a {\r\n color: #595959;\r\n text-decoration: underline;\r\n }\r\n\
987
+ \r\n :active, :focus, a img { border-width: 0px; outline: 0px; }\r\n\
988
+ \r\n #header {\r\n height: 160px;\r\n background: url(http://static.tumblr.com/thpaaos/zbTkmktqm/header-bg_copy.png) bottom repeat-x;\r\n margin: auto;\r\n position: relative;\r\n }\r\n\
989
+ \r\n #header .top {\r\n height: 95px;\r\n text-align: center;\r\n padding: 35px 0 0 0;\r\n }\r\n\
990
+ \r\n #container {\r\n width: 950px;\r\n margin: 50px auto;\r\n position: relative;\r\n z-index: 2;\r\n overflow: hidden;\r\n }\r\n\
991
+ \r\n #container #right {\r\n width: 222px;\r\n float: right;\r\n }\r\n \r\n #container #right .clear { clear: both; }\r\n \r\n #container #right .signup {\r\n width: 174px;\r\n background: #fdfdfd;\r\n border: 1px solid #E9E9E9;\r\n border-radius: 10px;\r\n -moz-border-radius: 10px;\r\n -webkit-border-radius: 10px;\r\n margin: 0 0 30px 0;\r\n padding: 12px 23px 23px 23px;\r\n }\r\n \r\n #container #right .signup form { padding: 0 0 0 3px; }\r\n \r\n #container #right .signup form .text_field {\r\n width: 155px;\r\n height: 16px;\r\n color: #595959;\r\n font-size: 12px;\r\n border: 1px solid #d0d0d0;\r\n background: url(http://static.tumblr.com/thpaaos/B5nkqc6e1/signup_input-bg.png) repeat-x top;\r\n margin: 10px 0 0 0;\r\n padding: 5px;\r\n position: relative;\r\n }\r\n \r\n #container #right .signup form .text_field:first-child {\r\n margin: 18px 0 0 0;\r\n }\r\n \r\n #container #right .signup form .text_field:focus {\r\n background-position: bottom;\r\n }\r\n \r\n #container #right .signup form .label {\r\n font-size: 12px;\r\n font-weight: bold;\r\n font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;\r\n }\r\n \r\n #container #right .signup form .label span {\r\n font-size: 10px;\r\n font-weight: normal;\r\n }\r\n \r\n #container #right .signup form .signup_button {\r\n width: 166px;\r\n height: 37px;\r\n color: #595959;\r\n font-size: 15px;\r\n font-weight: bold;\r\n font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;\r\n background: url(http://static.tumblr.com/thpaaos/8pxkqca3c/signup_button.png) top;\r\n border-width: 0px;\r\n margin: 18px 0 0 0;\r\n }\r\n \r\n #container #right .signup form .signup_button:hover {\r\n cursor: pointer;\r\n }\r\n \r\n #container #right .signup form .signup_button:active {\r\n background-position: bottom;\r\n padding: 1px 0 0 0;\r\n }\r\n\
992
+ \r\n #container #right a.reasons {\r\n width: 211px;\r\n height: 186px;\r\n background: url(http://static.tumblr.com/thpaaos/Ex8kzwtmh/postit_30.png) no-repeat;\r\n margin: 0 0 24px 3px;\r\n display: block;\r\n }\r\n\
993
+ \r\n #container #right .description {\r\n font-size: 14px;\r\n text-align: center;\r\n margin: 0 0 27px 0;\r\n }\r\n \r\n #container #right a.weheart {\r\n width: 189px;\r\n height: 79px;\r\n font-size: 12px;\r\n font-weight: bold;\r\n text-decoration: none;\r\n background: url('http://static.tumblr.com/thpaaos/V2fkypsnw/weheart.png') left center no-repeat;\r\n margin: 0 0 35px 29px;\r\n display: block\r\n }\r\n\
994
+ \r\n #container #right .title {\r\n width: 190px;\r\n height: 17px;\r\n margin: 0 0 15px 0;\r\n overflow: hidden;\r\n }\r\n \r\n #container #right .signup .title {\r\n width: 168px;\r\n padding: 0 0 0 12px;\r\n }\r\n\
995
+ \r\n #container #right .title h4 {\r\n width: 100px;\r\n font-size: 12px;\r\n font-family: Georgia, 'Times New Roman', Times, serif;\r\n text-align: center;\r\n text-transform: uppercase;\r\n margin: auto;\r\n display: block;\r\n float: left;\r\n }\r\n \r\n #container #right .signup .title h4 {\r\n width: 88px;\r\n }\r\n\
996
+ \r\n #container #right .title .decorLeft {\r\n width: 45px;\r\n height: 17px;\r\n background: url(http://static.tumblr.com/thpaaos/Myqkm6ad1/right-h4-decor.png) repeat-x center;\r\n float: left;\r\n }\r\n \r\n #container #right .signup .title .decorLeft {\r\n width: 40px;\r\n background-image: url(http://static.tumblr.com/thpaaos/ytnkqc5wt/signup_decor.png);\r\n }\r\n\
997
+ \r\n #container #right .title .decorRight {\r\n width: 45px;\r\n height: 17px;\r\n background: url(http://static.tumblr.com/thpaaos/Myqkm6ad1/right-h4-decor.png) repeat-x center;\r\n float: right;\r\n }\r\n \r\n #container #right .signup .title .decorRight {\r\n width: 40px;\r\n background-image: url(http://static.tumblr.com/thpaaos/ytnkqc5wt/signup_decor.png);\r\n }\r\n\
998
+ \r\n #container #right ul.crew {\r\n width: 210px;\r\n font-family: Georgia, 'Times New Roman', Times, serif;\r\n list-style-type: none;\r\n text-align: right;\r\n margin: 0 0 37px 0;\r\n padding: 0;\r\n float: right;\r\n }\r\n\
999
+ \r\n #container #right ul.crew a {\r\n text-decoration: none;\r\n }\r\n\
1000
+ \r\n #container #right ul.crew a:hover img.portrait {\r\n border-color: #CDCEC5;\r\n }\r\n\
1001
+ \r\n #container #right ul.crew li {\r\n height: 36px;\r\n font-size: 14px;\r\n margin: 0 0 10px 0;\r\n clear: both;\r\n }\r\n\
1002
+ \r\n #container #right ul.crew li a.add {\r\n width: 16px;\r\n height: 16px;\r\n background-image: url(http://static.tumblr.com/thpaaos/jcikmiuiy/sprite-add-crew.png);\r\n background-position: top left;\r\n background-repeat: no-repeat;\r\n margin: 10px 10px 0 0;\r\n display: none;\r\n float: right;\r\n }\r\n\
1003
+ \r\n #container #right ul.crew li:hover a.add {\r\n display: block;\r\n }\r\n\
1004
+ \r\n #container #right ul.crew li a.add:active {\r\n width: 16px;\r\n height: 16px;\r\n background-image: url(http://static.tumblr.com/thpaaos/jcikmiuiy/sprite-add-crew.png);\r\n background-position: bottom left;\r\n background-repeat: no-repeat;\r\n }\r\n\
1005
+ \r\n #container #right ul.crew li .name {\r\n margin: 8px 0 0 0;\r\n float: right;\r\n }\r\n\
1006
+ \r\n #container #right ul.crew img.portrait {\r\n width: 32px;\r\n height: 32px;\r\n background: #FFFFFF;\r\n border: 2px solid #D8D9D0;\r\n margin: 0 0 0 20px;\r\n padding: 1px;\r\n display: block;\r\n float: right;\r\n }\r\n\
1007
+ \r\n #container #right ul.tags {\r\n width: 210px;\r\n list-style-type: none;\r\n margin: 0 0 27px -20px;\r\n padding: 0;\r\n display: block;\r\n }\r\n\
1008
+ \r\n #container #right ul.tags li {\r\n float: right;\r\n display: block;\r\n }\r\n\
1009
+ \r\n #container #right ul.tags li a.tag {\r\n height: 24px;\r\n color: #464646;\r\n font-size: 10px;\r\n letter-spacing: 1px;\r\n text-transform: uppercase;\r\n text-decoration: none;\r\n background-image: url(http://static.tumblr.com/thpaaos/yTHkmivka/sprite-tag_copy.png);\r\n background-position: top left;\r\n background-repeat: no-repeat;\r\n display: block;\r\n margin: 0 0 6px 20px;\r\n padding: 3px 0 0 13px;\r\n position: relative;\r\n float: left;\r\n display: block;\r\n }\r\n\
1010
+ \r\n #container #right ul.tags li a.tag .right {\r\n height: 27px;\r\n width: 13px;\r\n background-image: url(http://static.tumblr.com/thpaaos/yTHkmivka/sprite-tag_copy.png);\r\n background-position: top right;\r\n background-repeat: no-repeat;\r\n position: absolute;\r\n top: 0;\r\n right: -13px;\r\n float: right;\r\n }\r\n\
1011
+ \r\n #container #right ul.tags li a.tag:active {\r\n line-height: 22px;\r\n background-position: bottom left;\r\n }\r\n\
1012
+ \r\n #container #right ul.tags li a.tag:active .right {\r\n background-position: bottom right;\r\n }\r\n\
1013
+ \r\n #container #right form.search {\r\n width: 190px;\r\n background: #F3F3F3;\r\n margin: 5px 0 0 0;\r\n float: left;\r\n }\r\n\
1014
+ \r\n #container #right form.search input {\r\n height: 27px;\r\n border-width: 0;\r\n }\r\n\
1015
+ \r\n #container #right form.search input.text {\r\n width: 150px;\r\n height: 22px;\r\n color: #7D7D7D;\r\n font-size: 12px;\r\n background-color: transparent;\r\n background-image: url(http://static.tumblr.com/thpaaos/8lQkl1p90/sprite-search.png);\r\n background-repeat: no-repeat;\r\n background-position: top left;\r\n padding: 5px 0 0 13px;\r\n float: left;\r\n }\r\n\
1016
+ \r\n #container #right form.search input.search {\r\n width: 27px;\r\n background-image: url(http://static.tumblr.com/thpaaos/8lQkl1p90/sprite-search.png);\r\n background-repeat: no-repeat;\r\n background-position: top right;\r\n background-color: transparent;\r\n border-width: 0px;\r\n float: left;\r\n }\r\n\
1017
+ \r\n #container #right form.search input.search:hover {\r\n cursor: pointer;\r\n }\r\n\
1018
+ \r\n input:focus { outline-width: 0px; }\r\n\
1019
+ \r\n #container #right .divider {\r\n width: 190px;\r\n height: 2px;\r\n background: #E6E6E6;\r\n margin: 27px 0 27px 20px;\r\n }\r\n\
1020
+ \r\n #container #right a.follow {\r\n width: 188px;\r\n height: 50px;\r\n background-image: url(http://static.tumblr.com/thpaaos/Y7ikmixie/sprite-follow.png);\r\n background-position: top left;\r\n background-repeat: no-repeat;\r\n margin: 0 0 10px 2px;\r\n display: block;\r\n float: right;\r\n }\r\n\
1021
+ \r\n #container #right a.follow:active {\r\n background-position: bottom left;\r\n }\r\n\
1022
+ \r\n #container #right a.twitter {\r\n width: 90px;\r\n height: 20px;\r\n font-size: 11px;\r\n font-family: Georgia, 'Times New Roman', Times, serif;\r\n text-align: center;\r\n text-decoration: none;\r\n background: url(http://static.tumblr.com/thpaaos/rYmkmiy3n/twitter.png) 0px 3px no-repeat;\r\n display: block;\r\n margin: 0 0 0 60px;\r\n padding: 0 0 0 27px;\r\n clear: both;\r\n }\r\n\
1023
+ \r\n #container #right a.twitter:hover {\r\n text-decoration: underline;\r\n }\r\n\
1024
+ \r\n #container .space {\r\n height: 60px;\r\n clear: both;\r\n }\r\n\
1025
+ \r\n #container #main {\r\n width: 681px;\r\n margin: 0 45px 0 0;\r\n display: block;\r\n float: left;\r\n }\r\n\
1026
+ \r\n #container #main li.post {\r\n margin: 0 0 60px 0;\r\n overflow: hidden;\r\n }\r\n\
1027
+ \r\n #container #main li.post .left {\r\n width: 100px;\r\n font-family: Georgia, 'Times New Roman', Times, serif;\r\n margin: 0 30px 0 0;\r\n float: left;\r\n }\r\n\
1028
+ \r\n #container #main li.post .left .card {\r\n height: 102px;\r\n background: url(http://static.tumblr.com/thpaaos/p0pkmkwma/card.png);\r\n padding: 12px 9px 11px 13px;\r\n }\r\n\
1029
+ \r\n #container #main li.post .left .card img.portrait {\r\n width: 55px;\r\n height: 55px;\r\n border: 2px solid #D8D9D0;\r\n padding: 1px;\r\n }\r\n\
1030
+ \r\n #container #main li.post .left .card a.likes {\r\n color: #4D4D4D;\r\n font-size: 18px;\r\n text-decoration: none;\r\n text-align: center;\r\n margin: 18px 0 0 -18px;\r\n display: block;\r\n position: relative;\r\n }\r\n\
1031
+ \r\n #container #main li.post .left .card .likes img.heart {\r\n position: relative;\r\n bottom: -5px;\r\n }\r\n\
1032
+ \r\n #container #main li.post .left .date {\r\n font-size: 11px;\r\n text-align: center;\r\n padding: 2px 11px 0 0;\r\n }\r\n\
1033
+ \r\n #container #main li.post .left .date a {\r\n text-decoration: none;\r\n }\r\n\
1034
+ \r\n #container #main li.post .left .date a:hover {\r\n text-decoration: underline;\r\n }\r\n\
1035
+ \r\n #container #main li.post .right {\r\n width: 551px;\r\n float:left;\r\n }\r\n\
1036
+ \r\n #container #main li.post .right .type {\r\n margin: 0 0 10px 0;\r\n position: relative;\r\n }\r\n\
1037
+ \r\n #container #main li.post .right .type img,\r\n #container #main li.post .right .type .video,\r\n #container #main li.post .right .caption img {\r\n background: #FFFFFF;\r\n border: 2px solid #D8D9D0;\r\n padding: 2px;\r\n margin-left: -3px;\r\n }\r\n\
1038
+ \r\n #container #main li.post .right .type .video {\r\n width: 500px;\r\n }\r\n\
1039
+ \r\n #container #main li.post .right .type .audio_player {\r\n width: 207px;\r\n background: #FFFFFF;\r\n border: 2px solid #D8D9D0;\r\n padding: 2px;\r\n margin-left: -3px;\r\n }\r\n\
1040
+ \r\n #container #main li.post .right .caption {\r\n width: 500px;\r\n font-size: 14px;\r\n }\r\n\
1041
+ \r\n #container #main li.post .right .caption code, pre {\r\n background-color: #EAEAEA;\r\n padding: 3px 9px;\r\n font-size: 12px;\r\n overflow-x: auto;\r\n }\r\n\
1042
+ \r\n #container #main li.post .right .caption blockquote {\r\n margin-left: 0px;\r\n border-left: 2px solid #D7D7D7;\r\n padding-left: 30px;\r\n }\r\n \r\n\
1043
+ \r\n #container #main li.post .right h2 {\r\n font-size: 17px;\r\n line-height: 18px;\r\n font-weight: normal;\r\n font-family: Georgia, 'Times New Roman', Times, serif;\r\n }\r\n\
1044
+ \r\n #container #main li.post .right h2.quote {\r\n font-size: 22px;\r\n line-height: 27px;\r\n margin-top: 0px;\r\n }\r\n\
1045
+ \r\n #container #main li.post .right h2 a.link {\r\n color: #595959;\r\n }\r\n\
1046
+ \r\n #container #main li.post .right a.title {\r\n color: #595959;\r\n font-size: 22px;\r\n line-height: 24px;\r\n text-decoration: none;\r\n font-family: Georgia, 'Times New Roman', Times, serif;\r\n }\r\n\
1047
+ \r\n\
1048
+ \r\n /***** event types *****/\r\n #container #main li.post .right .type .top {\r\n width: 551px;\r\n height: 27px;\r\n background: url(http://static.tumblr.com/thpaaos/mvSkm6ae6/paper-top.png) no-repeat;\r\n position: absolute;\r\n left: 0;\r\n top: -27px;\r\n display: none;\r\n }\r\n\
1049
+ \r\n #container #main li.post .right .type .bottom {\r\n width: 551px;\r\n height: 24px;\r\n background: url(http://static.tumblr.com/thpaaos/nRUkm6aez/paper-bottom.png) bottom no-repeat;\r\n position: absolute;\r\n left: 0;\r\n bottom: -24px;\r\n display: none;\r\n }\r\n #container #main li.post .right .type a.link {\r\n color: #50504D;\r\n text-decoration: none;\r\n background: url(http://static.tumblr.com/thpaaos/6BBknuvds/highlight.png);\r\n padding: 3px 10px;\r\n }\r\n #container #main li.post .right .type.events h2,\r\n #container #main li.post .right .type.features h2 {\r\n font-size: 22px;\r\n line-height: 30px;\r\n margin: 0;\r\n padding: 0;\r\n }\r\n #container #main li.post .right .type.events h2,\r\n #container #main li.post .right .type.features h2 {\r\n margin: 2px 0 0 0;\r\n }\r\n #container #main li.post .right .type.events,\r\n #container #main li.post .right .type.features,\r\n #container #main li.post .right .type.link {\r\n font-size: 22px;\r\n font-family: Georgia, 'Times New Roman', Times, serif;\r\n line-height: 30px;\r\n background: url(http://static.tumblr.com/thpaaos/57pkm6afo/paper-middle.png) repeat-y;\r\n margin: 27px auto 50px auto;\r\n padding: 3px 65px 0px 24px;\r\n position: relative;\r\n }\r\n #container #main li.post .right .type.link.tumblr_tuesday .bottom {\r\n display: none !important;\r\n }\r\n #cotnaine #main li.post .right .type.link.tumblr_tuesday .tumblrTuesdayBottom {\r\n display: block !important;\r\n }\r\n #container #main li.post .right .type.link.tumblr_tuesday a.link {\r\n background: transparent;\r\n padding: 0;\r\n }\r\n #container #main li.post .right .tumblr_tuesday blockquote {\r\n border-width: 0px;\r\n padding-top: 10px !important;\r\n padding-left: 0px;\r\n margin-bottom: 0px !important;\r\n }\r\n #container #main li.post .right .tumblr_tuesday blockquote p {\r\n font-style: italic;\r\n border-left: 2px solid #787878;\r\n padding-bottom: 0px !important;\r\n padding-left: 20px;\r\n margin-bottom: 0px !important;\r\n }\r\n #container #main li.post .right .type.text {\r\n line-height: 30px;\r\n background: none;\r\n margin: auto;\r\n padding: 0 65px 0 0;\r\n }\r\n #container #main li.post .right .type.events img,\r\n #container #main li.post .right .type.features img {\r\n margin-left: -3px;\r\n }\r\n #container #main li.post .right .type.events.photo .tape,\r\n #container #main li.post .right .type.features.photo .tape {\r\n position: absolute;\r\n z-index: 10;\r\n }\r\n #container #main li.post .right .type.events.photo .tape.top,\r\n #container #main li.post .right .type.features.photo .tape.top {\r\n width: 141px;\r\n height: 101px;\r\n background: url(http://static.tumblr.com/thpaaos/dCHknynl4/post-tape-3-top.png) no-repeat;\r\n top: -25px;\r\n left: 2px;\r\n }\r\n #container #main li.post .right .type.events.photo .tape.bottom,\r\n #container #main li.post .right .type.features.photo .tape.bottom {\r\n width: 147px;\r\n height: 87px;\r\n background: url(http://static.tumblr.com/thpaaos/eWaknynnp/post-tape-3-bottom.png) no-repeat;\r\n bottom: -18px;\r\n left: 402px;\r\n }\r\n #container #main li.post .right .caption.events,\r\n #container #main li.post .right .caption.features,\r\n #container #main li.post .right .caption.link {\r\n padding: 0 24px;\r\n }\r\n #container #main li.post .right .caption.text {\r\n width: 420px;\r\n margin: 10px 0 0 0;\r\n padding: 0 80px 0 0;\r\n }\r\n #container #main li.post .right .type .sticker {\r\n width: 47px;\r\n height: 46px;\r\n position: absolute;\r\n top: -18px;\r\n left: 495px;\r\n z-index: 11;\r\n display: none;\r\n }\r\n #container #main li.post .right .type.text .sticker {\r\n top: 0;\r\n }\r\n #container #main li.post .right .type.features .sticker {\r\n background: url(http://static.tumblr.com/thpaaos/r7fkm6ah1/new.png) no-repeat;\r\n }\r\n #container #main li.post .right .type.events .sticker {\r\n background: url(http://static.tumblr.com/thpaaos/SjQkmkw2m/new-event.png) no-repeat;\r\n }\r\n #container #main li.post .right .type.features_sticker .sticker {\r\n background: url(http://static.tumblr.com/thpaaos/r7fkm6ah1/new.png) no-repeat;\r\n top: 4px;\r\n left: 4px;\r\n z-index: 11;\r\n }\r\n #container #main li.post .right .type.events_sticker .sticker {\r\n background: url(http://static.tumblr.com/thpaaos/SjQkmkw2m/new-event.png) no-repeat;\r\n top: 4px;\r\n left: 4px;\r\n z-index: 11;\r\n }\r\n #container #main li.post .right .type.press .sticker {\r\n background: url(http://static.tumblr.com/thpaaos/wMGl5o72i/press_sticker.png) no-repeat;\r\n top: -6px;\r\n left: 447px;\r\n z-index: 11;\r\n }\r\n #container #main li.post .right .type.features span.arrow {\r\n display: none;\r\n }\r\n #container #main li.post .right .type.tumblr_tuesday {\r\n width: 471px;\r\n height: 24px;\r\n background: url(http://static.tumblr.com/thpaaos/lMKkon6x2/tt-top.png) left top no-repeat !important;\r\n padding: 53px 0 0 80px !important;\r\n margin: 0 0 0 -1px !important;\r\n }\r\n #container #main li.post .right .caption.tumblr_tuesday {\r\n width: 431px;\r\n line-height: 23px;\r\n background: url(http://static.tumblr.com/thpaaos/lFFkon6xb/tt-middle.png) repeat-y top left;\r\n padding: 28px 40px 0px 80px;\r\n margin: 0;\r\n clear: both;\r\n }\r\n #container #main li.post .right .caption.tumblr_tuesday p {\r\n clear: both;\r\n margin-top: 22px;\r\n }\r\n #container #main li.post .right .caption.tumblr_tuesday p:first-child {\r\n margin-top: 0;\r\n }\r\n #container #main li.post .right .caption.tumblr_tuesday p:last-child {\r\n padding-bottom: 10px;\r\n }\r\n #container #main li.post .right .caption.tumblr_tuesday li {\r\n padding-top: 9px;\r\n }\r\n #container #main li.post .right .caption.tumblr_tuesday li p {\r\n margin: 0;\r\n padding: 0;\r\n }\r\n #container #main li.post .right .caption p.answer_form_container {\r\n width: 410px;\r\n height: 107px;\r\n margin: 0 0 0 -80px;\r\n padding: 20px 70px 0 90px;\r\n display: block;\r\n }\r\n #container #main li.post .right.tumblr_tuesday .tumblrTuesdayBottom {\r\n width: 549px;\r\n height: 25px;\r\n background: url(http://static.tumblr.com/thpaaos/mOKkoohfd/tt-bottom.png);\r\n position: relative;\r\n bottom: 14px;\r\n left: -1px;\r\n z-index: 5;\r\n }\r\n \r\n #container #main li.post .right.tumblr_tuesday .type.tumblr_tuesday.photo img {\r\n max-width: 431px;\r\n margin-top: 2px;\r\n margin-bottom: 22px;\r\n display: block;\r\n clear: both;\r\n }\r\n \r\n #container #main li.post img.second { display: none; }\r\n \r\n #container #main li.post img.first.not_for_tumblr_tuesday { display: none !important; }\r\n #container #main li.post img.second.only_for_tumblr_tuesday { \r\n max-width: 431px;\r\n margin-top: -5px;\r\n margin-bottom: 11px;\r\n display: block;\r\n clear: both;\r\n }\r\n\
1050
+ \r\n #container #main li.post .right.press {\r\n width: 487px;\r\n background: url(http://static.tumblr.com/thpaaos/6Wdl5o551/press_middle.png) repeat-y top left;\r\n margin: 6px 0;\r\n padding: 20px 30px;\r\n }\r\n \r\n #container #main li.post .right.press .type.press {\r\n position: relative;\r\n }\r\n \r\n #container #main li.post .right.press .type.press span.text_title {\r\n display: none !important;\r\n } \r\n \r\n #container #main li.post .right .type img.speaking_of {\r\n display: none;\r\n } \r\n \r\n #container #main li.post .right.press .type.press img.speaking_of {\r\n display: inline !important;\r\n border-width: 0px;\r\n }\r\n \r\n #container #main li.post .right.press .press_top {\r\n width: 547px;\r\n height: 6px;\r\n background: url(http://static.tumblr.com/thpaaos/OBZl5o55i/press_top.png) left top no-repeat !important;\r\n position: absolute;\r\n top: -26px;\r\n left: -30px;\r\n display: none;\r\n }\r\n \r\n #container #main li.post .right .caption.press {\r\n width: 487px;\r\n line-height: 23px;\r\n margin: 0 !important;\r\n clear: both;\r\n }\r\n\
1051
+ \r\n #container #main li.post .right.press .press_bottom {\r\n width: 547px;\r\n height: 6px;\r\n background: url('http://static.tumblr.com/thpaaos/TNjl5o4z0/press_bottom.png');\r\n position: relative;\r\n left: -30px;\r\n bottom: -26px;\r\n z-index: 5;\r\n }\r\n \r\n #container #main li.post .right .type.events .top,\r\n #container #main li.post .right .type.features .top,\r\n #container #main li.post .right .type.events .bottom,\r\n #container #main li.post .right .type.features .bottom,\r\n #container #main li.post .right .type.link .top,\r\n #container #main li.post .right .type.link .bottom,\r\n #container #main li.post .right .type.features .sticker,\r\n #container #main li.post .right .type.events .sticker,\r\n #container #main li.post .right .type.features_sticker .sticker,\r\n #container #main li.post .right .type.events_sticker .sticker,\r\n #container #main li.post .right .type.press .press_top,\r\n #container #main li.post .right .type.press .press_bottom,\r\n #container #main li.post .right .type.press .sticker {\r\n display: block !important;\r\n }\r\n /**/\r\n\
1052
+ \r\n #footer {\r\n width: 551px;\r\n margin: 0 0 0 130px;\r\n overflow: hidden;\r\n }\r\n\
1053
+ \r\n #footer #pagination {\r\n width: 129px;\r\n height: 58px;\r\n background: url(http://static.tumblr.com/thpaaos/Up0km6abu/sprite-pagination.png) top left no-repeat;\r\n float: right;\r\n }\r\n\
1054
+ \r\n #footer #pagination a.button {\r\n width: 58px;\r\n height: 58px;\r\n background-image: url(http://static.tumblr.com/thpaaos/Up0km6abu/sprite-pagination.png);\r\n background-repeat: no-repeat;\r\n display: block;\r\n }\r\n #footer #pagination a.button.left { background-position: bottom left; float: left; }\r\n #footer #pagination a.button.right { background-position: bottom right; float: right; }\r\n\
1055
+ \r\n #footer #copyright {\r\n height: 28px;\r\n color: #7C7C7C;\r\n font-size: 10px;\r\n line-height: 13px;\r\n background: #FFFFFF;\r\n border: 3px solid #DDDDDD;\r\n border-radius: 10px;\r\n -moz-border-radius: 10px;\r\n -webkit-border-radius: 10px;\r\n padding: 12px 15px;\r\n float: left;\r\n }\r\n\
1056
+ \r\n #footer a.back_to_top {\r\n width: 35px;\r\n height: 35px;\r\n background: url(http://static.tumblr.com/thpaaos/bMZkoqhdn/back-to-top.png) no-repeat;\r\n margin: 11px 13px 0 0;\r\n display: block;\r\n float: right;\r\n }\r\n\
1057
+ \r\n .landing {\r\n background: #FFFFFF;\r\n border: 3px solid #DDDDDD;\r\n border-radius: 10px;\r\n -moz-border-radius: 10px;\r\n -webkit-border-radius: 10px;\r\n padding: 7px 11px;\r\n margin: 0 0 30px 130px;\r\n }\r\n\
1058
+ \r\n .landing h2 {\r\n font-size: 18px;\r\n margin: 0;\r\n padding: 0;\r\n }\r\n\
1059
+ \r\n ol.notes {\r\n width: 551px;\r\n margin: 25px 0 60px 130px;\r\n padding: 0;\r\n list-style-type: none;\r\n color: #777;\r\n font-weight: bold;\r\n font-size: 12px;\r\n }\r\n\
1060
+ \r\n ol.notes li.note {\r\n margin: 0 0 2px 0;\r\n padding: 10px 43px 10px 10px;\r\n }\r\n\
1061
+ \r\n ol.notes li.note a {\r\n text-decoration: none;\r\n border-bottom: none;\r\n color: #4b4b4b;\r\n }\r\n \r\n ol.notes li.note {\r\n background-color: #EAEAEA;\r\n }\r\n \r\n ol.notes li.note img {\r\n margin: 0 10px -3px 0;\r\n }\r\n\
1062
+ \r\n ol.notes li.note.like {\r\n background: #EAEAEA url(http://static.tumblr.com/thpaaos/xXlkoomos/notes_like.png) top right no-repeat !important;\r\n }\r\n\
1063
+ \r\n ol.notes li.note.reblog {\r\n background: #EAEAEA url(http://static.tumblr.com/thpaaos/Pi9koovm1/notes_reblog.png) top right no-repeat !important;\r\n }\r\n\
1064
+ \r\n ol.notes li.note.answer {\r\n background: #EAEAEA url(http://static.tumblr.com/thpaaos/71skoomo7/notes_answer.png) top right no-repeat !important;\r\n }\r\n \r\n #container #disqus_thread #dsq-content #dsq-new-post.dsq-post-area h3,\r\n #container #disqus_thread #dsq-content #dsq-new-post.dsq-post-area .dsq-dc-logo,\r\n #container #disqus_thread #dsq-content td.dsq-request-user-name small,\r\n #container #disqus_thread #dsq-content td.dsq-request-user-stats,\r\n #container #disqus_thread #dsq-content .dsq-sharing-options,\r\n #container #disqus_thread #dsq-content .dsq-comments-title,\r\n #container #disqus_thread #dsq-content .dsq-options,\r\n #container #disqus_thread #dsq-content .dsq-thread-settings,\r\n #container #disqus_thread #dsq-content .dsq-comments-title,\r\n #container #disqus_thread #dsq-content .dsq-comments-title h3 {\r\n display: none;\r\n }\r\n\
1065
+ \r\n </style>\r\n\
1066
+ \t<script type=\"text/javascript\" language=\"javascript\" src=\"http://static.tumblr.com/thpaaos/Jbukoqid7/prototype.js\"></script>\r\n\
1067
+ \t<script type=\"text/javascript\" language=\"javascript\" src=\"http://static.tumblr.com/thpaaos/1fukoqidj/effects.js\"></script>\r\n </head>\r\n \r\n <body>\r\n <!--[if IE]><style type=\"text/css\">.tape { display: none !important; }</style><![endif]-->\r\n \r\n <div id=\"header\">\r\n <div class=\"top\">\r\n <a href=\"/\"><img src=\"http://static.tumblr.com/thpaaos/YnJkm6b8x/logo.png\"></a>\r\n </div>\r\n </div>\r\n\
1068
+ \r\n <div id=\"container\">\r\n <ul id=\"main\" style=\"padding: 0; list-style-type: none;\">\r\n \r\n\
1069
+ \r\n \r\n\
1070
+ \r\n \r\n <li class=\"post\">\r\n <div class=\"left\">\r\n <div class=\"card\">\r\n <a href=\"http://staff.tumblr.com/post/1161958822/name-soup-location-hoboken-nj-first-post-october\"><img src=\"http://30.media.tumblr.com/avatar_3e3c5e79e51f_96.png\" class=\"portrait\"></a>\r\n <a href=\"http://staff.tumblr.com/post/1161958822/name-soup-location-hoboken-nj-first-post-october\" class=\"likes\"><img src=\"http://static.tumblr.com/thpaaos/AZDkm6b99/heart.png\" class=\"heart\">&nbsp;601</a>\r\n </div><!-- div.card -->\r\n <div class=\"date\"><a href=\"http://staff.tumblr.com/post/1161958822/name-soup-location-hoboken-nj-first-post-october\">Sep 21st, 2010</a></div>\r\n </div><!-- div.left -->\r\n <div class=\"right tumblr_tuesday\">\r\n \r\n <div class=\"type tumblr_tuesday photo\">\r\n <div class=\"top\"></div>\r\n <div class=\"bottom\"></div>\r\n <div class=\"tape top\"></div>\r\n <div class=\"tape bottom\"></div>\r\n <div class=\"sticker\"></div>\r\n <a href=\"http://soupsoup.tumblr.com/\"><img src=\"http://30.media.tumblr.com/tumblr_l93ti8ZUme1qz8q0ho1_500.png\" class=\"first not_for_tumblr_tuesday\"></a>\r\n </div><!-- div.type -->\r\n \r\n <div class=\"caption tumblr_tuesday\">\r\n <a href=\"http://soupsoup.tumblr.com/\"><img src=\"http://30.media.tumblr.com/tumblr_l93ti8ZUme1qz8q0ho1_500.png\" class=\"second only_for_tumblr_tuesday\"></a>\r\n <p><strong>Name</strong> <a href=\"http://soupsoup.tumblr.com/\" title=\"Soup\">Soup</a><br/><strong>Location</strong> Hoboken, NJ<br/><strong>First Post</strong> October 2007</p>\n\n\
1071
+ <p>News-and-info-junkie Anthony De Rosa is on a mission to keep the masses informed about news, technology, politics, sports, entertainment, and more. As a one-man mass media machine, it&#8217;s easy to imagine that he sits in front of 17 monitors for at least 23 hours a day, constantly scanning the entire internet with vigilance for the latest breaking news. Sadly, I&#8217;m told that&#8217;s probably not true. In addition to running <em>Soup</em>, Anthony co-founded the hyperlocal <a href=\"http://www.neighborhoodr.com/\" title=\"Neighborhoodr : Your Neighborhood Blog\">Neighborhoodr.com</a> network, is editor of the <a href=\"http://sbnation.tumblr.com/\" title=\"SB Nation\">SB Nation Tumblr</a>, and founded the New York Mets blog <a href=\"http://HotFootBlog.com\" title=\"Hot Foot\">HotFootBlog.com</a>.</p>\n\n\
1072
+ <p>Also check out&#8230;</p>\n\n\
1073
+ <p><strong><a href=\"http://www.allnighter.org/\" title=\"All-Nighter for Haiti 2010\">All-Nighter for Haiti 2010</a></strong><br/>\n\
1074
+ This student-run event takes place October 15 in Miami and expects to raise at least $40,000 in donations to fight against poverty, hunger, and other inhumane suffering in Haiti.</p>\n\n\
1075
+ <p><strong><a href=\"http://sponsorshit.tumblr.com/\" title=\"Sponsorshit\">Sponsorshit</a></strong><br/>\n\
1076
+ Sponsorshit chronicles all the gratuitous displays of product placement found in movies and TV. I&#8217;m <a href=\"http://sponsorshit.tumblr.com/tagged/Pepsi\" title=\"Sponsorshit\">craving a Pepsi</a> right now for some reason.</p>\n\n\
1077
+ <p><strong><a href=\"http://twocoasttable.com/\" title=\"Two Coast Table\">Two Coast Table</a></strong><br/>\n\
1078
+ Meg &amp; Steven met at a Tumblr meetup in 2008, and today they run this engaging food blog from Portland and Boston, respectively.</p>\n\n\
1079
+ <p><em>See you next Tuesday!</em></p>\r\n </div><!-- div.caption -->\r\n <div class=\"tumblrTuesdayBottom\"></div>\r\n \r\n \r\n\
1080
+ \r\n \r\n\
1081
+ \r\n \r\n\
1082
+ \r\n \r\n\
1083
+ \r\n \r\n\
1084
+ \r\n \r\n </div><!-- div.right -->\r\n </li><!-- li.post -->\r\n\
1085
+ \r\n \r\n\
1086
+ \r\n \r\n\
1087
+ \r\n \r\n <li class=\"post\">\r\n <div class=\"left\">\r\n <div class=\"card\">\r\n <a href=\"http://staff.tumblr.com/post/1121340514/tumblr-tuesday-fashion-week-edition-new-york\"><img src=\"http://30.media.tumblr.com/avatar_3e3c5e79e51f_96.png\" class=\"portrait\"></a>\r\n <a href=\"http://staff.tumblr.com/post/1121340514/tumblr-tuesday-fashion-week-edition-new-york\" class=\"likes\"><img src=\"http://static.tumblr.com/thpaaos/AZDkm6b99/heart.png\" class=\"heart\">&nbsp;1501</a>\r\n </div><!-- div.card -->\r\n <div class=\"date\"><a href=\"http://staff.tumblr.com/post/1121340514/tumblr-tuesday-fashion-week-edition-new-york\">Sep 14th, 2010</a></div>\r\n </div><!-- div.left -->\r\n <div class=\"right tumblr_tuesday\">\r\n \r\n <div class=\"type tumblr_tuesday photo\">\r\n <div class=\"top\"></div>\r\n <div class=\"bottom\"></div>\r\n <div class=\"tape top\"></div>\r\n <div class=\"tape bottom\"></div>\r\n <div class=\"sticker\"></div>\r\n <img src=\"http://28.media.tumblr.com/tumblr_l8qquqHSMM1qz8q0ho1_r2_500.png\" class=\"first not_for_tumblr_tuesday\">\r\n </div><!-- div.type -->\r\n \r\n <div class=\"caption tumblr_tuesday\">\r\n <img src=\"http://28.media.tumblr.com/tumblr_l8qquqHSMM1qz8q0ho1_r2_500.png\" class=\"second only_for_tumblr_tuesday\">\r\n <p><strong>Tumblr Tuesday, Fashion Week Edition</strong><br/>\n\
1088
+ New York City, September 9-16, 2010</p>\n\n\
1089
+ <p>Fashionistas in extremely dangerous high heels are literally tripping all over the city as New York Fashion Week currently hits its, uh, stride. This glorious event happens twice every year and brings the world&#8217;s finest and most cutting-edge designers together to display their latest creations. What follows are some Tumblr blogs celebrating the haute couture, the pr\xC3\xAAt-\xC3\xA0-porter, and the falling models.</p>\n\n\
1090
+ <p><strong><a href=\"http://live.milkmade.com/\" title=\"Fashion Week Live\">Fashion Week Live</a></strong> from MAC &amp; Milk invites everyone to participate in this live cell phone project called &#8220;Phone Tag&#8221; to promote all of the week&#8217;s events.</p>\n\n\
1091
+ <p><strong><a href=\"http://www.sarazucker.com/\" title=\"farpitzs.\">Sara Zucker</a></strong> is an independent fashion blogger who works in marketing and is covering Fashion Week from inside the shows.</p>\n\n\
1092
+ <p><strong><a href=\"http://whatiwore.tumblr.com/\" title=\"What I Wore\">What I Wore</a></strong> is Jessica Quirk&#8217;s personal style blog. She takes pictures of herself nearly every day and loves vintage inspired clothes.</p>\n\n\
1093
+ <p><strong><a href=\"http://designersocial.tumblr.com/\" title=\"DesignerSocial\">DesignerSocial</a></strong> is a crew of designers, editors, and fashion peeps who throw down on the industry and each other.</p>\n\n\
1094
+ <p><strong><a href=\"http://lookbookdotnu.tumblr.com/\" title=\"LB TUMBLR\">LB TUMBLR</a></strong> is the official Tumblr blog for <a href=\"http://lookbook.nu/\" title=\"LOOKBOOK.nu: collective fashion consciousness.\">Lookbook.nu</a>, an international social experiment in style.</p>\n\n\
1095
+ <p><em>Visit the <a href=\"http://www.tumblr.com/directory/fashion\" title=\"Fashion | Tumblr\">Fashion category</a> of the Tumblr Directory to find many, many more!</em></p>\n\n\
1096
+ <p><small>Photos via <a href=\"http://www.styleite.com/media/model-falling-zac-posen/\" title=\"Model Falling - Zac Posen - PHOTOS | Styleite\">Styleite</a>.</small></p>\r\n </div><!-- div.caption -->\r\n <div class=\"tumblrTuesdayBottom\"></div>\r\n \r\n \r\n\
1097
+ \r\n \r\n\
1098
+ \r\n \r\n\
1099
+ \r\n \r\n\
1100
+ \r\n \r\n\
1101
+ \r\n \r\n </div><!-- div.right -->\r\n </li><!-- li.post -->\r\n\
1102
+ \r\n \r\n\
1103
+ \r\n \r\n\
1104
+ \r\n \r\n <li class=\"post\">\r\n <div class=\"left\">\r\n <div class=\"card\">\r\n <a href=\"http://staff.tumblr.com/post/1081885096/name-mills-baker-location-san-francisco-first-post\"><img src=\"http://30.media.tumblr.com/avatar_3e3c5e79e51f_96.png\" class=\"portrait\"></a>\r\n <a href=\"http://staff.tumblr.com/post/1081885096/name-mills-baker-location-san-francisco-first-post\" class=\"likes\"><img src=\"http://static.tumblr.com/thpaaos/AZDkm6b99/heart.png\" class=\"heart\">&nbsp;962</a>\r\n </div><!-- div.card -->\r\n <div class=\"date\"><a href=\"http://staff.tumblr.com/post/1081885096/name-mills-baker-location-san-francisco-first-post\">Sep 7th, 2010</a></div>\r\n </div><!-- div.left -->\r\n <div class=\"right tumblr_tuesday\">\r\n \r\n <div class=\"type tumblr_tuesday photo\">\r\n <div class=\"top\"></div>\r\n <div class=\"bottom\"></div>\r\n <div class=\"tape top\"></div>\r\n <div class=\"tape bottom\"></div>\r\n <div class=\"sticker\"></div>\r\n <a href=\"http://mills.tumblr.com/\"><img src=\"http://26.media.tumblr.com/tumblr_l8ds2no8RC1qz8q0ho1_500.png\" class=\"first not_for_tumblr_tuesday\"></a>\r\n </div><!-- div.type -->\r\n \r\n <div class=\"caption tumblr_tuesday\">\r\n <a href=\"http://mills.tumblr.com/\"><img src=\"http://26.media.tumblr.com/tumblr_l8ds2no8RC1qz8q0ho1_500.png\" class=\"second only_for_tumblr_tuesday\"></a>\r\n <p><strong>Name</strong> <a href=\"http://mills.tumblr.com/\" title=\"mills\">Mills Baker</a><br/><strong>Location</strong> San Francisco<br/><strong>First Post</strong> November 2007</p>\n\n\
1105
+ <p>Mills&#8217; writing inspires many adjectives &#8212; intelligent, insightful, and beautiful among them &#8212; but one quickly gets the feeling that, rather than compliments, his true reward is in helping readers notice something amusing about the world that they didn&#8217;t see before. Born in New Orleans, he attended Bard College and Louisiana State University. Mills recently moved to San Francisco, which he described &#8220;as though New Orleans and New York were smashed together and then placed just so in a beautiful expanse of nature.&#8221; He writes about what it&#8217;s like to be human &#8212; love, art, culture, mental illness, philosophy, and memory, among other topics. He has two awesome dogs named Bayou and Five and a girlfriend he met on Tumblr.</p>\n\n\
1106
+ <p>Also check out&#8230;</p>\n\n\
1107
+ <p><strong><a href=\"http://njwight.tumblr.com/\" title=\"Wild! Art\">Wild! Art</a></strong><br/>\n\
1108
+ This former CEO left a career in the technology sector to spend 10 weeks traveling through Southern Africa, taking incredible photographs of over 100 species.</p>\n\n\
1109
+ <p><strong><a href=\"http://foodspotting.tumblr.com/\" title=\"Spotted\">Foodspotting: Spotted</a></strong><br/>\n\
1110
+ The official blog of <a href=\"http://www.foodspotting.com/\" title=\"Foodspotting\">Foodspotting</a>, a visual guide to finding and sharing food recommendations.</p>\n\n\
1111
+ <p><strong><a href=\"http://hoodinternet.tumblr.com/\" title=\"The Hood Internet\">The Hood Internet</a></strong><br/>\n\
1112
+ This Chicago-based duo mashes up indie, pop, rap, and R&amp;B into sweet-ass mixtapes which both sound quite nice and also don&#8217;t pollute the environment.</p>\n\n\
1113
+ <p><em>See you next Tuesday!</em></p>\r\n </div><!-- div.caption -->\r\n <div class=\"tumblrTuesdayBottom\"></div>\r\n \r\n \r\n\
1114
+ \r\n \r\n\
1115
+ \r\n \r\n\
1116
+ \r\n \r\n\
1117
+ \r\n \r\n\
1118
+ \r\n \r\n </div><!-- div.right -->\r\n </li><!-- li.post -->\r\n\
1119
+ \r\n \r\n\
1120
+ \r\n \r\n\
1121
+ \r\n \r\n <li class=\"post\">\r\n <div class=\"left\">\r\n <div class=\"card\">\r\n <a href=\"http://staff.tumblr.com/post/1059624418/content-attribution\"><img src=\"http://26.media.tumblr.com/avatar_a963092d964b_96.png\" class=\"portrait\"></a>\r\n <a href=\"http://staff.tumblr.com/post/1059624418/content-attribution\" class=\"likes\"><img src=\"http://static.tumblr.com/thpaaos/AZDkm6b99/heart.png\" class=\"heart\">&nbsp;4565</a>\r\n </div><!-- div.card -->\r\n <div class=\"date\"><a href=\"http://staff.tumblr.com/post/1059624418/content-attribution\">Sep 3rd, 2010</a></div>\r\n </div><!-- div.left -->\r\n <div class=\"right \">\r\n \r\n\
1122
+ \r\n \r\n\
1123
+ \r\n \r\n \r\n <div class=\"type text\">\r\n <div class=\"top\"></div>\r\n <div class=\"bottom\"></div>\r\n <div class=\"press_top\"></div>\r\n <div class=\"sticker\"></div>\r\n <a href=\"http://staff.tumblr.com/post/1059624418/content-attribution\" class=\"title\"><span class=\"text_title\">Fixing Content Attribution (Once and For All) </span><img src=\"http://static.tumblr.com/thpaaos/Hf7l5o79s/speaking_of.png\" class=\"speaking_of\"></a>\r\n \r\n </div><!-- div.type -->\r\n <div class=\"caption text\">\r\n <p>Back when we launched two of Tumblr&#8217;s most unique features, reblogging and the <a href=\"http://www.tumblr.com/goodies\">Tumblr Bookmarklet</a>, we devised automatic &#8220;via&#8221; links in post captions as a simple solution for attribution. Three years later, this solution has gotten us pretty far. But it&#8217;s easy to spot some real shortcomings:</p>\n\
1124
+ <p>\xE2\x80\xA2 <strong>It&#8217;s hard.</strong> Even with the best intentions, it&#8217;s possible to mangle attribution when reblogging. Links get dropped, and credit gets buried under reblog links.</p>\n\
1125
+ <p>\xE2\x80\xA2 <strong>It&#8217;s ugly.</strong>\xC2\xA0Reblog links pile up. Credit is formatted as any permutation of url, author, blog name, and page title.</p>\n\
1126
+ <p>\xE2\x80\xA2 <strong>It doesn&#8217;t play well with content that doesn&#8217;t originate on Tumblr.</strong>\xC2\xA0If I share one of <a href=\"http://jacobbijani.com/\">Jacob</a>&#8217;s Flickr photos, the post notes attribute <em>me</em> as the original poster. And posters too frequently mistakenly attribute content to <em>re</em>-publishers (Digg, BuzzFeed, 9GAG) instead of creators.</p>\n\
1127
+ <p>We know we can do better. After weeks of testing, we&#8217;ve got an upgrade that fixes <strong>all</strong> of these issues:</p>\n\
1128
+ <p>Starting today, reblogging will no longer insert attribution into the content/caption of the post except to quote content added by the parent post.</p>\n\
1129
+ <p><img src=\"http://media.tumblr.com/tumblr_l86e7fXvp11qz4rgq.png\"/></p>\n\
1130
+ <p>This means we&#8217;re no longer cluttering up post content with reblog attribution. But where did it go? The Dashboard already attributes reblogs&#8217; parent blogs, and now it automatically attributes the source blog clearly and consistently:</p>\n\
1131
+ <p><img src=\"http://media.tumblr.com/tumblr_l86i0tbCt21qz4rgq.png\"/></p>\n\
1132
+ <p>But this feature has an even bigger win: When creating a post, you can now attribute its content (eg. a pull quote or image) to a source <em>outside of Tumblr</em>. That source gets clearly attributed <em>everywhere</em> that post is reblogged on Tumblr.\xC2\xA0</p>\n\
1133
+ <p><img src=\"http://media.tumblr.com/tumblr_l86el4ke4i1qz4rgq.png\"/></p>\n\
1134
+ <p>The bookmarklet will automatically set the source, confirming that the current page is in fact the content&#8217;s origin.</p>\n\
1135
+ <p><img src=\"http://media.tumblr.com/tumblr_l86iruzCuX1qz4rgq.png\"/></p>\n\
1136
+ <p>We even use graphics for some of our most popular sources:</p>\n\
1137
+ <p><img src=\"http://media.tumblr.com/tumblr_l86issGAvF1qz4rgq.png\"/></p>\n\
1138
+ <p>Dope. But how does this look on your blog? First, we&#8217;ve added new theme variables to include and style post <em>sources</em> on Tumblr blogs. We&#8217;ve started to include these by default, and will be adding them to all <a href=\"http://www.tumblr.com/themes/featured\">featured themes</a> over the next week. This is intended as a generic replacement for the more specific <code>RebloggedFrom</code> variables.</p>\n\
1139
+ <pre>{block:ContentSource}\n &lt;a href=\"{SourceURL}\"&gt;\n {lang:Source}:\n {block:SourceLogo}\n &lt;img src=\"{BlackLogoURL}\" width=\"{LogoWidth}\"\n height=\"{LogoHeight}\" alt=\"{SourceTitle}\" /&gt;\n {/block:SourceLogo}\n {block:NoSourceLogo}\n {SourceLink}\n {/block:NoSourceLogo}\n &lt;/a&gt;\n\
1140
+ {/block:ContentSource}</pre>\n\
1141
+ <p><img src=\"http://media.tumblr.com/tumblr_l86p4wti8t1qz51zr.png\"/></p>\n\
1142
+ <p>Alternately, any themes that don&#8217;t include this attribution will have it automatically inserted at the end of posts. That is unless attribution already appears in the post (which will be automatically detected).</p>\n\
1143
+ <p><img src=\"http://media.tumblr.com/tumblr_l86oclKCbw1qz4rgq.png\"/></p>\n\
1144
+ <p>There you have it. Parent and source posters always clearly attributed, even if they live outside Tumblr. And as always, the entire reblog lineage is preserved in the post notes.</p>\n\
1145
+ <p>We&#8217;ll be rolling these out over the next few hours. Please <a href=\"mailto:support@tumblr.com\">let us know</a> if you catch anything acting funny tonight!</p>\r\n </div><!-- div.caption -->\r\n <div class=\"tumblrTuesdayBottom\"></div>\r\n <div class=\"press_bottom\"></div>\r\n \r\n\
1146
+ \r\n \r\n\
1147
+ \r\n \r\n\
1148
+ \r\n \r\n </div><!-- div.right -->\r\n </li><!-- li.post -->\r\n\
1149
+ \r\n \r\n\
1150
+ \r\n \r\n\
1151
+ \r\n \r\n <li class=\"post\">\r\n <div class=\"left\">\r\n <div class=\"card\">\r\n <a href=\"http://staff.tumblr.com/post/1053345498/marc-lafountain\"><img src=\"http://30.media.tumblr.com/avatar_3e3c5e79e51f_96.png\" class=\"portrait\"></a>\r\n <a href=\"http://staff.tumblr.com/post/1053345498/marc-lafountain\" class=\"likes\"><img src=\"http://static.tumblr.com/thpaaos/AZDkm6b99/heart.png\" class=\"heart\">&nbsp;713</a>\r\n </div><!-- div.card -->\r\n <div class=\"date\"><a href=\"http://staff.tumblr.com/post/1053345498/marc-lafountain\">Sep 2nd, 2010</a></div>\r\n </div><!-- div.left -->\r\n <div class=\"right team\">\r\n \r\n <div class=\"type team photo\">\r\n <div class=\"top\"></div>\r\n <div class=\"bottom\"></div>\r\n <div class=\"tape top\"></div>\r\n <div class=\"tape bottom\"></div>\r\n <div class=\"sticker\"></div>\r\n <img src=\"http://28.media.tumblr.com/tumblr_l84ha9qi6d1qz8q0ho1_500.png\" class=\"first not_for_team\">\r\n </div><!-- div.type -->\r\n \r\n <div class=\"caption team\">\r\n <img src=\"http://28.media.tumblr.com/tumblr_l84ha9qi6d1qz8q0ho1_500.png\" class=\"second only_for_team\">\r\n <p><strong><a href=\"http://marclafountain.com/\" title=\"marclafountain.com\">Marc LaFountain</a></strong><br/>\n\
1152
+ Community Director<br/>\n\
1153
+ Richmond, Virginia</p>\n\n\
1154
+ <p>Marc gets email. A lot of email.</p>\n\n\
1155
+ <p>As Community Director, Marc manages Tumblr&#8217;s entire support infrastructure. From tackling general community issues to solving technical support requests, he&#8217;s personally read and responded to thousands upon thousands of email messages regarding browser cookies, forgotten passwords, and more.</p>\n\n\
1156
+ <p>Yet, Marc wants to emphasize that he is, in fact, an actual human being. You see, a common misconception he encounters is that he&#8217;s a fake persona we created to make Support more personable. Emails addressed to &#8220;Whoever Really Reads This&#8221; and &#8220;Marc, Yeah Right&#8221; are a surprisingly regular occurrence.</p>\n\n\
1157
+ <p>But after a rigorous interrogation and full-body scan, we can attest to him being a real human who is pleased to help with any of your Tumblr needs.</p>\n\n\
1158
+ <p>\xE2\x80\x9COne of the nice things about support work is the immediacy of the results. Someone couldn\xE2\x80\x99t log into Tumblr and now they can. Someone wasn&#8217;t sure how to do something, and now they know,\xE2\x80\x9D he says.</p>\n\n\
1159
+ <p>As for the future, Marc is orchestrating the expansion of Tumblr&#8217;s Support team to better serve our community as it grows over the coming months and years. We just passed 100k total customer service requests in our internal support system <em>today</em>. Here&#8217;s to 200k!</p>\n\n\
1160
+ <p><strong>Personal data</strong><br/>\n\
1161
+ He has a lovely wife named Francisca and two sometimes-lovely cats named Zora and Gracie.</p>\n\n\
1162
+ <p><strong>Favorite support email</strong><br/>\n\
1163
+ &#8220;How harmful is it swallow a small amount of nail polish remover?&#8221;</p>\n\n\
1164
+ <p><strong>Fun fact</strong><br/>\n\
1165
+ Marc was Tumblr&#8217;s third employee, hired after two emails and a phone call insisting he could respond to support emails faster than David. He was right.</p>\r\n </div><!-- div.caption -->\r\n <div class=\"tumblrTuesdayBottom\"></div>\r\n \r\n \r\n\
1166
+ \r\n \r\n\
1167
+ \r\n \r\n\
1168
+ \r\n \r\n\
1169
+ \r\n \r\n\
1170
+ \r\n \r\n </div><!-- div.right -->\r\n </li><!-- li.post -->\r\n\
1171
+ \r\n \r\n\
1172
+ \r\n \r\n\
1173
+ \r\n \r\n <li class=\"post\">\r\n <div class=\"left\">\r\n <div class=\"card\">\r\n <a href=\"http://staff.tumblr.com/post/1042703620/name-hunson-nguyen-location-portland-oregon-first\"><img src=\"http://30.media.tumblr.com/avatar_3e3c5e79e51f_96.png\" class=\"portrait\"></a>\r\n <a href=\"http://staff.tumblr.com/post/1042703620/name-hunson-nguyen-location-portland-oregon-first\" class=\"likes\"><img src=\"http://static.tumblr.com/thpaaos/AZDkm6b99/heart.png\" class=\"heart\">&nbsp;1185</a>\r\n </div><!-- div.card -->\r\n <div class=\"date\"><a href=\"http://staff.tumblr.com/post/1042703620/name-hunson-nguyen-location-portland-oregon-first\">Aug 31st, 2010</a></div>\r\n </div><!-- div.left -->\r\n <div class=\"right tumblr_tuesday\">\r\n \r\n <div class=\"type tumblr_tuesday photo\">\r\n <div class=\"top\"></div>\r\n <div class=\"bottom\"></div>\r\n <div class=\"tape top\"></div>\r\n <div class=\"tape bottom\"></div>\r\n <div class=\"sticker\"></div>\r\n <a href=\"http://hunsonisgroovy.com/\"><img src=\"http://24.media.tumblr.com/tumblr_l80ttndPm01qz8q0ho1_500.png\" class=\"first not_for_tumblr_tuesday\"></a>\r\n </div><!-- div.type -->\r\n \r\n <div class=\"caption tumblr_tuesday\">\r\n <a href=\"http://hunsonisgroovy.com/\"><img src=\"http://24.media.tumblr.com/tumblr_l80ttndPm01qz8q0ho1_500.png\" class=\"second only_for_tumblr_tuesday\"></a>\r\n <p><strong>Name</strong> <a href=\"http://hunsonisgroovy.com/\" title=\"Hunson Is Groovy\">Hunson Nguyen</a><br/><strong>Location</strong> Portland, Oregon<br/><strong>First Post</strong> December 2007</p>\n\n\
1174
+ <p>Graphic designer Hunson Nguyen is a student at Portland State University, creator of popular <a href=\"http://www.tumblr.com/themes/by/hunsonisgroovy\" title=\"Themes by hunsonisgroovy | Tumblr\">Tumblr themes</a>, and former competitive swimmer. A prolific blogger, Hunson helps run several group Tumblrs including <a href=\"http://typolicious.tumblr.com/\" title=\"Typolicious\">Typolicious</a>, <a href=\"http://iheartoregon.tumblr.com/\" title=\"iheartoregon\">I Heart Oregon</a>, and <a href=\"http://graphiceverywhere.tumblr.com/\" title=\"Graphic Everywhere\">Graphic Everywhere</a>. He can recite pi to 15 decimal places, he loves Pokemon, and he takes public transportation as often as possible. Hunson&#8217;s favorite fonts are \xE2\x80\x9CNeutra Text\xE2\x80\x9D and \xE2\x80\x9CCambria.\xE2\x80\x9D</p>\n\n\
1175
+ <p>Also check out&#8230;</p>\n\n\
1176
+ <p><strong><a href=\"http://officefridges.com/\" title=\"Office Fridges: documenting their inner lives, one photo at a time.\">Office Fridges</a></strong><br/>\n\
1177
+ Office Fridges aims to become the largest repository of office fridge photos available. Submit yours!</p>\n\n\
1178
+ <p><strong><a href=\"http://www.mykidsreallyeatthis.com/\" title=\"My Kids Really Eat This\">My Kids Really Eat This</a></strong><br/>\n\
1179
+ This mother of three provides useful tips and tricks on preparing healthy, delicious foods. Now eat your scrumptious vegetables!</p>\n\n\
1180
+ <p><strong><a href=\"http://jenbekmanprojects.tumblr.com/\" title=\"Jen Bekman Projects: 20x200 | JBG | HHS!\">Jen Bekman Projects</a></strong><br/>\n\
1181
+ Jen Bekman Projects is running a competition for photographers, Hey, Hot Shot! which ends today at 8:00&#160;pm EDT. Grand Prize, $10,000!</p>\n\n\
1182
+ <p><em>See you next Tuesday!</em></p>\r\n </div><!-- div.caption -->\r\n <div class=\"tumblrTuesdayBottom\"></div>\r\n \r\n \r\n\
1183
+ \r\n \r\n\
1184
+ \r\n \r\n\
1185
+ \r\n \r\n\
1186
+ \r\n \r\n\
1187
+ \r\n \r\n </div><!-- div.right -->\r\n </li><!-- li.post -->\r\n\
1188
+ \r\n \r\n\
1189
+ \r\n \r\n\
1190
+ \r\n \r\n <li class=\"post\">\r\n <div class=\"left\">\r\n <div class=\"card\">\r\n <a href=\"http://staff.tumblr.com/post/1015758119/speaking-of\"><img src=\"http://25.media.tumblr.com/avatar_78844f118110_96.gif\" class=\"portrait\"></a>\r\n <a href=\"http://staff.tumblr.com/post/1015758119/speaking-of\" class=\"likes\"><img src=\"http://static.tumblr.com/thpaaos/AZDkm6b99/heart.png\" class=\"heart\">&nbsp;744</a>\r\n </div><!-- div.card -->\r\n <div class=\"date\"><a href=\"http://staff.tumblr.com/post/1015758119/speaking-of\">Aug 26th, 2010</a></div>\r\n </div><!-- div.left -->\r\n <div class=\"right press\">\r\n \r\n\
1191
+ \r\n \r\n\
1192
+ \r\n \r\n \r\n <div class=\"type press text\">\r\n <div class=\"top\"></div>\r\n <div class=\"bottom\"></div>\r\n <div class=\"press_top\"></div>\r\n <div class=\"sticker\"></div>\r\n <a href=\"http://staff.tumblr.com/post/1015758119/speaking-of\" class=\"title\"><span class=\"text_title\">Speaking of!</span><img src=\"http://static.tumblr.com/thpaaos/Hf7l5o79s/speaking_of.png\" class=\"speaking_of\"></a>\r\n \r\n </div><!-- div.type -->\r\n <div class=\"caption press text\">\r\n <p><em>Mad Men</em> has reentered our Sunday routine which means the Internet has that sparkle back in its all-seeing eye. Not only did <a href=\"http://jezebel.com/5609384/revel-in-pete-campbells-bitchface\">Jezebel</a> point us to the delightful photo blog, <a href=\"http://petecampbellsbitchface.tumblr.com/\">Pete Campbell\xE2\x80\x99s Bitchface</a>, but this month saw the debut of <a href=\"http://natashavc.tumblr.com/\">Natasha Vargas-Cooper</a>&#8217;s first book, <em><a href=\"http://madmenunbuttoned.com/\">Mad Men Unbuttoned</a></em>. Inspired by the TV series and born from a blog,<em>\xC2\xA0</em>it features original art and essays by many of your favorite fellow Tumblr writers. As she told the <em>Paris Review</em> in <a href=\"http://blog.theparisreview.org/2010/08/23/mad-men-unbuttoned/\">an interview published last week</a>, &#8220;I started a blog for kicks, figuring I\xE2\x80\x99d be putting my degree in history to work. I got a call from Harper Collins about a month later.&#8221;</p>\n\
1193
+ <p>Very cool.</p>\n\
1194
+ <p>The White House has issued what is by our estimation the first official statement regarding a blog on Tumblr. A rep told the <a href=\"http://www.washingtonpost.com/wp-dyn/content/article/2010/07/29/AR2010072905971.html\"><em>Washington Post</em></a> that an account on one of our favorite Tumblr blogs, Pitchfork Reviews Reviews, was, &#8220;basically accurate &#8230; but the way he characterizes and attributes the comments and details is mostly inaccurate.&#8221; The <a href=\"http://www.pitchforkreviewsreviews.com/post/875556831/talked-to-barack-obama-the-president-of-the-united\">post in question</a> is one of our favorites: it describes in unflinching, run-on detail, the day David spent driving in President Obama&#8217;s motorcade, &#8220;cranking the van speakers,&#8221; and asking The President if he had ever heard of Pitchfork.</p>\r\n </div><!-- div.caption -->\r\n <div class=\"tumblrTuesdayBottom\"></div>\r\n <div class=\"press_bottom\"></div>\r\n \r\n\
1195
+ \r\n \r\n\
1196
+ \r\n \r\n\
1197
+ \r\n \r\n </div><!-- div.right -->\r\n </li><!-- li.post -->\r\n\
1198
+ \r\n \r\n\
1199
+ \r\n \r\n\
1200
+ \r\n \r\n <li class=\"post\">\r\n <div class=\"left\">\r\n <div class=\"card\">\r\n <a href=\"http://staff.tumblr.com/post/1003975640/name-ra-ra-riot-location-formed-in-syracuse-ny\"><img src=\"http://30.media.tumblr.com/avatar_3e3c5e79e51f_96.png\" class=\"portrait\"></a>\r\n <a href=\"http://staff.tumblr.com/post/1003975640/name-ra-ra-riot-location-formed-in-syracuse-ny\" class=\"likes\"><img src=\"http://static.tumblr.com/thpaaos/AZDkm6b99/heart.png\" class=\"heart\">&nbsp;1423</a>\r\n </div><!-- div.card -->\r\n <div class=\"date\"><a href=\"http://staff.tumblr.com/post/1003975640/name-ra-ra-riot-location-formed-in-syracuse-ny\">Aug 24th, 2010</a></div>\r\n </div><!-- div.left -->\r\n <div class=\"right tumblr_tuesday\">\r\n \r\n <div class=\"type tumblr_tuesday photo\">\r\n <div class=\"top\"></div>\r\n <div class=\"bottom\"></div>\r\n <div class=\"tape top\"></div>\r\n <div class=\"tape bottom\"></div>\r\n <div class=\"sticker\"></div>\r\n <a href=\"http://rarariot.tumblr.com/\"><img src=\"http://24.media.tumblr.com/tumblr_l7nxj1dKH71qz8q0ho1_500.png\" class=\"first not_for_tumblr_tuesday\"></a>\r\n </div><!-- div.type -->\r\n \r\n <div class=\"caption tumblr_tuesday\">\r\n <a href=\"http://rarariot.tumblr.com/\"><img src=\"http://24.media.tumblr.com/tumblr_l7nxj1dKH71qz8q0ho1_500.png\" class=\"second only_for_tumblr_tuesday\"></a>\r\n <p><strong>Name</strong> <a href=\"http://rarariot.tumblr.com/\" title=\"Ra Ra Riot\">Ra Ra Riot</a><br/><strong>Location</strong> Formed in Syracuse, NY / Currently touring<br/><strong>First Post</strong> July 2009</p>\n\n\
1201
+ <p><a href=\"http://rarariot.com/home.html\" title=\"Ra Ra Riot\">Ra Ra Riot</a> is an indie rock band from Syracuse, NY that fuses swooning strings and intricate, emotional vocals to create a unique sound. Formed way back in 2006, they got their start doing shows around the Syracuse University campus and eventually moved up to music festivals. Consisting of a vocalist, guitarist, bassist, cellist, violinist, and drummer, they quickly started to grab attention thanks to their energetic live performances and the well-orchestrated layers of their music. RRR use their blog to show fans glimpses into their daily lives and into life on the road as they tour the world. Their second full-length album, <em>The Orchard</em>, drops today.</p>\n\n\
1202
+ <p>Also check out&#8230;</p>\n\n\
1203
+ <p><strong><a href=\"http://crimesagainsthughsmanatees.tumblr.com/\" title=\"Crimes against Hugh's Manatees\">Crimes against Hugh&#8217;s Manatees</a></strong><br/>\n\
1204
+ A daily comic strip which features a variety of animals who experience the same mundane experiences that we humans have to put up with. Also, dinosaurs!</p>\n\n\
1205
+ <p><strong><a href=\"http://ohyeahfacts.tumblr.com/\" title=\"OH YEAH FACTS\">Oh Yeah Facts</a></strong><br/>\n\
1206
+ Edmund Burke said that \xE2\x80\x9Cfacts are to the mind what food is to the body.\xE2\x80\x9D I&#8217;m positive this is true because I just read it on <em>Oh Yeah Facts.</em></p>\n\n\
1207
+ <p><strong><a href=\"http://mymomreviewsmyphotos.com/\" title=\"My Mom Reviews My Photos\">My Mom Reviews My Photos</a></strong><br/>\n\
1208
+ Tanner takes a photo every day, emails it to mom, and then posts her commentary which may or may not have anything to do with the actual photo. Mom&#8217;s dog Toby also weighs in.</p>\n\n\
1209
+ <p><em>Be sure to <a href=\"http://www.tumblr.com/directory/recommend\" title=\"Recommend | Tumblr\">recommend</a> your favorite blog today!</em></p>\r\n </div><!-- div.caption -->\r\n <div class=\"tumblrTuesdayBottom\"></div>\r\n \r\n \r\n\
1210
+ \r\n \r\n\
1211
+ \r\n \r\n\
1212
+ \r\n \r\n\
1213
+ \r\n \r\n\
1214
+ \r\n \r\n </div><!-- div.right -->\r\n </li><!-- li.post -->\r\n\
1215
+ \r\n \r\n\
1216
+ \r\n \r\n\
1217
+ \r\n \r\n <li class=\"post\">\r\n <div class=\"left\">\r\n <div class=\"card\">\r\n <a href=\"http://staff.tumblr.com/post/1001026248/one-billion\"><img src=\"http://26.media.tumblr.com/avatar_a963092d964b_96.png\" class=\"portrait\"></a>\r\n <a href=\"http://staff.tumblr.com/post/1001026248/one-billion\" class=\"likes\"><img src=\"http://static.tumblr.com/thpaaos/AZDkm6b99/heart.png\" class=\"heart\">&nbsp;3457</a>\r\n </div><!-- div.card -->\r\n <div class=\"date\"><a href=\"http://staff.tumblr.com/post/1001026248/one-billion\">Aug 23rd, 2010</a></div>\r\n </div><!-- div.left -->\r\n <div class=\"right \">\r\n \r\n <div class=\"type photo\">\r\n <div class=\"top\"></div>\r\n <div class=\"bottom\"></div>\r\n <div class=\"tape top\"></div>\r\n <div class=\"tape bottom\"></div>\r\n <div class=\"sticker\"></div>\r\n <img src=\"http://27.media.tumblr.com/tumblr_l7mvycuXGK1qz8q0ho1_500.png\" class=\"first not_for_\">\r\n </div><!-- div.type -->\r\n \r\n <div class=\"caption \">\r\n <img src=\"http://27.media.tumblr.com/tumblr_l7mvycuXGK1qz8q0ho1_500.png\" class=\"second only_for_\">\r\n <p><strong>Today, Tumblr passed one BILLION posts!</strong></p>\n\
1218
+ <p>I never imagined we would make it this far so quickly, and apparently neither did <a href=\"http://jacobbijani.com/\">Jacob</a> when he designed the <a href=\"http://www.tumblr.com/about\">About</a> page.</p>\n\
1219
+ <p>The things you do with Tumblr continue to blow our minds. :)</p>\n\
1220
+ <p><small><em>Thanks for the <a href=\"http://techcrunch.com/2010/08/23/tumblr-1-billionposts/\">shout out</a>, TC!</em></small></p>\r\n </div><!-- div.caption -->\r\n <div class=\"tumblrTuesdayBottom\"></div>\r\n \r\n \r\n\
1221
+ \r\n \r\n\
1222
+ \r\n \r\n\
1223
+ \r\n \r\n\
1224
+ \r\n \r\n\
1225
+ \r\n \r\n </div><!-- div.right -->\r\n </li><!-- li.post -->\r\n\
1226
+ \r\n \r\n\
1227
+ \r\n \r\n\
1228
+ \r\n \r\n <li class=\"post\">\r\n <div class=\"left\">\r\n <div class=\"card\">\r\n <a href=\"http://staff.tumblr.com/post/998292483/android-app\"><img src=\"http://27.media.tumblr.com/avatar_51777f3c873f_96.png\" class=\"portrait\"></a>\r\n <a href=\"http://staff.tumblr.com/post/998292483/android-app\" class=\"likes\"><img src=\"http://static.tumblr.com/thpaaos/AZDkm6b99/heart.png\" class=\"heart\">&nbsp;1852</a>\r\n </div><!-- div.card -->\r\n <div class=\"date\"><a href=\"http://staff.tumblr.com/post/998292483/android-app\">Aug 23rd, 2010</a></div>\r\n </div><!-- div.left -->\r\n <div class=\"right features\">\r\n \r\n\
1229
+ \r\n \r\n\
1230
+ \r\n \r\n\
1231
+ \r\n \r\n <div class=\"type features\">\r\n <div class=\"top\"></div>\r\n <div class=\"bottom\"></div>\r\n <div class=\"sticker\"></div>\r\n <div class=\"video\"><script type=\"text/javascript\" language=\"javascript\" src=\"http://assets.tumblr.com/javascript/tumblelog.js?16\"></script><div id=\"photoset_998292483\" class=\"html_photoset\"> <p><img src=\"http://27.media.tumblr.com/tumblr_l7d2p4mJJq1qz8q0ho1_500.png\" alt=\"\" class=\"photoset_photo\"/></p><p class=\"photoset_caption\"></p><p><img src=\"http://25.media.tumblr.com/tumblr_l7d2p4mJJq1qz8q0ho2_500.png\" alt=\"\" class=\"photoset_photo\"/></p><p class=\"photoset_caption\"></p><p><img src=\"http://24.media.tumblr.com/tumblr_l7d2p4mJJq1qz8q0ho3_500.png\" alt=\"\" class=\"photoset_photo\"/></p><p class=\"photoset_caption\"></p><p><img src=\"http://28.media.tumblr.com/tumblr_l7d2p4mJJq1qz8q0ho4_500.png\" alt=\"\" class=\"photoset_photo\"/></p><p class=\"photoset_caption\"></p><p><img src=\"http://27.media.tumblr.com/tumblr_l7d2p4mJJq1qz8q0ho5_500.png\" alt=\"\" class=\"photoset_photo\"/></p><p class=\"photoset_caption\"></p></div><script type=\"text/javascript\"> replaceIfFlash(9, \"photoset_998292483\", '\\x3cembed type=\\x22application/x-shockwave-flash\\x22 src=\\x22/swf/photoset.swf\\x22 bgcolor=\\x22#000000\\x22 quality=\\x22high\\x22 class=\\x22photoset\\x22 flashvars=\\x22showLogo=false\\x26amp;showVersionInfo=false\\x26amp;dataFile=/post/998292483/photoset_xml/tumblr_l7d2p4mJJq1qz8q0h/500\\x22 height=\\x22700\\x22 width=\\x22500\\x22\\x3e\\x3c/embed\\x3e')</script></div>\r\n </div><!-- div.type -->\r\n \r\n <div class=\"caption features\">\r\n <p><strong>Introducing: Tumblr Android App</strong></p>\n\
1232
+ <p>Built by the same <a href=\"http://mobelux.tumblr.com/\">brilliant team</a> behind the Tumblr iPhone App, v1 of the official Tumblr Android App is ready to download!</p>\n\
1233
+ <p><a href=\"market://details?id=com.tumblr\">Click here from your Android phone to install</a><br/><small>(or <a href=\"http://www.tumblr.com/downloads/android/tumblr.apk\">click here</a> to download directly)</small></p>\r\n </div><!-- div.caption -->\r\n \r\n \r\n\
1234
+ \r\n \r\n\
1235
+ \r\n \r\n </div><!-- div.right -->\r\n </li><!-- li.post -->\r\n\
1236
+ \r\n \r\n\
1237
+ \r\n \r\n\
1238
+ \r\n \r\n <div id=\"footer\">\r\n <div id=\"copyright\">\r\n \xC2\xA9 2008\xE2\x80\x932010 All rights reserved.<br/>\r\n TUMBLR is a registered trademark of Tumblr, Inc.\r\n </div>\r\n <div id=\"pagination\">\r\n \r\n \r\n <a href=\"/page/2\" class=\"button right\"></a>\r\n \r\n \r\n </div>\r\n <a href=\"#\" onclick=\"Effect.ScrollTo('header'); return false;\" class=\"back_to_top\"></a>\r\n </div><!-- div#footer -->\r\n </ul><!-- ul#main -->\r\n\
1239
+ \r\n <div id=\"right\">\r\n <div class=\"signup\">\r\n <div class=\"title\" style=\"margin: 0 0 0 -9px\">\r\n <div class=\"decorLeft\"></div>\r\n <h4>Sign Up</h4>\r\n <div class=\"decorRight\"></div>\r\n </div>\r\n <div class=\"clear\"></div>\r\n <form action=\"http://www.tumblr.com/register\" method=\"post\" id=\"account_form\">\r\n <input type=\"text\" id=\"user_email\" name=\"user[email]\" class=\"text_field\"/>\r\n <label for=\"user_email\" class=\"label\">Email Address</label>\r\n \r\n <input type=\"password\" id=\"user_password\" class=\"text_field\" />\r\n <label for=\"user_password\" name=\"user[password]\" class=\"label\">Password</label>\r\n \r\n <div class=\"text_field\" id=\"tumblelog_name_background\" style=\"position: relative;\" onclick=\"$('tumblelog_name').focus();\">\r\n <div style=\"font-size: 12px; position:absolute; right: 5px; top: -12px; white-space: nowrap;\">\r\n <input type=\"text\" class=\"text_field\" style=\"padding:0px; border-width:0px; text-align:right; width: 90px; background:transparent;\"\r\n id=\"tumblelog_name\" name=\"tumblelog[name]\"\r\n onfocus=\"$('tumblelog_name_background').style.background = 'url(http://static.tumblr.com/thpaaos/B5nkqc6e1/signup_input-bg.png) repeat-x bottom'; $('tumblelog_name_background').style.color = ''\" onblur=\"$('tumblelog_name_background').style.background = 'url(http://static.tumblr.com/thpaaos/B5nkqc6e1/signup_input-bg.png) repeat-x top'; if($('tumblelog_name').value == '') { $('tumblelog_name_background').style.color = '#BEBEBE' }\"/>.tumblr.com\r\n </div>\r\n </div>\r\n <label for=\"tumblelog_name\" class=\"label\">URL <span>(You can change this later)</span></label>\r\n \r\n <input type=\"hidden\" name=\"referer\" value=\"staff_blog\"/>\r\n \r\n <input type=\"submit\" value=\"Start Posting!\" class=\"signup_button\"/>\r\n </form>\r\n </div>\r\n \r\n <a href=\"http://www.tumblr.com/why-tumblr\" class=\"reasons\"></a>\r\n \r\n <div style=\"padding: 0 19px 0 0\">\r\n <a href=\"http://weheart.tumblr.com\" class=\"weheart\">\r\n <div style=\"width: 70px; height: 45px; line-height: 15px; text-align: center; margin: 40px 12px 0 0; float: right;\">Tumblr<br/>Fan Art</div>\r\n </a>\r\n \r\n <div class=\"clear\"></div>\r\n\
1240
+ \r\n <ul class=\"crew\" id=\"tumblr_staff_wrapper\" style=\"display: none\">\r\n <div id=\"tumblr_staff\">\r\n <div class=\"title\" style=\"float: right;\">\r\n <div class=\"decorLeft\"></div>\r\n <h4>The Crew</h4>\r\n <div class=\"decorRight\"></div>\r\n </div>\r\n <div class=\"clear\"></div>\r\n </div>\r\n </ul><!-- ul.crew -->\r\n \r\n <div class=\"clear\"></div>\r\n \r\n <div style=\"float: right;\">\r\n <div class=\"title\">\r\n <div class=\"decorLeft\"></div>\r\n <h4>The Tags</h4>\r\n <div class=\"decorRight\"></div>\r\n </div>\r\n <ul class=\"tags\">\r\n <div style=\"padding: 0 13px 0 0; overflow: hidden\">\r\n <li>\r\n <a href=\"/tagged/features\" class=\"tag\">features<div class=\"right\"></div></a>\r\n </li>\r\n <li>\r\n <a href=\"/tagged/spotlights\" class=\"tag\">spotlights<div class=\"right\"></div></a>\r\n </li>\r\n <li>\r\n <a href=\"/tagged/community\" class=\"tag\">community<div class=\"right\"></div></a>\r\n </li>\r\n <li>\r\n <a href=\"/tagged/events\" class=\"tag\">events<div class=\"right\"></div></a>\r\n </li>\r\n </div>\r\n </ul><!-- ul.tags -->\r\n </div>\r\n \r\n <div class=\"clear\"></div>\r\n \r\n <div style=\"overflow: hidden; float: right;\">\r\n <div class=\"title\">\r\n <div class=\"decorLeft\"></div>\r\n <h4>Search</h4>\r\n <div class=\"decorRight\"></div>\r\n </div>\r\n <form action=\"/search\" method=\"get\" class=\"search\">\r\n <input type=\"text\" value=\"\" class=\"text\" name=\"q\" />\r\n <input type=\"submit\" value=\"\" class=\"search\" />\r\n </form>\r\n </div><!--div -->\r\n\
1241
+ \r\n <div class=\"clear\"></div>\r\n \r\n <div class=\"divider\"></div>\r\n\
1242
+ \r\n <a href=\"http://www.tumblr.com/follow/staff\" class=\"follow\"></a>\r\n <a href=\"http://www.twitter.com/tumblr\" class=\"twitter\">On Twitter, too!</a>\r\n </div>\r\n </div><!-- div#right -->\r\n </div><!-- div#container -->\r\n <script type=\"text/javascript\">\r\n function tumblr_staff(data) {\r\n document.getElementById(\"tumblr_staff_wrapper\").style.display = \"block\";\r\n for(i = 0; i < data.length; i++) {\r\n if (data[i]['cname']) {\r\n staff_link = data[i]['cname'];\r\n } else {\r\n staff_link = data[i]['username'] + \".tumblr.com\";\r\n }\r\n document.getElementById(\"tumblr_staff\").innerHTML = document.getElementById(\"tumblr_staff\").innerHTML +\r\n '<a href=\"http://' + staff_link + '\">\\\r\n <li>\\\r\n <img src=\"' + data[i]['avatars']['64'] + '\" class=\"portrait\">\\\r\n <div class=\"name\">' + data[i]['name'] + '</div>\\\r\n <a href=\"http://www.tumblr.com/follow/' + data[i]['username'] + '\" class=\"add\"></a>\\\r\n </li>\\\r\n </a>';\r\n }\r\n }\r\n </script>\r\n <script type=\"text/javascript\" src=\"http://www.tumblr.com/tumblr_staff_json\"></script>\r\n <script type=\"text/javascript\">\r\n //<[CDATA[\r\n (function() {\r\n links = document.getElementsByTagName('a');\r\n query = '?';\r\n for(var i = 0; i < links.length; i++) {\r\n if(links[i].href.indexOf('#disqus_thread') >= 0) {\r\n query += 'url' + i + '=' + encodeURIComponent(links[i].href) + '&';\r\n }\r\n }\r\n document.write('<script type=\"text/javascript\" src=\"http://disqus.com/forums/tumblrstaff/get_num_replies.js' + query + '\"></' + 'script>');\r\n })();\r\n //]]>\r\n </script>\r\n\
1243
+ <!-- BEGIN TUMBLR CODE --><iframe src=\"http://assets.tumblr.com/iframe.html?8&src=http%3A%2F%2Fstaff.tumblr.com%2F&amp;lang=en_US&amp;name=staff\" scrolling=\"no\" width=\"324\" height=\"25\" frameborder=\"0\" style=\"position:absolute; z-index:1337; top:0px; right:0px; border:0px; background-color:transparent; overflow:hidden;\" id=\"tumblr_controls\"></iframe><!--[if IE]><script type=\"text/javascript\">document.getElementById('tumblr_controls').allowTransparency=true;</script><![endif]--><script type=\"text/javascript\">_qoptions={qacct:\"p-19UtqE8ngoZbM\"};</script><script type=\"text/javascript\" src=\"http://edge.quantserve.com/quant.js\"></script><noscript><img src=\"http://pixel.quantserve.com/pixel/p-19UtqE8ngoZbM.gif\" style=\"display:none; border-width:0px; height:1px; width:1px;\" alt=\"\"/></noscript><!-- END TUMBLR CODE --></body>\r\n\
1244
+ </html>"
1245
+ http_version: "1.1"
1246
+ - !ruby/struct:VCR::HTTPInteraction
1247
+ request: !ruby/struct:VCR::Request
1248
+ method: :get
1249
+ uri: http://staff.tumblr.com:80/rss
1250
+ body:
1251
+ headers:
1252
+ accept:
1253
+ - "*/*"
1254
+ user-agent:
1255
+ - Ruby
1256
+ response: !ruby/struct:VCR::Response
1257
+ status: !ruby/struct:VCR::ResponseStatus
1258
+ code: 200
1259
+ message: OK
1260
+ headers:
1261
+ date:
1262
+ - Tue, 28 Sep 2010 02:48:32 GMT
1263
+ server:
1264
+ - Apache/2.2.3 (CentOS)
1265
+ p3p:
1266
+ - CP="ALL ADM DEV PSAi COM OUR OTRo STP IND ONL"
1267
+ x-tumblr-user:
1268
+ - staff
1269
+ last-modified:
1270
+ - Tue, 21 Sep 2010 21:06:20 GMT
1271
+ x-robots-tag:
1272
+ - noindex
1273
+ cache-control:
1274
+ - max-age=900
1275
+ x-cache-auto:
1276
+ - hit
1277
+ vary:
1278
+ - Accept-Encoding
1279
+ x-tumblr-usec:
1280
+ - D=61082
1281
+ connection:
1282
+ - close
1283
+ transfer-encoding:
1284
+ - chunked
1285
+ content-type:
1286
+ - text/xml; charset=utf-8
1287
+ body: "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n\
1288
+ <rss version=\"2.0\"><channel><atom:link rel=\"hub\" href=\"http://tumblr.superfeedr.com/\" xmlns:atom=\"http://www.w3.org/2005/Atom\"/><description>The official feed from the people behind Tumblr.\n\n\
1289
+ Follow us for the latest development updates, features, community spotlights, notices, events, tips, tutorials, hacks, meetups, themes, antics, philosophy, and trade secrets.</description><title>Tumblr Staff</title><generator>Tumblr (3.0; @staff)</generator><link>http://staff.tumblr.com/</link><item><title>Name SoupLocation Hoboken, NJFirst Post October...</title><description>&lt;img src=\"http://30.media.tumblr.com/tumblr_l93ti8ZUme1qz8q0ho1_500.png\"/&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;&lt;strong&gt;Name&lt;/strong&gt; &lt;a href=\"http://soupsoup.tumblr.com/\" title=\"Soup\"&gt;Soup&lt;/a&gt;&lt;br/&gt;&lt;strong&gt;Location&lt;/strong&gt; Hoboken, NJ&lt;br/&gt;&lt;strong&gt;First Post&lt;/strong&gt; October 2007&lt;/p&gt;\n\n\
1290
+ &lt;p&gt;News-and-info-junkie Anthony De Rosa is on a mission to keep the masses informed about news, technology, politics, sports, entertainment, and more. As a one-man mass media machine, it\xE2\x80\x99s easy to imagine that he sits in front of 17 monitors for at least 23 hours a day, constantly scanning the entire internet with vigilance for the latest breaking news. Sadly, I\xE2\x80\x99m told that\xE2\x80\x99s probably not true. In addition to running &lt;em&gt;Soup&lt;/em&gt;, Anthony co-founded the hyperlocal &lt;a href=\"http://www.neighborhoodr.com/\" title=\"Neighborhoodr : Your Neighborhood Blog\"&gt;Neighborhoodr.com&lt;/a&gt; network, is editor of the &lt;a href=\"http://sbnation.tumblr.com/\" title=\"SB Nation\"&gt;SB Nation Tumblr&lt;/a&gt;, and founded the New York Mets blog &lt;a href=\"http://HotFootBlog.com\" title=\"Hot Foot\"&gt;HotFootBlog.com&lt;/a&gt;.&lt;/p&gt;\n\n\
1291
+ &lt;p&gt;Also check out\xE2\x80\xA6&lt;/p&gt;\n\n\
1292
+ &lt;p&gt;&lt;strong&gt;&lt;a href=\"http://www.allnighter.org/\" title=\"All-Nighter for Haiti 2010\"&gt;All-Nighter for Haiti 2010&lt;/a&gt;&lt;/strong&gt;&lt;br/&gt;\n\
1293
+ This student-run event takes place October 15 in Miami and expects to raise at least $40,000 in donations to fight against poverty, hunger, and other inhumane suffering in Haiti.&lt;/p&gt;\n\n\
1294
+ &lt;p&gt;&lt;strong&gt;&lt;a href=\"http://sponsorshit.tumblr.com/\" title=\"Sponsorshit\"&gt;Sponsorshit&lt;/a&gt;&lt;/strong&gt;&lt;br/&gt;\n\
1295
+ Sponsorshit chronicles all the gratuitous displays of product placement found in movies and TV. I\xE2\x80\x99m &lt;a href=\"http://sponsorshit.tumblr.com/tagged/Pepsi\" title=\"Sponsorshit\"&gt;craving a Pepsi&lt;/a&gt; right now for some reason.&lt;/p&gt;\n\n\
1296
+ &lt;p&gt;&lt;strong&gt;&lt;a href=\"http://twocoasttable.com/\" title=\"Two Coast Table\"&gt;Two Coast Table&lt;/a&gt;&lt;/strong&gt;&lt;br/&gt;\n\
1297
+ Meg &amp; Steven met at a Tumblr meetup in 2008, and today they run this engaging food blog from Portland and Boston, respectively.&lt;/p&gt;\n\n\
1298
+ &lt;p&gt;&lt;em&gt;See you next Tuesday!&lt;/em&gt;&lt;/p&gt;</description><link>http://staff.tumblr.com/post/1161958822</link><guid>http://staff.tumblr.com/post/1161958822</guid><pubDate>Tue, 21 Sep 2010 12:27:48 -0400</pubDate><category>Tumblr Tuesday</category></item><item><title>Tumblr Tuesday, Fashion Week Edition\n\
1299
+ New York City, September...</title><description>&lt;img src=\"http://28.media.tumblr.com/tumblr_l8qquqHSMM1qz8q0ho1_r2_500.png\"/&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;&lt;strong&gt;Tumblr Tuesday, Fashion Week Edition&lt;/strong&gt;&lt;br/&gt;\n\
1300
+ New York City, September 9-16, 2010&lt;/p&gt;\n\n\
1301
+ &lt;p&gt;Fashionistas in extremely dangerous high heels are literally tripping all over the city as New York Fashion Week currently hits its, uh, stride. This glorious event happens twice every year and brings the world\xE2\x80\x99s finest and most cutting-edge designers together to display their latest creations. What follows are some Tumblr blogs celebrating the haute couture, the pr\xC3\xAAt-\xC3\xA0-porter, and the falling models.&lt;/p&gt;\n\n\
1302
+ &lt;p&gt;&lt;strong&gt;&lt;a href=\"http://live.milkmade.com/\" title=\"Fashion Week Live\"&gt;Fashion Week Live&lt;/a&gt;&lt;/strong&gt; from MAC &amp; Milk invites everyone to participate in this live cell phone project called \xE2\x80\x9CPhone Tag\xE2\x80\x9D to promote all of the week\xE2\x80\x99s events.&lt;/p&gt;\n\n\
1303
+ &lt;p&gt;&lt;strong&gt;&lt;a href=\"http://www.sarazucker.com/\" title=\"farpitzs.\"&gt;Sara Zucker&lt;/a&gt;&lt;/strong&gt; is an independent fashion blogger who works in marketing and is covering Fashion Week from inside the shows.&lt;/p&gt;\n\n\
1304
+ &lt;p&gt;&lt;strong&gt;&lt;a href=\"http://whatiwore.tumblr.com/\" title=\"What I Wore\"&gt;What I Wore&lt;/a&gt;&lt;/strong&gt; is Jessica Quirk\xE2\x80\x99s personal style blog. She takes pictures of herself nearly every day and loves vintage inspired clothes.&lt;/p&gt;\n\n\
1305
+ &lt;p&gt;&lt;strong&gt;&lt;a href=\"http://designersocial.tumblr.com/\" title=\"DesignerSocial\"&gt;DesignerSocial&lt;/a&gt;&lt;/strong&gt; is a crew of designers, editors, and fashion peeps who throw down on the industry and each other.&lt;/p&gt;\n\n\
1306
+ &lt;p&gt;&lt;strong&gt;&lt;a href=\"http://lookbookdotnu.tumblr.com/\" title=\"LB TUMBLR\"&gt;LB TUMBLR&lt;/a&gt;&lt;/strong&gt; is the official Tumblr blog for &lt;a href=\"http://lookbook.nu/\" title=\"LOOKBOOK.nu: collective fashion consciousness.\"&gt;Lookbook.nu&lt;/a&gt;, an international social experiment in style.&lt;/p&gt;\n\n\
1307
+ &lt;p&gt;&lt;em&gt;Visit the &lt;a href=\"http://www.tumblr.com/directory/fashion\" title=\"Fashion | Tumblr\"&gt;Fashion category&lt;/a&gt; of the Tumblr Directory to find many, many more!&lt;/em&gt;&lt;/p&gt;\n\n\
1308
+ &lt;p&gt;&lt;small&gt;Photos via &lt;a href=\"http://www.styleite.com/media/model-falling-zac-posen/\" title=\"Model Falling - Zac Posen - PHOTOS | Styleite\"&gt;Styleite&lt;/a&gt;.&lt;/small&gt;&lt;/p&gt;</description><link>http://staff.tumblr.com/post/1121340514</link><guid>http://staff.tumblr.com/post/1121340514</guid><pubDate>Tue, 14 Sep 2010 11:53:00 -0400</pubDate><category>Tumblr Tuesday</category></item><item><title>Name Mills BakerLocation San FranciscoFirst Post November...</title><description>&lt;img src=\"http://26.media.tumblr.com/tumblr_l8ds2no8RC1qz8q0ho1_500.png\"/&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;&lt;strong&gt;Name&lt;/strong&gt; &lt;a href=\"http://mills.tumblr.com/\" title=\"mills\"&gt;Mills Baker&lt;/a&gt;&lt;br/&gt;&lt;strong&gt;Location&lt;/strong&gt; San Francisco&lt;br/&gt;&lt;strong&gt;First Post&lt;/strong&gt; November 2007&lt;/p&gt;\n\n\
1309
+ &lt;p&gt;Mills\xE2\x80\x99 writing inspires many adjectives \xE2\x80\x94 intelligent, insightful, and beautiful among them \xE2\x80\x94 but one quickly gets the feeling that, rather than compliments, his true reward is in helping readers notice something amusing about the world that they didn\xE2\x80\x99t see before. Born in New Orleans, he attended Bard College and Louisiana State University. Mills recently moved to San Francisco, which he described \xE2\x80\x9Cas though New Orleans and New York were smashed together and then placed just so in a beautiful expanse of nature.\xE2\x80\x9D He writes about what it\xE2\x80\x99s like to be human \xE2\x80\x94 love, art, culture, mental illness, philosophy, and memory, among other topics. He has two awesome dogs named Bayou and Five and a girlfriend he met on Tumblr.&lt;/p&gt;\n\n\
1310
+ &lt;p&gt;Also check out\xE2\x80\xA6&lt;/p&gt;\n\n\
1311
+ &lt;p&gt;&lt;strong&gt;&lt;a href=\"http://njwight.tumblr.com/\" title=\"Wild! Art\"&gt;Wild! Art&lt;/a&gt;&lt;/strong&gt;&lt;br/&gt;\n\
1312
+ This former CEO left a career in the technology sector to spend 10 weeks traveling through Southern Africa, taking incredible photographs of over 100 species.&lt;/p&gt;\n\n\
1313
+ &lt;p&gt;&lt;strong&gt;&lt;a href=\"http://foodspotting.tumblr.com/\" title=\"Spotted\"&gt;Foodspotting: Spotted&lt;/a&gt;&lt;/strong&gt;&lt;br/&gt;\n\
1314
+ The official blog of &lt;a href=\"http://www.foodspotting.com/\" title=\"Foodspotting\"&gt;Foodspotting&lt;/a&gt;, a visual guide to finding and sharing food recommendations.&lt;/p&gt;\n\n\
1315
+ &lt;p&gt;&lt;strong&gt;&lt;a href=\"http://hoodinternet.tumblr.com/\" title=\"The Hood Internet\"&gt;The Hood Internet&lt;/a&gt;&lt;/strong&gt;&lt;br/&gt;\n\
1316
+ This Chicago-based duo mashes up indie, pop, rap, and R&amp;B into sweet-ass mixtapes which both sound quite nice and also don\xE2\x80\x99t pollute the environment.&lt;/p&gt;\n\n\
1317
+ &lt;p&gt;&lt;em&gt;See you next Tuesday!&lt;/em&gt;&lt;/p&gt;</description><link>http://staff.tumblr.com/post/1081885096</link><guid>http://staff.tumblr.com/post/1081885096</guid><pubDate>Tue, 07 Sep 2010 13:22:55 -0400</pubDate><category>Tumblr Tuesday</category></item><item><title>Fixing Content Attribution (Once and For All) </title><description>&lt;p&gt;Back when we launched two of Tumblr\xE2\x80\x99s most unique features, reblogging and the &lt;a href=\"http://www.tumblr.com/goodies\"&gt;Tumblr Bookmarklet&lt;/a&gt;, we devised automatic \xE2\x80\x9Cvia\xE2\x80\x9D links in post captions as a simple solution for attribution. Three years later, this solution has gotten us pretty far. But it\xE2\x80\x99s easy to spot some real shortcomings:&lt;/p&gt;\n\
1318
+ &lt;p&gt;\xE2\x80\xA2 &lt;strong&gt;It\xE2\x80\x99s hard.&lt;/strong&gt; Even with the best intentions, it\xE2\x80\x99s possible to mangle attribution when reblogging. Links get dropped, and credit gets buried under reblog links.&lt;/p&gt;\n\
1319
+ &lt;p&gt;\xE2\x80\xA2 &lt;strong&gt;It\xE2\x80\x99s ugly.&lt;/strong&gt;\xC2\xA0Reblog links pile up. Credit is formatted as any permutation of url, author, blog name, and page title.&lt;/p&gt;\n\
1320
+ &lt;p&gt;\xE2\x80\xA2 &lt;strong&gt;It doesn\xE2\x80\x99t play well with content that doesn\xE2\x80\x99t originate on Tumblr.&lt;/strong&gt;\xC2\xA0If I share one of &lt;a href=\"http://jacobbijani.com/\"&gt;Jacob&lt;/a&gt;\xE2\x80\x99s Flickr photos, the post notes attribute &lt;em&gt;me&lt;/em&gt; as the original poster. And posters too frequently mistakenly attribute content to &lt;em&gt;re&lt;/em&gt;-publishers (Digg, BuzzFeed, 9GAG) instead of creators.&lt;/p&gt;\n\
1321
+ &lt;p&gt;We know we can do better. After weeks of testing, we\xE2\x80\x99ve got an upgrade that fixes &lt;strong&gt;all&lt;/strong&gt; of these issues:&lt;/p&gt;\n\
1322
+ &lt;p&gt;Starting today, reblogging will no longer insert attribution into the content/caption of the post except to quote content added by the parent post.&lt;/p&gt;\n\
1323
+ &lt;p&gt;&lt;img src=\"http://media.tumblr.com/tumblr_l86e7fXvp11qz4rgq.png\"/&gt;&lt;/p&gt;\n\
1324
+ &lt;p&gt;This means we\xE2\x80\x99re no longer cluttering up post content with reblog attribution. But where did it go? The Dashboard already attributes reblogs\xE2\x80\x99 parent blogs, and now it automatically attributes the source blog clearly and consistently:&lt;/p&gt;\n\
1325
+ &lt;p&gt;&lt;img src=\"http://media.tumblr.com/tumblr_l86i0tbCt21qz4rgq.png\"/&gt;&lt;/p&gt;\n\
1326
+ &lt;p&gt;But this feature has an even bigger win: When creating a post, you can now attribute its content (eg. a pull quote or image) to a source &lt;em&gt;outside of Tumblr&lt;/em&gt;. That source gets clearly attributed &lt;em&gt;everywhere&lt;/em&gt; that post is reblogged on Tumblr.\xC2\xA0&lt;/p&gt;\n\
1327
+ &lt;p&gt;&lt;img src=\"http://media.tumblr.com/tumblr_l86el4ke4i1qz4rgq.png\"/&gt;&lt;/p&gt;\n\
1328
+ &lt;p&gt;The bookmarklet will automatically set the source, confirming that the current page is in fact the content\xE2\x80\x99s origin.&lt;/p&gt;\n\
1329
+ &lt;p&gt;&lt;img src=\"http://media.tumblr.com/tumblr_l86iruzCuX1qz4rgq.png\"/&gt;&lt;/p&gt;\n\
1330
+ &lt;p&gt;We even use graphics for some of our most popular sources:&lt;/p&gt;\n\
1331
+ &lt;p&gt;&lt;img src=\"http://media.tumblr.com/tumblr_l86issGAvF1qz4rgq.png\"/&gt;&lt;/p&gt;\n\
1332
+ &lt;p&gt;Dope. But how does this look on your blog? First, we\xE2\x80\x99ve added new theme variables to include and style post &lt;em&gt;sources&lt;/em&gt; on Tumblr blogs. We\xE2\x80\x99ve started to include these by default, and will be adding them to all &lt;a href=\"http://www.tumblr.com/themes/featured\"&gt;featured themes&lt;/a&gt; over the next week. This is intended as a generic replacement for the more specific &lt;code&gt;RebloggedFrom&lt;/code&gt; variables.&lt;/p&gt;\n\
1333
+ &lt;pre&gt;{block:ContentSource}\n &lt;a href=\"{SourceURL}\"&gt;\n {lang:Source}:\n {block:SourceLogo}\n &lt;img src=\"{BlackLogoURL}\" width=\"{LogoWidth}\"\n height=\"{LogoHeight}\" alt=\"{SourceTitle}\" /&gt;\n {/block:SourceLogo}\n {block:NoSourceLogo}\n {SourceLink}\n {/block:NoSourceLogo}\n &lt;/a&gt;\n\
1334
+ {/block:ContentSource}&lt;/pre&gt;\n\
1335
+ &lt;p&gt;&lt;img src=\"http://media.tumblr.com/tumblr_l86p4wti8t1qz51zr.png\"/&gt;&lt;/p&gt;\n\
1336
+ &lt;p&gt;Alternately, any themes that don\xE2\x80\x99t include this attribution will have it automatically inserted at the end of posts. That is unless attribution already appears in the post (which will be automatically detected).&lt;/p&gt;\n\
1337
+ &lt;p&gt;&lt;img src=\"http://media.tumblr.com/tumblr_l86oclKCbw1qz4rgq.png\"/&gt;&lt;/p&gt;\n\
1338
+ &lt;p&gt;There you have it. Parent and source posters always clearly attributed, even if they live outside Tumblr. And as always, the entire reblog lineage is preserved in the post notes.&lt;/p&gt;\n\
1339
+ &lt;p&gt;We\xE2\x80\x99ll be rolling these out over the next few hours. Please &lt;a href=\"mailto:support@tumblr.com\"&gt;let us know&lt;/a&gt; if you catch anything acting funny tonight!&lt;/p&gt;</description><link>http://staff.tumblr.com/post/1059624418</link><guid>http://staff.tumblr.com/post/1059624418</guid><pubDate>Fri, 03 Sep 2010 14:49:00 -0400</pubDate></item><item><title>Marc LaFountain\n\
1340
+ Community Director\n\
1341
+ Richmond, Virginia\n\n\
1342
+ Marc gets...</title><description>&lt;img src=\"http://28.media.tumblr.com/tumblr_l84ha9qi6d1qz8q0ho1_500.png\"/&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;&lt;strong&gt;&lt;a href=\"http://marclafountain.com/\" title=\"marclafountain.com\"&gt;Marc LaFountain&lt;/a&gt;&lt;/strong&gt;&lt;br/&gt;\n\
1343
+ Community Director&lt;br/&gt;\n\
1344
+ Richmond, Virginia&lt;/p&gt;\n\n\
1345
+ &lt;p&gt;Marc gets email. A lot of email.&lt;/p&gt;\n\n\
1346
+ &lt;p&gt;As Community Director, Marc manages Tumblr\xE2\x80\x99s entire support infrastructure. From tackling general community issues to solving technical support requests, he\xE2\x80\x99s personally read and responded to thousands upon thousands of email messages regarding browser cookies, forgotten passwords, and more.&lt;/p&gt;\n\n\
1347
+ &lt;p&gt;Yet, Marc wants to emphasize that he is, in fact, an actual human being. You see, a common misconception he encounters is that he\xE2\x80\x99s a fake persona we created to make Support more personable. Emails addressed to \xE2\x80\x9CWhoever Really Reads This\xE2\x80\x9D and \xE2\x80\x9CMarc, Yeah Right\xE2\x80\x9D are a surprisingly regular occurrence.&lt;/p&gt;\n\n\
1348
+ &lt;p&gt;But after a rigorous interrogation and full-body scan, we can attest to him being a real human who is pleased to help with any of your Tumblr needs.&lt;/p&gt;\n\n\
1349
+ &lt;p&gt;\xE2\x80\x9COne of the nice things about support work is the immediacy of the results. Someone couldn\xE2\x80\x99t log into Tumblr and now they can. Someone wasn\xE2\x80\x99t sure how to do something, and now they know,\xE2\x80\x9D he says.&lt;/p&gt;\n\n\
1350
+ &lt;p&gt;As for the future, Marc is orchestrating the expansion of Tumblr\xE2\x80\x99s Support team to better serve our community as it grows over the coming months and years. We just passed 100k total customer service requests in our internal support system &lt;em&gt;today&lt;/em&gt;. Here\xE2\x80\x99s to 200k!&lt;/p&gt;\n\n\
1351
+ &lt;p&gt;&lt;strong&gt;Personal data&lt;/strong&gt;&lt;br/&gt;\n\
1352
+ He has a lovely wife named Francisca and two sometimes-lovely cats named Zora and Gracie.&lt;/p&gt;\n\n\
1353
+ &lt;p&gt;&lt;strong&gt;Favorite support email&lt;/strong&gt;&lt;br/&gt;\n\
1354
+ \xE2\x80\x9CHow harmful is it swallow a small amount of nail polish remover?\xE2\x80\x9D&lt;/p&gt;\n\n\
1355
+ &lt;p&gt;&lt;strong&gt;Fun fact&lt;/strong&gt;&lt;br/&gt;\n\
1356
+ Marc was Tumblr\xE2\x80\x99s third employee, hired after two emails and a phone call insisting he could respond to support emails faster than David. He was right.&lt;/p&gt;</description><link>http://staff.tumblr.com/post/1053345498</link><guid>http://staff.tumblr.com/post/1053345498</guid><pubDate>Thu, 02 Sep 2010 09:54:09 -0400</pubDate><category>team</category></item><item><title>Name Hunson NguyenLocation Portland, OregonFirst Post December...</title><description>&lt;img src=\"http://24.media.tumblr.com/tumblr_l80ttndPm01qz8q0ho1_500.png\"/&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;&lt;strong&gt;Name&lt;/strong&gt; &lt;a href=\"http://hunsonisgroovy.com/\" title=\"Hunson Is Groovy\"&gt;Hunson Nguyen&lt;/a&gt;&lt;br/&gt;&lt;strong&gt;Location&lt;/strong&gt; Portland, Oregon&lt;br/&gt;&lt;strong&gt;First Post&lt;/strong&gt; December 2007&lt;/p&gt;\n\n\
1357
+ &lt;p&gt;Graphic designer Hunson Nguyen is a student at Portland State University, creator of popular &lt;a href=\"http://www.tumblr.com/themes/by/hunsonisgroovy\" title=\"Themes by hunsonisgroovy | Tumblr\"&gt;Tumblr themes&lt;/a&gt;, and former competitive swimmer. A prolific blogger, Hunson helps run several group Tumblrs including &lt;a href=\"http://typolicious.tumblr.com/\" title=\"Typolicious\"&gt;Typolicious&lt;/a&gt;, &lt;a href=\"http://iheartoregon.tumblr.com/\" title=\"iheartoregon\"&gt;I Heart Oregon&lt;/a&gt;, and &lt;a href=\"http://graphiceverywhere.tumblr.com/\" title=\"Graphic Everywhere\"&gt;Graphic Everywhere&lt;/a&gt;. He can recite pi to 15 decimal places, he loves Pokemon, and he takes public transportation as often as possible. Hunson\xE2\x80\x99s favorite fonts are \xE2\x80\x9CNeutra Text\xE2\x80\x9D and \xE2\x80\x9CCambria.\xE2\x80\x9D&lt;/p&gt;\n\n\
1358
+ &lt;p&gt;Also check out\xE2\x80\xA6&lt;/p&gt;\n\n\
1359
+ &lt;p&gt;&lt;strong&gt;&lt;a href=\"http://officefridges.com/\" title=\"Office Fridges: documenting their inner lives, one photo at a time.\"&gt;Office Fridges&lt;/a&gt;&lt;/strong&gt;&lt;br/&gt;\n\
1360
+ Office Fridges aims to become the largest repository of office fridge photos available. Submit yours!&lt;/p&gt;\n\n\
1361
+ &lt;p&gt;&lt;strong&gt;&lt;a href=\"http://www.mykidsreallyeatthis.com/\" title=\"My Kids Really Eat This\"&gt;My Kids Really Eat This&lt;/a&gt;&lt;/strong&gt;&lt;br/&gt;\n\
1362
+ This mother of three provides useful tips and tricks on preparing healthy, delicious foods. Now eat your scrumptious vegetables!&lt;/p&gt;\n\n\
1363
+ &lt;p&gt;&lt;strong&gt;&lt;a href=\"http://jenbekmanprojects.tumblr.com/\" title=\"Jen Bekman Projects: 20x200 | JBG | HHS!\"&gt;Jen Bekman Projects&lt;/a&gt;&lt;/strong&gt;&lt;br/&gt;\n\
1364
+ Jen Bekman Projects is running a competition for photographers, Hey, Hot Shot! which ends today at 8:00\xC2\xA0pm EDT. Grand Prize, $10,000!&lt;/p&gt;\n\n\
1365
+ &lt;p&gt;&lt;em&gt;See you next Tuesday!&lt;/em&gt;&lt;/p&gt;</description><link>http://staff.tumblr.com/post/1042703620</link><guid>http://staff.tumblr.com/post/1042703620</guid><pubDate>Tue, 31 Aug 2010 11:01:00 -0400</pubDate><category>Tumblr Tuesday</category></item><item><title>Speaking of!</title><description>&lt;p&gt;&lt;em&gt;Mad Men&lt;/em&gt; has reentered our Sunday routine which means the Internet has that sparkle back in its all-seeing eye. Not only did &lt;a href=\"http://jezebel.com/5609384/revel-in-pete-campbells-bitchface\"&gt;Jezebel&lt;/a&gt; point us to the delightful photo blog, &lt;a href=\"http://petecampbellsbitchface.tumblr.com/\"&gt;Pete Campbell\xE2\x80\x99s Bitchface&lt;/a&gt;, but this month saw the debut of &lt;a href=\"http://natashavc.tumblr.com/\"&gt;Natasha Vargas-Cooper&lt;/a&gt;\xE2\x80\x99s first book, &lt;em&gt;&lt;a href=\"http://madmenunbuttoned.com/\"&gt;Mad Men Unbuttoned&lt;/a&gt;&lt;/em&gt;. Inspired by the TV series and born from a blog,&lt;em&gt;\xC2\xA0&lt;/em&gt;it features original art and essays by many of your favorite fellow Tumblr writers. As she told the &lt;em&gt;Paris Review&lt;/em&gt; in &lt;a href=\"http://blog.theparisreview.org/2010/08/23/mad-men-unbuttoned/\"&gt;an interview published last week&lt;/a&gt;, \xE2\x80\x9CI started a blog for kicks, figuring I\xE2\x80\x99d be putting my degree in history to work. I got a call from Harper Collins about a month later.\xE2\x80\x9D&lt;/p&gt;\n\
1366
+ &lt;p&gt;Very cool.&lt;/p&gt;\n\
1367
+ &lt;p&gt;The White House has issued what is by our estimation the first official statement regarding a blog on Tumblr. A rep told the &lt;a href=\"http://www.washingtonpost.com/wp-dyn/content/article/2010/07/29/AR2010072905971.html\"&gt;&lt;em&gt;Washington Post&lt;/em&gt;&lt;/a&gt; that an account on one of our favorite Tumblr blogs, Pitchfork Reviews Reviews, was, \xE2\x80\x9Cbasically accurate \xE2\x80\xA6 but the way he characterizes and attributes the comments and details is mostly inaccurate.\xE2\x80\x9D The &lt;a href=\"http://www.pitchforkreviewsreviews.com/post/875556831/talked-to-barack-obama-the-president-of-the-united\"&gt;post in question&lt;/a&gt; is one of our favorites: it describes in unflinching, run-on detail, the day David spent driving in President Obama\xE2\x80\x99s motorcade, \xE2\x80\x9Ccranking the van speakers,\xE2\x80\x9D and asking The President if he had ever heard of Pitchfork.&lt;/p&gt;</description><link>http://staff.tumblr.com/post/1015758119</link><guid>http://staff.tumblr.com/post/1015758119</guid><pubDate>Thu, 26 Aug 2010 16:10:00 -0400</pubDate><category>press</category></item><item><title>Name Ra Ra RiotLocation Formed in Syracuse, NY / Currently...</title><description>&lt;img src=\"http://24.media.tumblr.com/tumblr_l7nxj1dKH71qz8q0ho1_500.png\"/&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;&lt;strong&gt;Name&lt;/strong&gt; &lt;a href=\"http://rarariot.tumblr.com/\" title=\"Ra Ra Riot\"&gt;Ra Ra Riot&lt;/a&gt;&lt;br/&gt;&lt;strong&gt;Location&lt;/strong&gt; Formed in Syracuse, NY / Currently touring&lt;br/&gt;&lt;strong&gt;First Post&lt;/strong&gt; July 2009&lt;/p&gt;\n\n\
1368
+ &lt;p&gt;&lt;a href=\"http://rarariot.com/home.html\" title=\"Ra Ra Riot\"&gt;Ra Ra Riot&lt;/a&gt; is an indie rock band from Syracuse, NY that fuses swooning strings and intricate, emotional vocals to create a unique sound. Formed way back in 2006, they got their start doing shows around the Syracuse University campus and eventually moved up to music festivals. Consisting of a vocalist, guitarist, bassist, cellist, violinist, and drummer, they quickly started to grab attention thanks to their energetic live performances and the well-orchestrated layers of their music. RRR use their blog to show fans glimpses into their daily lives and into life on the road as they tour the world. Their second full-length album, &lt;em&gt;The Orchard&lt;/em&gt;, drops today.&lt;/p&gt;\n\n\
1369
+ &lt;p&gt;Also check out\xE2\x80\xA6&lt;/p&gt;\n\n\
1370
+ &lt;p&gt;&lt;strong&gt;&lt;a href=\"http://crimesagainsthughsmanatees.tumblr.com/\" title=\"Crimes against Hugh's Manatees\"&gt;Crimes against Hugh\xE2\x80\x99s Manatees&lt;/a&gt;&lt;/strong&gt;&lt;br/&gt;\n\
1371
+ A daily comic strip which features a variety of animals who experience the same mundane experiences that we humans have to put up with. Also, dinosaurs!&lt;/p&gt;\n\n\
1372
+ &lt;p&gt;&lt;strong&gt;&lt;a href=\"http://ohyeahfacts.tumblr.com/\" title=\"OH YEAH FACTS\"&gt;Oh Yeah Facts&lt;/a&gt;&lt;/strong&gt;&lt;br/&gt;\n\
1373
+ Edmund Burke said that \xE2\x80\x9Cfacts are to the mind what food is to the body.\xE2\x80\x9D I\xE2\x80\x99m positive this is true because I just read it on &lt;em&gt;Oh Yeah Facts.&lt;/em&gt;&lt;/p&gt;\n\n\
1374
+ &lt;p&gt;&lt;strong&gt;&lt;a href=\"http://mymomreviewsmyphotos.com/\" title=\"My Mom Reviews My Photos\"&gt;My Mom Reviews My Photos&lt;/a&gt;&lt;/strong&gt;&lt;br/&gt;\n\
1375
+ Tanner takes a photo every day, emails it to mom, and then posts her commentary which may or may not have anything to do with the actual photo. Mom\xE2\x80\x99s dog Toby also weighs in.&lt;/p&gt;\n\n\
1376
+ &lt;p&gt;&lt;em&gt;Be sure to &lt;a href=\"http://www.tumblr.com/directory/recommend\" title=\"Recommend | Tumblr\"&gt;recommend&lt;/a&gt; your favorite blog today!&lt;/em&gt;&lt;/p&gt;</description><link>http://staff.tumblr.com/post/1003975640</link><guid>http://staff.tumblr.com/post/1003975640</guid><pubDate>Tue, 24 Aug 2010 12:11:42 -0400</pubDate><category>Tumblr Tuesday</category></item><item><title>Today, Tumblr passed one BILLION posts!\n\
1377
+ I never imagined we...</title><description>&lt;img src=\"http://27.media.tumblr.com/tumblr_l7mvycuXGK1qz8q0ho1_500.png\"/&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;&lt;strong&gt;Today, Tumblr passed one BILLION posts!&lt;/strong&gt;&lt;/p&gt;\n\
1378
+ &lt;p&gt;I never imagined we would make it this far so quickly, and apparently neither did &lt;a href=\"http://jacobbijani.com/\"&gt;Jacob&lt;/a&gt; when he designed the &lt;a href=\"http://www.tumblr.com/about\"&gt;About&lt;/a&gt; page.&lt;/p&gt;\n\
1379
+ &lt;p&gt;The things you do with Tumblr continue to blow our minds. :)&lt;/p&gt;\n\
1380
+ &lt;p&gt;&lt;small&gt;&lt;em&gt;Thanks for the &lt;a href=\"http://techcrunch.com/2010/08/23/tumblr-1-billionposts/\"&gt;shout out&lt;/a&gt;, TC!&lt;/em&gt;&lt;/small&gt;&lt;/p&gt;</description><link>http://staff.tumblr.com/post/1001026248</link><guid>http://staff.tumblr.com/post/1001026248</guid><pubDate>Mon, 23 Aug 2010 21:54:12 -0400</pubDate></item><item><title>Introducing: Tumblr Android App\n\
1381
+ Built by the same brilliant team...</title><description>&lt;img src=\"http://27.media.tumblr.com/tumblr_l7d2p4mJJq1qz8q0ho1_500.png\"/&gt;&lt;br/&gt; &lt;br/&gt;&lt;img src=\"http://25.media.tumblr.com/tumblr_l7d2p4mJJq1qz8q0ho2_500.png\"/&gt;&lt;br/&gt; &lt;br/&gt;&lt;img src=\"http://24.media.tumblr.com/tumblr_l7d2p4mJJq1qz8q0ho3_500.png\"/&gt;&lt;br/&gt; &lt;br/&gt;&lt;img src=\"http://28.media.tumblr.com/tumblr_l7d2p4mJJq1qz8q0ho4_500.png\"/&gt;&lt;br/&gt; &lt;br/&gt;&lt;img src=\"http://27.media.tumblr.com/tumblr_l7d2p4mJJq1qz8q0ho5_500.png\"/&gt;&lt;br/&gt; &lt;br/&gt;&lt;p&gt;&lt;strong&gt;Introducing: Tumblr Android App&lt;/strong&gt;&lt;/p&gt;\n\
1382
+ &lt;p&gt;Built by the same &lt;a href=\"http://mobelux.tumblr.com/\"&gt;brilliant team&lt;/a&gt; behind the Tumblr iPhone App, v1 of the official Tumblr Android App is ready to download!&lt;/p&gt;\n\
1383
+ &lt;p&gt;&lt;a href=\"market://details?id=com.tumblr\"&gt;Click here from your Android phone to install&lt;/a&gt;&lt;br/&gt;&lt;small&gt;(or &lt;a href=\"http://www.tumblr.com/downloads/android/tumblr.apk\"&gt;click here&lt;/a&gt; to download directly)&lt;/small&gt;&lt;/p&gt;</description><link>http://staff.tumblr.com/post/998292483</link><guid>http://staff.tumblr.com/post/998292483</guid><pubDate>Mon, 23 Aug 2010 10:47:59 -0400</pubDate><category>features</category></item><item><title>Tumbleroo: Tumblr for iPad\n\
1384
+ Jerry Brito and Peter Snyder\xC2\xA0just...</title><description>&lt;img src=\"http://27.media.tumblr.com/tumblr_l7cqw5u8S91qz8q0ho1_r1_500.png\"/&gt;&lt;br/&gt; &lt;br/&gt;&lt;img src=\"http://25.media.tumblr.com/tumblr_l7cqw5u8S91qz8q0ho2_r1_500.png\"/&gt;&lt;br/&gt; &lt;br/&gt;&lt;img src=\"http://27.media.tumblr.com/tumblr_l7cqw5u8S91qz8q0ho3_r1_500.png\"/&gt;&lt;br/&gt; &lt;br/&gt;&lt;img src=\"http://29.media.tumblr.com/tumblr_l7cqw5u8S91qz8q0ho6_r2_500.png\"/&gt;&lt;br/&gt; &lt;br/&gt;&lt;p&gt;&lt;strong&gt;&lt;a href=\"http://tumbleroo.com/\"&gt;Tumbleroo: Tumblr for iPad&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;\n\
1385
+ &lt;p&gt;&lt;a href=\"http://jerrybrito.org/\"&gt;Jerry Brito&lt;/a&gt; and &lt;a href=\"http://snyderp.tumblr.com/\"&gt;Peter Snyder&lt;/a&gt;\xC2\xA0just launched this beautiful Tumblr app for the iPad. Browse the Dashboard; like, reblog, and create posts; even manage multiple blogs. Awesome.&lt;/p&gt;\n\
1386
+ &lt;p&gt;&lt;a href=\"http://itunes.apple.com/us/app/tumbleroo/id384975794\"&gt;You can grab it now for just $4.99!&lt;/a&gt;&lt;/p&gt;</description><link>http://staff.tumblr.com/post/972414668</link><guid>http://staff.tumblr.com/post/972414668</guid><pubDate>Wed, 18 Aug 2010 11:29:48 -0400</pubDate></item><item><title>Name Pasquale D\xE2\x80\x99SilvaLocation Born in Sydney, Australia /...</title><description>&lt;img src=\"http://25.media.tumblr.com/tumblr_l7ay6qKgbF1qz8q0ho1_500.png\"/&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;&lt;strong&gt;Name&lt;/strong&gt; &lt;a href=\"http://pasqualedsilva.com/\" title=\"Pasquale D'Silva - Animation &amp; Illustration\"&gt;Pasquale D\xE2\x80\x99Silva&lt;/a&gt;&lt;br/&gt;&lt;strong&gt;Location&lt;/strong&gt; Born in Sydney, Australia / Currently on tour&lt;br/&gt;&lt;strong&gt;First Post&lt;/strong&gt; September 2009&lt;/p&gt;\n\n\
1387
+ &lt;p&gt;Brilliant animator and illustrator Pasquale D\xE2\x80\x99Silva wanted to travel the world, so he put forth the following proposal: You pay for airfare and survival expenses, and he\xE2\x80\x99ll come to you and barter his creative skills in return. If you think that\xE2\x80\x99s insane, it gets even more zany: It worked! So far he\xE2\x80\x99s been to New York, Chicago, Boston, San Francisco, and Vancouver, to name a few. Some recent projects he\xE2\x80\x99s helped out include &lt;a href=\"http://forrst.com/\" title=\"Forrst ~ A place for designers and developers to share screenshots, links, code, and questions with their peers.\"&gt;Forrst&lt;/a&gt; and &lt;a href=\"http://carbonmade.com/\" title=\"Carbonmade : Your online portfolio.\"&gt;Carbonmade&lt;/a&gt;, but personally we\xE2\x80\x99re most impressed with upgrades he made to &lt;a href=\"http://tumblrbot.tumblr.com/\" title=\"TumblrBot\"&gt;TumblrBot\xE2\x80\x99s&lt;/a&gt; human emotion chip.&lt;/p&gt;\n\n\
1388
+ &lt;p&gt;Also check out\xE2\x80\xA6&lt;/p&gt;\n\n\
1389
+ &lt;p&gt;&lt;strong&gt;&lt;a href=\"http://weartoday.tumblr.com/\" title=\"Wear Today\"&gt;Wear Today&lt;/a&gt;&lt;/strong&gt;&lt;br/&gt;\n\
1390
+ This guy keeps track of what he wears every day on Tumblr. Oddly beautiful.&lt;/p&gt;\n\n\
1391
+ &lt;p&gt;&lt;strong&gt;&lt;a href=\"http://-volcanoes.tumblr.com/\" title=\"Look at these fucking volcanoes.\"&gt;Volcanoes&lt;/a&gt;&lt;/strong&gt;&lt;br/&gt;\n\
1392
+ A volcano is an opening in a planet\xE2\x80\x99s surface, which allows hot magma, ash, and gases to escape from below the surface. That\xE2\x80\x99s so hardcore!&lt;/p&gt;\n\n\
1393
+ &lt;p&gt;&lt;strong&gt;&lt;a href=\"http://stream.simplebits.com/\"&gt;SimpleBits&lt;/a&gt;&lt;/strong&gt;&lt;br/&gt;\n\
1394
+ Designer, author and speaker Dan Cederholm founded a tiny creative studio called SimpleBits. This is their blog.&lt;/p&gt;\n\n\
1395
+ &lt;p&gt;&lt;em&gt;Who do &lt;strong&gt;you&lt;/strong&gt; recommend for Tumblr Tuesday?&lt;/em&gt;&lt;/p&gt;</description><link>http://staff.tumblr.com/post/967721516</link><guid>http://staff.tumblr.com/post/967721516</guid><pubDate>Tue, 17 Aug 2010 14:06:12 -0400</pubDate><category>Tumblr Tuesday</category></item><item><title>Name Allison WeissLocation Atlanta/BrooklynFirst Post December...</title><description>&lt;img src=\"http://26.media.tumblr.com/tumblr_l6wmihtwyd1qz8q0ho1_r1_500.png\"/&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;&lt;strong&gt;Name&lt;/strong&gt; &lt;a title=\"ALLISONW.COM - Home of Allison Weiss\" href=\"http://allisonweiss.tumblr.com/\"&gt;Allison Weiss&lt;/a&gt;&lt;br/&gt;&lt;strong&gt;Location&lt;/strong&gt; Atlanta/Brooklyn&lt;br/&gt;&lt;strong&gt;First Post&lt;/strong&gt; December 2007&lt;/p&gt;\n\
1396
+ &lt;p&gt;At fifteen, Allison Weiss picked up a guitar and decided to be a punk rock star in an effort to win over her high school crush. The relationship didn\xE2\x80\x99t last long, but her passion for music has. She spent five years in Athens, Georgia playing every show she could get: open mics, festivals, street corners. She recorded and released albums, booked tours, and built a dedicated fanbase, all while getting her degree in graphic design. And today, &lt;em&gt;literally today&lt;/em&gt;, she\xE2\x80\x99s driving a 16-foot truck filled with all her belongings up to Brooklyn to embark on a new phase in her life and career.&lt;/p&gt;\n\
1397
+ &lt;p&gt;Also check out\xE2\x80\xA6&lt;/p&gt;\n\
1398
+ &lt;p&gt;&lt;strong&gt;&lt;a title=\"Better Book Titles\" href=\"http://betterbooktitles.com/\"&gt;Better Book Titles&lt;/a&gt;&lt;/strong&gt;&lt;br/&gt; For those of you without the time to read book reviews or blurbs or first sentences: This blog cuts through the cryptic \xE2\x80\x9Creading\xE2\x80\x9D part and gives you the meat of a story in one condensed image.&lt;/p&gt;\n\
1399
+ &lt;p&gt;&lt;strong&gt;&lt;a title=\"Look At This Fucking Person\" href=\"http://www.lookatthisfuckingperson.com/\"&gt;Look At This Fucking Person&lt;/a&gt;&lt;/strong&gt;&lt;br/&gt; Regular people, like you and me. Just look at them.&lt;/p&gt;\n\
1400
+ &lt;p&gt;&lt;strong&gt;&lt;a title=\"Clear Science!\" href=\"http://clearscience.tumblr.com/\"&gt;Clear Science&lt;/a&gt;&lt;/strong&gt;&lt;br/&gt; Science lessons presented in clear, pain English that anyone can understand. I mean, maybe not &lt;em&gt;anyone&lt;/em&gt;, really, but most of us.&lt;/p&gt;\n\
1401
+ &lt;p&gt;&lt;em&gt;See you next Tuesday!&lt;/em&gt;&lt;/p&gt;</description><link>http://staff.tumblr.com/post/932308425</link><guid>http://staff.tumblr.com/post/932308425</guid><pubDate>Tue, 10 Aug 2010 11:39:10 -0400</pubDate><category>Tumblr Tuesday</category></item><item><title>Time Out New York: Best jobs in New York City\n\
1402
+ We\xE2\x80\x99re so...</title><description>&lt;img src=\"http://29.media.tumblr.com/tumblr_l6mub7s43g1qz8q0ho1_r2_500.jpg\"/&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;&lt;strong&gt;&lt;a href=\"http://newyork.timeout.com/articles/jobs/87827/tumblr-best-jobs-in-new-york-city\"&gt;Time Out New York: Best jobs in New York City&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;\n\
1403
+ &lt;p&gt;We\xE2\x80\x99re so lucky to work here. And we\xE2\x80\x99re incredibly honored that &lt;a href=\"http://timeoutnewyork.tumblr.com/\"&gt;Time Out&lt;/a&gt; featured us in their lineup of the &lt;a href=\"http://newyork.timeout.com/articles/jobs/87826/best-jobs-in-new-york-city\"&gt;best places to work&lt;/a&gt; in New York City!&lt;/p&gt;\n\
1404
+ &lt;p&gt;If you\xE2\x80\x99re an awesome developer, we\xE2\x80\x99d love to\xC2\xA0&lt;a href=\"http://www.tumblr.com/jobs/web-app-developer\"&gt;work with you&lt;/a&gt;.&lt;/p&gt;\n\
1405
+ &lt;p&gt;&lt;small&gt;&lt;em&gt;Photo by the superb &lt;a href=\"http://www.allisonmichaelorenstein.com/\"&gt;Allison Michael Orenstein&lt;/a&gt;&lt;/em&gt;&lt;/small&gt;&lt;/p&gt;</description><link>http://staff.tumblr.com/post/903269434</link><guid>http://staff.tumblr.com/post/903269434</guid><pubDate>Wed, 04 Aug 2010 11:34:00 -0400</pubDate></item><item><title>Name Delbert ShoopmanLocation Los Angeles, CAFirst Post May 29th...</title><description>&lt;img src=\"http://27.media.tumblr.com/tumblr_l6l0jerxZc1qz8q0ho1_r1_500.png\"/&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;&lt;strong&gt;Name&lt;/strong&gt; &lt;a href=\"http://delbertshoopman.tumblr.com/\" title=\"DELBERT SHOOPMAN Delbert Shoopman Dot Com was started to bring smiles and fun into people's lives on the internet. The daily updated blog gives a first hand view into his life and the sometimes crazy things that he does to make people laugh.\"&gt;Delbert Shoopman&lt;/a&gt;&lt;br/&gt;&lt;strong&gt;Location&lt;/strong&gt; Los Angeles, CA&lt;br/&gt;&lt;strong&gt;First Post&lt;/strong&gt; May 29th 2007&lt;/p&gt;\n\n\
1406
+ &lt;p&gt;While he may &lt;em&gt;pretend&lt;/em&gt; to be mild-mannered assistant and producer, Delbert Shoopman is in reality an Internet Funmaker. Why, just last week, he announced his involvement in a jazz-fusion HIP/HOP dance team called the KRU-dit\xC3\xA9s, he put out a press release announcing his retirement from eating guacamole, and bought a zoot suit just for the lulz. Let\xE2\x80\x99s not forget his involvement in &lt;a href=\"http://thefootlooseremake.com/\" title=\"The Footloose Remake\"&gt;The Footloose Remake&lt;/a&gt; project, a collection of amateur filmmakers and video-making enthusiasts recreating the Kevin Bacon classic. Or &lt;a href=\"http://www.ikeaheights.com/\" title=\"IKEA Heights\"&gt;IKEA HEIGHTS&lt;/a&gt;, a melodrama shot entirely in the Burbank Ikea Store without the store knowing. Delbert blogs about his amazing adventures and about being positive. (YAY!)&lt;/p&gt;\n\n\
1407
+ &lt;p&gt;Also check out\xE2\x80\xA6&lt;/p&gt;\n\n\
1408
+ &lt;p&gt;&lt;strong&gt;&lt;a href=\"http://celebratewithcake.info/\" title=\"Baking recipes, delicious photos, bake, submit and enjoy - Celebrate With Cake\"&gt;Celebrate With Cake&lt;/a&gt;&lt;/strong&gt;&lt;br/&gt;\n\
1409
+ Beautiful cakes, beautiful recipes, beautiful design. I just gained 10 beautiful pounds from loading this blog.&lt;/p&gt;\n\n\
1410
+ &lt;p&gt;&lt;strong&gt;&lt;a href=\"http://captchart.tumblr.com/\" title=\"CAPTCHArt\"&gt;CAPTCHArt&lt;/a&gt;&lt;/strong&gt;&lt;br/&gt;\n\
1411
+ Art inspired by random &lt;a href=\"http://en.wikipedia.org/wiki/CAPTCHA\" title=\"CAPTCHA - Wikipedia, the free encyclopedia\"&gt;CAPTCHA&lt;/a&gt; phrases. Not recommended for bots.&lt;/p&gt;\n\n\
1412
+ &lt;p&gt;&lt;strong&gt;&lt;a href=\"http://peoplewho.us/\" title=\"...PEOPLE WHO...\"&gt;People Who\xE2\x80\xA6&lt;/a&gt;&lt;/strong&gt;&lt;br/&gt;\n\
1413
+ A frustrated anthropologist\xE2\x80\x99s compendium of those people who confound him with their continued, persistent existence.&lt;/p&gt;\n\n\
1414
+ &lt;p&gt;&lt;em&gt;So long for now!&lt;/em&gt;&lt;/p&gt;</description><link>http://staff.tumblr.com/post/898777863</link><guid>http://staff.tumblr.com/post/898777863</guid><pubDate>Tue, 03 Aug 2010 13:27:22 -0400</pubDate><category>Tumblr Tuesday</category></item><item><title>\xE2\x80\x9CCrush\xE2\x80\x9D enhancements!</title><description>&lt;a href=\"http://www.tumblr.com/following\"&gt;\xE2\x80\x9CCrush\xE2\x80\x9D enhancements!&lt;/a&gt;: &lt;p&gt;&lt;strong&gt;We\xE2\x80\x99ve fixed a few issues that were making\xC2\xA0\xE2\x80\x9CTumblr crushes\xE2\x80\x9D less fun than they should be:&lt;/strong&gt;&lt;/p&gt;\n\
1415
+ &lt;p&gt;&lt;strong&gt;1) &lt;strike&gt;Once you\xE2\x80\x99ve liked a few hundred posts, your Crushes rarely change.&lt;/strike&gt;&lt;/strong&gt;&lt;/p&gt;\n\
1416
+ &lt;p&gt;Now they\xE2\x80\x99re pulled from your &lt;em&gt;recent&lt;/em&gt; activity, so you can see where your love is going right this second.&lt;/p&gt;\n\
1417
+ &lt;p&gt;&lt;strong&gt;2)\xC2\xA0&lt;strike&gt;Crushes only count Likes, and don\xE2\x80\x99t factor in Reblogs.&lt;/strike&gt;&lt;/strong&gt;&lt;/p&gt;\n\
1418
+ &lt;p&gt;Now they include\xC2\xA0&lt;em&gt;both&lt;/em&gt;!&lt;/p&gt;\n\
1419
+ &lt;p&gt;&lt;strong&gt;3)\xC2\xA0&lt;strike&gt;The\xC2\xA0&lt;em&gt;total&lt;/em&gt;\xC2\xA0counts don\xE2\x80\x99t give context to all the\xC2\xA0&lt;em&gt;other&lt;/em&gt;\xC2\xA0blogs you follow.&lt;/strike&gt;&lt;/strong&gt;&lt;/p&gt;\n\
1420
+ &lt;p&gt;The counts now show the\xC2\xA0&lt;em&gt;percentage of your attention&lt;/em&gt;\xC2\xA0that you\xE2\x80\x99re giving your crushes. (Out of everyone you Like and Reblog!)&lt;/p&gt;\n\n\
1421
+ &lt;p&gt;&lt;strong&gt;4) &lt;strike&gt;Calculating crushes kills our databases.&lt;/strike&gt;&lt;/strong&gt;&lt;/p&gt;\n\
1422
+ &lt;p&gt;Crushes now run on an asynchronous queue that refreshes every 12 hours.&lt;/p&gt;</description><link>http://staff.tumblr.com/post/880327102</link><guid>http://staff.tumblr.com/post/880327102</guid><pubDate>Fri, 30 Jul 2010 12:55:55 -0400</pubDate></item><item><title>Borked ID3 tags got you down? Now you can edit your Audio...</title><description>&lt;img src=\"http://25.media.tumblr.com/tumblr_l6a6xikad61qz8q0ho1_500.png\"/&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;Borked ID3 tags got you down? Now you can edit your Audio post\xE2\x80\x99s track info and album art! Sweet.&lt;/p&gt;</description><link>http://staff.tumblr.com/post/871996066</link><guid>http://staff.tumblr.com/post/871996066</guid><pubDate>Wed, 28 Jul 2010 16:13:26 -0400</pubDate><category>features</category></item><item><title>Name Tess LynchLocation Los AngelesFirst Post June 2008\n\n\
1423
+ Actor...</title><description>&lt;img src=\"http://29.media.tumblr.com/tumblr_l687saXti01qz8q0ho1_500.png\"/&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;&lt;strong&gt;Name&lt;/strong&gt; &lt;a href=\"http://tesslynch.tumblr.com/\" title=\"Wipe Your Feet\"&gt;Tess Lynch&lt;/a&gt;&lt;br/&gt;&lt;strong&gt;Location&lt;/strong&gt; Los Angeles&lt;br/&gt;&lt;strong&gt;First Post&lt;/strong&gt; June 2008&lt;/p&gt;\n\n\
1424
+ &lt;p&gt;Actor and writer Tess Lynch\xE2\x80\x99s work has appeared on &lt;em&gt;This Recording&lt;/em&gt;, &lt;em&gt;Bravo Fan&lt;/em&gt;, and &lt;em&gt;Funny or Die&lt;/em&gt;, but let\xE2\x80\x99s be honest \xE2\x80\x94 her appearance in a Crest commercial earlier this year is what she\xE2\x80\x99s truly famous for. When she\xE2\x80\x99s not writing funny stories about ponies or reviewing disappointing food products, she\xE2\x80\x99s proud to contribute to anthologies like &lt;a href=\"http://comingandcrying.com\" title=\"Coming &amp; Crying: real stories about sex from the other side of the bed by Melissa Gira Grant and Meaghan O'Connell \n\
1425
+ Kickstarter\"&gt;&lt;em&gt;Coming and Crying&lt;/em&gt;&lt;/a&gt;. Tess enjoys blogging about social injustice and drinking milk (pictured above).&lt;/p&gt;\n\n\
1426
+ &lt;p&gt;Also check out\xE2\x80\xA6&lt;/p&gt;\n\n\
1427
+ &lt;p&gt;&lt;strong&gt;&lt;a href=\"http://sbnation.tumblr.com/\" title=\"SB Nation\"&gt;SB Nation&lt;/a&gt;&lt;/strong&gt;&lt;br/&gt;\n\
1428
+ Sports news and fan opinion from the good people at &lt;a href=\"http://www.sbnation.com/\" title=\"SB Nation - Sports News, Scores and Fan Opinion Powered by 248 Sports Blogs\"&gt;SB Nation&lt;/a&gt;, in convenient Tumblr-size.&lt;/p&gt;\n\n\
1429
+ &lt;p&gt;&lt;strong&gt;&lt;a href=\"http://mattgriffo.com/\" title=\"Matt Griffo\"&gt;Matt Griffo&lt;/a&gt;&lt;/strong&gt;&lt;br/&gt;\n\
1430
+ Matt is a comedian in Chicago. His hair is hilarious and it\xE2\x80\x99s not even part of his act. I assume he loves his pet dog.&lt;/p&gt;\n\n\
1431
+ &lt;p&gt;&lt;strong&gt;&lt;a href=\"http://canigetamanwiththat.com/\" title=\"CAN I GET A MAN WITH THAT?\"&gt;Can I Get a Man With That?&lt;/a&gt;&lt;/strong&gt;&lt;br/&gt;\n\
1432
+ Those hilarious, embarrassing or downright shameful dating stories you\xE2\x80\x99ve only dared to tell your closest girlfriends. (Now with extra period stories!)&lt;/p&gt;\n\n\
1433
+ &lt;p&gt;&lt;em&gt;Until we meet again!&lt;/em&gt;&lt;/p&gt;</description><link>http://staff.tumblr.com/post/867136523</link><guid>http://staff.tumblr.com/post/867136523</guid><pubDate>Tue, 27 Jul 2010 15:21:28 -0400</pubDate><category>Tumblr Tuesday</category></item><item><title>Looking for an intern</title><description>&lt;p&gt;The time has come! We are officially looking for a part-time &lt;strong&gt;Community Intern&lt;/strong&gt; to help with &lt;em&gt;Meetups&lt;/em&gt;, &lt;em&gt;Events&lt;/em&gt;, and &lt;em&gt;Press&lt;/em&gt;.&lt;/p&gt;\n\
1434
+ &lt;p&gt;You should love: People, Tumblr, email, the post office, and &lt;strong&gt;getting paid&lt;/strong&gt; to do amazing things with awesome people.&lt;/p&gt;\n\
1435
+ &lt;p&gt;We totally love: All of the same stuff, minus the post office (but even that is kind of hilarious if you\xE2\x80\x99re in the right mood).&lt;/p&gt;\n\
1436
+ &lt;p&gt;If you live near NYC and are interested in hearing more, please email &lt;a href=\"mailto:jobs@tumblr.com\"&gt;jobs@tumblr.com&lt;/a&gt;.&lt;/p&gt;\n\
1437
+ &lt;p&gt;Thank you!&lt;/p&gt;</description><link>http://staff.tumblr.com/post/850504692</link><guid>http://staff.tumblr.com/post/850504692</guid><pubDate>Fri, 23 Jul 2010 14:34:55 -0400</pubDate></item><item><title>New theme from\xC2\xA0Obox Design!\n\
1438
+ Antiquity uses a mix of\xC2\xA0subtle...</title><description>&lt;img src=\"http://26.media.tumblr.com/tumblr_l5vkxnUvoZ1qz8q0ho1_500.png\"/&gt;&lt;br/&gt; &lt;br/&gt;&lt;img src=\"http://28.media.tumblr.com/tumblr_l5vkxnUvoZ1qz8q0ho2_500.png\"/&gt;&lt;br/&gt; &lt;br/&gt;&lt;img src=\"http://27.media.tumblr.com/tumblr_l5vkxnUvoZ1qz8q0ho3_500.png\"/&gt;&lt;br/&gt; &lt;br/&gt;&lt;img src=\"http://24.media.tumblr.com/tumblr_l5vkxnUvoZ1qz8q0ho4_500.png\"/&gt;&lt;br/&gt; &lt;br/&gt;&lt;p&gt;&lt;strong&gt;New theme from\xC2\xA0&lt;a href=\"http://www.obox-design.com\"&gt;Obox Design&lt;/a&gt;!&lt;/strong&gt;&lt;/p&gt;\n\
1439
+ &lt;p&gt;&lt;strong&gt;&lt;a href=\"http://www.tumblr.com/theme/11126\"&gt;Antiquity&lt;/a&gt;&lt;/strong&gt; uses a mix of\xC2\xA0subtle textures,\xC2\xA0thoughtful typography, and faded colors to create a worn-in, modern design.&lt;/p&gt;\n\
1440
+ &lt;p&gt;The theme supports Disqus commenting and\xC2\xA0integration with various social networks along with a custom header and optional single-column layout.&lt;/p&gt;\n\
1441
+ &lt;p&gt;Check out the &lt;a href=\"http://obox-antiquity.tumblr.com/\"&gt;demo&lt;/a&gt; and install it for just $9.&lt;/p&gt;</description><link>http://staff.tumblr.com/post/846371286</link><guid>http://staff.tumblr.com/post/846371286</guid><pubDate>Thu, 22 Jul 2010 16:10:00 -0400</pubDate><category>themes</category></item></channel></rss>\n"
1442
+ http_version: "1.1"
1443
+ - !ruby/struct:VCR::HTTPInteraction
1444
+ request: !ruby/struct:VCR::Request
1445
+ method: :get
1446
+ uri: http://status.sendgrid.com:80/
1447
+ body:
1448
+ headers:
1449
+ accept:
1450
+ - "*/*"
1451
+ user-agent:
1452
+ - Ruby
1453
+ response: !ruby/struct:VCR::Response
1454
+ status: !ruby/struct:VCR::ResponseStatus
1455
+ code: 200
1456
+ message: OK
1457
+ headers:
1458
+ date:
1459
+ - Tue, 28 Sep 2010 03:01:57 GMT
1460
+ server:
1461
+ - Microsoft-IIS/6.0
1462
+ x-powered-by:
1463
+ - ASP.NET
1464
+ x-aspnet-version:
1465
+ - 2.0.50727
1466
+ cache-control:
1467
+ - private
1468
+ content-type:
1469
+ - text/html; charset=utf-8
1470
+ content-length:
1471
+ - "573"
1472
+ body: "\r\n\
1473
+ <!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01//EN\"\r\n \"http://www.w3.org/TR/html4/strict.dtd\">\r\n\
1474
+ <html>\r\n\
1475
+ \r\n\
1476
+ <head>\r\n <title>SendGrid Real-time status </title>\r\n <META name=\"description\" content=\"This is the place to find out about system status and alerts for SendGrid\"><META name=\"keywords\" content=\"status, real-time, sendgrid\">\r\n\
1477
+ </head>\r\n\
1478
+ <frameset rows=\"100%,*\" border=\"0\">\r\n <frame src=\"http://support.sendgrid.com/forums/220245-sendgrid-status\" frameborder=\"0\" />\r\n <frame frameborder=\"0\" noresize />\r\n\
1479
+ </frameset>\r\n\
1480
+ \r\n\
1481
+ <!-- pageok -->\r\n\
1482
+ <!-- 05 -->\r\n\
1483
+ <!-- -->\r\n\
1484
+ </html>"
1485
+ http_version: "1.1"
1486
+ - !ruby/struct:VCR::HTTPInteraction
1487
+ request: !ruby/struct:VCR::Request
1488
+ method: :get
1489
+ uri: http://support.sendgrid.com:80/forums/220245-sendgrid-status/posts.rss
1490
+ body:
1491
+ headers:
1492
+ accept:
1493
+ - "*/*"
1494
+ user-agent:
1495
+ - Ruby
1496
+ response: !ruby/struct:VCR::Response
1497
+ status: !ruby/struct:VCR::ResponseStatus
1498
+ code: 200
1499
+ message: OK
1500
+ headers:
1501
+ server:
1502
+ - nginx/0.6.35
1503
+ date:
1504
+ - Tue, 28 Sep 2010 03:03:19 GMT
1505
+ content-type:
1506
+ - application/rss+xml; charset=utf-8
1507
+ connection:
1508
+ - keep-alive
1509
+ - close
1510
+ status:
1511
+ - 200 OK
1512
+ etag:
1513
+ - "\"23dbe733484a15571576a2fe692610e9\""
1514
+ p3p:
1515
+ - CP="NOI DSP COR NID ADMa OPTa OUR NOR"
1516
+ x-runtime:
1517
+ - "16"
1518
+ content-length:
1519
+ - "17000"
1520
+ set-cookie:
1521
+ - _zendesk_session=BAh7CToPc2Vzc2lvbl9pZCIlNTVhMzdiMjkzNGZkNjhiZWYwY2RlZDIyNjg5MGVkNzc6DGFjY291bnRpAgVYIhN3YXJkZW4ubWVzc2FnZXsAOgdpZCIUbm11bDl4NXhuZnY0cWdw--ad38aafcf2be317b641925b31c97a8cdbcb2a08b; path=/; HttpOnly
1522
+ cache-control:
1523
+ - private, max-age=0, must-revalidate
1524
+ body: |
1525
+ <?xml version="1.0" encoding="UTF-8"?>
1526
+ <rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0">
1527
+ <channel>
1528
+ <title>Recent posts in 'SendGrid Status' | SendGrid Support</title>
1529
+ <link>http://support.sendgrid.com/posts</link>
1530
+ <language>en-us</language>
1531
+ <ttl>60</ttl>
1532
+ <item>
1533
+ <title>"Maintenance Alert: September 5, 2010 at 2100 PDT" in SendGrid Status - comment added by Isaac Saldana </title>
1534
+ <description>&lt;p&gt;All updates are done, everything went smoothly. &amp;nbsp;Thanks for your patience.&lt;/p&gt;</description>
1535
+ <pubDate>Sun, 05 Sep 2010 23:43:07 -0600</pubDate>
1536
+ <guid isPermaLink="false">support.sendgrid.com/forums/220245-sendgrid-status/posts.rss:220245:249904:373239</guid>
1537
+ <author>Isaac Saldana</author>
1538
+ <link>http://support.sendgrid.com/entries/249904-maintenance-alert-september-5-2010-at-2100-pdt</link>
1539
+ </item>
1540
+ <item>
1541
+ <title>"Maintenance Alert: September 5, 2010 at 2100 PDT" in SendGrid Status - comment added by Isaac Saldana </title>
1542
+ <description>&lt;p&gt;We are still upgrading some servers but now you should not experience any delays.&lt;/p&gt;</description>
1543
+ <pubDate>Sun, 05 Sep 2010 22:59:01 -0600</pubDate>
1544
+ <guid isPermaLink="false">support.sendgrid.com/forums/220245-sendgrid-status/posts.rss:220245:249904:373195</guid>
1545
+ <author>Isaac Saldana</author>
1546
+ <link>http://support.sendgrid.com/entries/249904-maintenance-alert-september-5-2010-at-2100-pdt</link>
1547
+ </item>
1548
+ <item>
1549
+ <title>"Maintenance Alert: September 5, 2010 at 2100 PDT" in SendGrid Status - comment added by Isaac Saldana </title>
1550
+ <description>&lt;p&gt;Upgrade started&lt;/p&gt;</description>
1551
+ <pubDate>Sun, 05 Sep 2010 22:10:26 -0600</pubDate>
1552
+ <guid isPermaLink="false">support.sendgrid.com/forums/220245-sendgrid-status/posts.rss:220245:249904:373165</guid>
1553
+ <author>Isaac Saldana</author>
1554
+ <link>http://support.sendgrid.com/entries/249904-maintenance-alert-september-5-2010-at-2100-pdt</link>
1555
+ </item>
1556
+ <item>
1557
+ <title>Maintenance Alert: September 5, 2010 at 2100 PDT</title>
1558
+ <description>&lt;p&gt;Our developers will be applying software updates to our Cassandra cluster to resolve some issues discovered in our Aug. 25, 2010 outage. During this time, email sent with click tracking enabled will be queued and delayed until maintenance is completed. Email that does not have click tracking on &lt;span style="text-decoration: underline;"&gt;will not be affected&lt;/span&gt;. Therefore, &lt;strong&gt;if you want to avoid delivery delays during this maintenance window, we recommend that you disable click tracking during this time.&lt;/strong&gt;&lt;/p&gt;
1559
+ &lt;h2&gt;Details:&lt;/h2&gt;
1560
+ &lt;p&gt;&lt;strong&gt;When: &lt;/strong&gt;Sunday, September 5, 2010 at 2100 PDT&lt;br /&gt;&lt;strong&gt;Duration:&lt;/strong&gt; 2-3 hours&lt;br /&gt;&lt;strong&gt;Impact:&lt;/strong&gt; Email with click tracking enabled will be delayed until maintenance is completed. Email without click tracking &lt;span style="text-decoration: underline;"&gt;will not be affected&lt;/span&gt;.&lt;br /&gt;&lt;strong&gt;Updates:&lt;/strong&gt; We will update our &lt;a href="http://twitter.com/sendgrid" target="_blank"&gt;twitter feed&lt;/a&gt; before and during the maintenance window as necessary.&lt;/p&gt;</description>
1561
+ <pubDate>Mon, 30 Aug 2010 15:50:28 -0600</pubDate>
1562
+ <guid isPermaLink="false">support.sendgrid.com/forums/220245-sendgrid-status/posts.rss:220245:249904</guid>
1563
+ <author>Joe Scharf</author>
1564
+ <link>http://support.sendgrid.com/entries/249904-maintenance-alert-september-5-2010-at-2100-pdt</link>
1565
+ </item>
1566
+ <item>
1567
+ <title>"Postmortem: Aug. 25 2010 Delivery Delays" in SendGrid Status - comment added by Isaac Saldana </title>
1568
+ <description>&lt;p&gt;@adam just to follow up, we went over our logs and didn't find lost emails. &amp;nbsp;If any time we do so, we will alert users individually. &amp;nbsp;We will consider this issue resolved. &amp;nbsp;Thanks again.&lt;/p&gt;</description>
1569
+ <pubDate>Sat, 28 Aug 2010 18:37:04 -0600</pubDate>
1570
+ <guid isPermaLink="false">support.sendgrid.com/forums/220245-sendgrid-status/posts.rss:220245:248686:359428</guid>
1571
+ <author>Isaac Saldana</author>
1572
+ <link>http://support.sendgrid.com/entries/248686-postmortem-aug-25-2010-delivery-delays</link>
1573
+ </item>
1574
+ <item>
1575
+ <title>"Postmortem: Aug. 25 2010 Delivery Delays" in SendGrid Status - comment added by Isaac Saldana </title>
1576
+ <description>&lt;p&gt;@adam Thanks so much for the feedback and sorry for the inconvenience!. &amp;nbsp;We are not aware of any issues, we started queuing email to prevent any email loss. &amp;nbsp;The current architecture is designed so things like click tracking don't get in the way of email sending. &amp;nbsp;Users without click tracking enabled are not affected by Cassandra issues.&lt;/p&gt;
1577
+ &lt;p&gt;&amp;nbsp;&lt;/p&gt;
1578
+ &lt;p&gt;@nathan Thanks, we really appreciate and value your comments. &amp;nbsp;This is part of what makes us get up in the morning and be excited about building a better service. &amp;nbsp;We are still working on being more transparent. &amp;nbsp;We will be installing tools to provide realtime feedback on the status of the system. &amp;nbsp;We've had great feedback from our users on what tools to use and we will get right on it. &amp;nbsp;Twilio suggested http://www.stashboard.org/ and we've had suggestions about a separate Twitter account for SMS/status notifications.&lt;/p&gt;
1579
+ &lt;p&gt;&amp;nbsp;&lt;/p&gt;
1580
+ &lt;p&gt;Thanks everyone for your understanding and feedback. &amp;nbsp;We will be evaluating and building different tools in the near future. &amp;nbsp;And again, sorry for the inconvenience.&lt;/p&gt;</description>
1581
+ <pubDate>Sat, 28 Aug 2010 10:26:08 -0600</pubDate>
1582
+ <guid isPermaLink="false">support.sendgrid.com/forums/220245-sendgrid-status/posts.rss:220245:248686:358920</guid>
1583
+ <author>Isaac Saldana</author>
1584
+ <link>http://support.sendgrid.com/entries/248686-postmortem-aug-25-2010-delivery-delays</link>
1585
+ </item>
1586
+ <item>
1587
+ <title>"Postmortem: Aug. 25 2010 Delivery Delays" in SendGrid Status - comment added by Nathan </title>
1588
+ <description>&lt;p&gt;Bravo for this transparency and for taking responsibility. &amp;nbsp;Generally speaking, very few of us even knew anything was wrong. &amp;nbsp;The fact that you were so public about handling the issue tells me I choose the right provider. &amp;nbsp;You guys rock!&lt;/p&gt;</description>
1589
+ <pubDate>Fri, 27 Aug 2010 20:22:50 -0600</pubDate>
1590
+ <guid isPermaLink="false">support.sendgrid.com/forums/220245-sendgrid-status/posts.rss:220245:248686:358274</guid>
1591
+ <author>Nathan</author>
1592
+ <link>http://support.sendgrid.com/entries/248686-postmortem-aug-25-2010-delivery-delays</link>
1593
+ </item>
1594
+ <item>
1595
+ <title>"Postmortem: Aug. 25 2010 Delivery Delays" in SendGrid Status - comment added by adam.greene </title>
1596
+ <description>&lt;p&gt;Hi Joe,&lt;/p&gt;
1597
+ &lt;p&gt;&amp;nbsp;&lt;/p&gt;
1598
+ &lt;p&gt;thanks for the transparency! &amp;nbsp;In your earlier post and emails you mentioned that some email was lost. &amp;nbsp;But in the followup it sounded like no emails were dropped. &amp;nbsp;Which case stands?&lt;/p&gt;
1599
+ &lt;p&gt;&amp;nbsp;&lt;/p&gt;
1600
+ &lt;p&gt;Also, and this is a more internal architecture issue, but can you make sure that secondary functionality, like click tracking, is not in the critical path of email handling? &amp;nbsp;All the extra stuff sendgrid provides is fantastic, but not losing emails is #1 priority, and efficient delivery is #2. &amp;nbsp;I don't think that is a controversial ranking of priorities.&lt;/p&gt;
1601
+ &lt;p&gt;&amp;nbsp;&lt;/p&gt;
1602
+ &lt;p&gt;Anyway, thank you very much for the updates and aggressive communications!&lt;/p&gt;
1603
+ &lt;p&gt;Adam&lt;/p&gt;</description>
1604
+ <pubDate>Fri, 27 Aug 2010 17:31:16 -0600</pubDate>
1605
+ <guid isPermaLink="false">support.sendgrid.com/forums/220245-sendgrid-status/posts.rss:220245:248686:358127</guid>
1606
+ <author>adam.greene</author>
1607
+ <link>http://support.sendgrid.com/entries/248686-postmortem-aug-25-2010-delivery-delays</link>
1608
+ </item>
1609
+ <item>
1610
+ <title>Postmortem: Aug. 25 2010 Delivery Delays</title>
1611
+ <description>&lt;p&gt;&lt;span style="font-size: 11pt; font-family: Arial; color: #000000; background-color: transparent; font-weight: normal; font-style: normal; text-decoration: none; vertical-align: baseline;"&gt;This article is meant to provide more details about the outage and issues that occurred for SendGrid on August 25th, 2010 and to apologize for any inconveniences this may have caused. &amp;nbsp;We&#8217;ve included as many details as possible, including:&lt;/span&gt;&lt;/p&gt;
1612
+ &lt;ul&gt;
1613
+ &lt;li style="list-style-type: disc; font-size: 11pt; font-family: Arial; color: #000000; background-color: transparent; font-weight: normal; font-style: normal; text-decoration: none; vertical-align: baseline;"&gt;&lt;span style="font-size: 11pt; font-family: Arial; color: #000000; background-color: transparent; font-weight: normal; font-style: normal; text-decoration: none; vertical-align: baseline;"&gt;what happened &lt;/span&gt;&lt;/li&gt;
1614
+ &lt;li style="list-style-type: disc; font-size: 11pt; font-family: Arial; color: #000000; background-color: transparent; font-weight: normal; font-style: normal; text-decoration: none; vertical-align: baseline;"&gt;&lt;span style="font-size: 11pt; font-family: Arial; color: #000000; background-color: transparent; font-weight: normal; font-style: normal; text-decoration: none; vertical-align: baseline;"&gt;when it happened&lt;/span&gt;&lt;/li&gt;
1615
+ &lt;li style="list-style-type: disc; font-size: 11pt; font-family: Arial; color: #000000; background-color: transparent; font-weight: normal; font-style: normal; text-decoration: none; vertical-align: baseline;"&gt;&lt;span style="font-size: 11pt; font-family: Arial; color: #000000; background-color: transparent; font-weight: normal; font-style: normal; text-decoration: none; vertical-align: baseline;"&gt;why it happened&lt;/span&gt;&lt;/li&gt;
1616
+ &lt;li style="list-style-type: disc; font-size: 11pt; font-family: Arial; color: #000000; background-color: transparent; font-weight: normal; font-style: normal; text-decoration: none; vertical-align: baseline;"&gt;&lt;span style="font-size: 11pt; font-family: Arial; color: #000000; background-color: transparent; font-weight: normal; font-style: normal; text-decoration: none; vertical-align: baseline;"&gt;what we&#8217;re doing to ensure it never happens again&lt;/span&gt;&lt;/li&gt;
1617
+ &lt;/ul&gt;
1618
+ &lt;p&gt;&lt;span style="font-size: 11pt; font-family: Arial; color: #000000; background-color: transparent; font-weight: normal; font-style: normal; text-decoration: none; vertical-align: baseline;"&gt;SendGrid uses several servers running Cassandra to store data for click tracking. At 9:37am PDT one of our Cassandra servers had a failure and started returning write errors. A failure on one or more of our Cassandra servers generally would not be a problem because we have automatic failover capability built-in to our software. Our software did detect this faliure and was able to switch to functioning Cassandra servers, however by 10:34am PDT all of the Cassandra servers were returning write errors and the entire Cassandra cluster became unusable.&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size: 11pt; font-family: Arial; color: #000000; background-color: transparent; font-weight: normal; font-style: normal; text-decoration: none; vertical-align: baseline;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size: 11pt; font-family: Arial; color: #000000; background-color: transparent; font-weight: normal; font-style: normal; text-decoration: none; vertical-align: baseline;"&gt;By this time our monitoring system alerted us of problems and we investigated. While we were debugging, we disabled the servers that process mail, causing all email to queue. At the same time, we also tweeted about the outage and sent an email to all of our customers updating them with the news. &amp;nbsp;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size: 11pt; font-family: Arial; color: #000000; background-color: transparent; font-weight: normal; font-style: normal; text-decoration: none; vertical-align: baseline;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size: 11pt; font-family: Arial; color: #000000; background-color: transparent; font-weight: normal; font-style: normal; text-decoration: none; vertical-align: baseline;"&gt;By 11:17am PDT the root cause was discovered, and the fix was tested and deployed by 11:46am PDT. It took about 20 minutes for the incoming servers to completely empty their queues, after which time only a small handful of our largest senders were experiencing any delay due to processing limitations.&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size: 11pt; font-family: Arial; color: #000000; background-color: transparent; font-weight: normal; font-style: normal; text-decoration: none; vertical-align: baseline;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size: 11pt; font-family: Arial; color: #000000; background-color: transparent; font-weight: normal; font-style: normal; text-decoration: none; vertical-align: baseline;"&gt;We are planning an update to bring the Cassandra servers to the latest version. Our developers are confident that the new version of these servers will lack the issue that caused the write error condition. This upgrade will cause a small delay in deliverability as we will once again have to switch to queueing and holding incoming mail during the upgrade. We will notify everyone before we initiate the upgrade, so stay tuned.&lt;/span&gt;&lt;/p&gt;</description>
1619
+ <pubDate>Fri, 27 Aug 2010 15:49:34 -0600</pubDate>
1620
+ <guid isPermaLink="false">support.sendgrid.com/forums/220245-sendgrid-status/posts.rss:220245:248686</guid>
1621
+ <author>Joe Scharf</author>
1622
+ <link>http://support.sendgrid.com/entries/248686-postmortem-aug-25-2010-delivery-delays</link>
1623
+ </item>
1624
+ <item>
1625
+ <title>"August 25, 2010 - Email Delivery Delays" in SendGrid Status - comment added by Joe Scharf </title>
1626
+ <description>&lt;p&gt;Hi Todd,&lt;/p&gt;
1627
+ &lt;p&gt;Our queues were empty at the time the above message was posted.&amp;nbsp; If you are still having problems, you may want to open up a support ticket or start a live chat and we can investigate your problems further.&lt;/p&gt;</description>
1628
+ <pubDate>Thu, 26 Aug 2010 09:48:08 -0600</pubDate>
1629
+ <guid isPermaLink="false">support.sendgrid.com/forums/220245-sendgrid-status/posts.rss:220245:246954:356824</guid>
1630
+ <author>Joe Scharf</author>
1631
+ <link>http://support.sendgrid.com/entries/246954-august-25-2010-email-delivery-delays</link>
1632
+ </item>
1633
+ <item>
1634
+ <title>"August 25, 2010 - Email Delivery Delays" in SendGrid Status - comment added by Todd Sedano </title>
1635
+ <description>&lt;p&gt;I appreciate your team being on top of this issue. Do we have an update? For example, I noticed around 11:30 am Pacific Time, that emails were queuing up and coming out in batches 30 minutes later. I thought the issue was resolved, but I see that emails send around 2:30 pm Pacific Time have yet to be delivered.&amp;nbsp;&lt;/p&gt;
1636
+ &lt;p&gt;Thanks,&amp;nbsp;&lt;/p&gt;
1637
+ &lt;p&gt;One of your heroku apps and big fan of send grid.&lt;/p&gt;</description>
1638
+ <pubDate>Wed, 25 Aug 2010 21:19:19 -0600</pubDate>
1639
+ <guid isPermaLink="false">support.sendgrid.com/forums/220245-sendgrid-status/posts.rss:220245:246954:356480</guid>
1640
+ <author>Todd Sedano</author>
1641
+ <link>http://support.sendgrid.com/entries/246954-august-25-2010-email-delivery-delays</link>
1642
+ </item>
1643
+ <item>
1644
+ <title>August 25, 2010 - Email Delivery Delays</title>
1645
+ <description>&lt;p&gt;We experienced an outage with our service this morning. We identified the problem and have implemented a solution. &lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Email is now being delivered.&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;There was a short period of time during which some emails were dropped and not queued.&amp;nbsp; We are now working to determine the exact timeframe during which emails were dropped and the users that were affected. We will contact users directly who had emails dropped and inform them of the emails that need to be re-sent. &lt;br /&gt;&lt;br /&gt;Thanks in advance for your patience and understanding.&lt;/p&gt;
1646
+ &lt;p&gt;Sincerely,&lt;/p&gt;
1647
+ &lt;p&gt;The SendGrid Team&lt;/p&gt;</description>
1648
+ <pubDate>Wed, 25 Aug 2010 15:21:46 -0600</pubDate>
1649
+ <guid isPermaLink="false">support.sendgrid.com/forums/220245-sendgrid-status/posts.rss:220245:246954</guid>
1650
+ <author>Joe Scharf</author>
1651
+ <link>http://support.sendgrid.com/entries/246954-august-25-2010-email-delivery-delays</link>
1652
+ </item>
1653
+ </channel>
1654
+ </rss>
1655
+
1656
+ http_version: "1.1"
1657
+ - !ruby/struct:VCR::HTTPInteraction
1658
+ request: !ruby/struct:VCR::Request
1659
+ method: :get
1660
+ uri: http://thesummitsf.wordpress.com:80/feed/
1661
+ body:
1662
+ headers:
1663
+ accept:
1664
+ - "*/*"
1665
+ user-agent:
1666
+ - Ruby
1667
+ response: !ruby/struct:VCR::Response
1668
+ status: !ruby/struct:VCR::ResponseStatus
1669
+ code: 200
1670
+ message: OK
1671
+ headers:
1672
+ server:
1673
+ - nginx
1674
+ date:
1675
+ - Tue, 28 Sep 2010 03:09:51 GMT
1676
+ content-type:
1677
+ - text/xml; charset=UTF-8
1678
+ transfer-encoding:
1679
+ - chunked
1680
+ connection:
1681
+ - close
1682
+ x-hacker:
1683
+ - If you're reading this, you should visit automattic.com/jobs and apply to join the fun, mention this header.
1684
+ x-pingback:
1685
+ - http://thesummitsf.wordpress.com/xmlrpc.php
1686
+ last-modified:
1687
+ - Mon, 27 Sep 2010 19:09:17 GMT
1688
+ etag:
1689
+ - "\"f3ebf28f8f51b29c78719bde4d048555\""
1690
+ x-nc:
1691
+ - HIT sat 243
1692
+ body: "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n\
1693
+ <rss version=\"2.0\"\n\
1694
+ \txmlns:content=\"http://purl.org/rss/1.0/modules/content/\"\n\
1695
+ \txmlns:wfw=\"http://wellformedweb.org/CommentAPI/\"\n\
1696
+ \txmlns:dc=\"http://purl.org/dc/elements/1.1/\"\n\
1697
+ \txmlns:atom=\"http://www.w3.org/2005/Atom\"\n\
1698
+ \txmlns:sy=\"http://purl.org/rss/1.0/modules/syndication/\"\n\
1699
+ \txmlns:slash=\"http://purl.org/rss/1.0/modules/slash/\"\n\
1700
+ \txmlns:georss=\"http://www.georss.org/georss\" xmlns:geo=\"http://www.w3.org/2003/01/geo/wgs84_pos#\" xmlns:media=\"http://search.yahoo.com/mrss/\"\n\
1701
+ \t>\n\n\
1702
+ <channel>\n\
1703
+ \t<title>The Summit&#039;s Blog</title>\n\
1704
+ \t<atom:link href=\"http://thesummitsf.wordpress.com/feed/\" rel=\"self\" type=\"application/rss+xml\" />\n\
1705
+ \t<link>http://thesummitsf.wordpress.com</link>\n\
1706
+ \t<description>chronicles of starting an art bar / cafe in san francisco</description>\n\
1707
+ \t<lastBuildDate>Mon, 27 Sep 2010 19:09:17 +0000</lastBuildDate>\n\
1708
+ \t<language>en</language>\n\
1709
+ \t<sy:updatePeriod>hourly</sy:updatePeriod>\n\
1710
+ \t<sy:updateFrequency>1</sy:updateFrequency>\n\
1711
+ \t<generator>http://wordpress.com/</generator>\n\
1712
+ <cloud domain='thesummitsf.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />\n\
1713
+ <image>\n\
1714
+ \t\t<url>http://s2.wp.com/i/buttonw-com.png</url>\n\
1715
+ \t\t<title>The Summit&#039;s Blog</title>\n\
1716
+ \t\t<link>http://thesummitsf.wordpress.com</link>\n\
1717
+ \t</image>\n\
1718
+ \t<atom:link rel=\"search\" type=\"application/opensearchdescription+xml\" href=\"http://thesummitsf.wordpress.com/osd.xml\" title=\"The Summit&#039;s Blog\" />\n\
1719
+ \t<atom:link rel='hub' href='http://thesummitsf.wordpress.com/?pushpress=hub'/>\n\
1720
+ \t\t<item>\n\
1721
+ \t\t<title>It was meant to be&#8230;</title>\n\
1722
+ \t\t<link>http://thesummitsf.wordpress.com/2010/09/27/it-was-meant-to-be/</link>\n\
1723
+ \t\t<comments>http://thesummitsf.wordpress.com/2010/09/27/it-was-meant-to-be/#comments</comments>\n\
1724
+ \t\t<pubDate>Mon, 27 Sep 2010 19:09:17 +0000</pubDate>\n\
1725
+ \t\t<dc:creator>thesummitsf</dc:creator>\n\
1726
+ \t\t\t\t<category><![CDATA[Uncategorized]]></category>\n\n\
1727
+ \t\t<guid isPermaLink=\"false\">http://thesummitsf.wordpress.com/?p=670</guid>\n\
1728
+ \t\t<description><![CDATA[from b-day to business opening and back. the summit is finally open!<img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=thesummitsf.wordpress.com&amp;blog=12364641&amp;post=670&amp;subd=thesummitsf&amp;ref=&amp;feed=1\" width=\"1\" height=\"1\" />]]></description>\n\
1729
+ \t\t\t<content:encoded><![CDATA[<p>1 year ago i got a call from my buddy Steve Jang about a space in the mission i needed to see. in a span of less than 48hrs i found myself staring at a beautiful off market space for a restaurant and then staring at my laptop for 14hrs straight to get a proposal submitted to i/o ventures.</p>\n\
1730
+ <p>those that know me well know that my b-day is a sacred holiday filled with debauchery, drunken shenanigans, and <a href=\"http://il.youtube.com/watch?v=LxDLPJpVNeE&amp;feature=related\">seances</a> that leave little time for work. so the prospect of having to write a business plan for a space unbuilt is kinda of a stretch, but there was something about this opportunity that made me take a step back on focus on the future.</p>\n\
1731
+ <div id=\"attachment_673\" class=\"wp-caption aligncenter\" style=\"width: 310px\"><a href=\"http://thesummitsf.files.wordpress.com/2010/09/1461089933_2baa1d09b3.jpg\"><img class=\"size-medium wp-image-673\" title=\"1461089933_2baa1d09b3\" src=\"http://thesummitsf.files.wordpress.com/2010/09/1461089933_2baa1d09b3.jpg?w=300&#038;h=199\" alt=\"\" width=\"300\" height=\"199\" /></a><p class=\"wp-caption-text\">making it to my 35th is a sign of victory</p></div>\n\
1732
+ <p>my future restaurant circa 9/27/09 was then called &#8220;casa poleng.&#8221; a full service restaurant that was an iteration of the poleng concept revolving around the culinary fusion of the spanish and portuguese in asia.</p>\n\
1733
+ <div id=\"attachment_672\" class=\"wp-caption aligncenter\" style=\"width: 192px\"><a href=\"http://thesummitsf.files.wordpress.com/2010/09/mockmenu-2009-11-24.jpg\"><img class=\"size-medium wp-image-672\" title=\"MockMenu 2009-11-24\" src=\"http://thesummitsf.files.wordpress.com/2010/09/mockmenu-2009-11-24.jpg?w=182&#038;h=300\" alt=\"\" width=\"182\" height=\"300\" /></a><p class=\"wp-caption-text\">spanish + portuguese food = filipino food?</p></div>\n\
1734
+ <p>nix that. i/o ventures turns me down.</p>\n\
1735
+ <p>but it was meant to be. any business plan written on my b-day has to be.</p>\n\
1736
+ <p>3 months later, i/o was still open for proposals and a scaled down version of the &#8220;casa poleng&#8221; concept was finally accepted. then poleng collapsed on 1/23/10 leaving casa poleng in jeopardy.</p>\n\
1737
+ <p>after some soul searching and a suggestion from Marcozy about reviving a long forgotten party i produced years ago the summit is born again.</p>\n\
1738
+ <p>back track 8 years ago</p>\n\
1739
+ <p>i&#8217;m knee-deep in the hiphop scene, but my taste in music and scenes is boundless. a late-night 420 session along with and close encounters of the 3rd kind blows my mind. the idea of communicating thru basic tones and flashes inspires me to create an event that blends the world of hiphop, hose, d&amp;b, 2-step, dancehall, and beyond called the summit.</p>\n\
1740
+ <p><span style=\"text-align:center; display: block;\"><a href=\"http://thesummitsf.wordpress.com/2010/09/27/it-was-meant-to-be/\"><img src=\"http://img.youtube.com/vi/tUcOaGawIW0/2.jpg\" alt=\"\" /></a></span></p>\n\
1741
+ <div id=\"attachment_678\" class=\"wp-caption aligncenter\" style=\"width: 218px\"><a href=\"http://thesummitsf.files.wordpress.com/2010/09/20851_135947563092556_134796489874330_237886_2120291_n.jpg\"><img class=\"size-medium wp-image-678\" title=\"20851_135947563092556_134796489874330_237886_2120291_n\" src=\"http://thesummitsf.files.wordpress.com/2010/09/20851_135947563092556_134796489874330_237886_2120291_n.jpg?w=208&#038;h=300\" alt=\"\" width=\"208\" height=\"300\" /></a><p class=\"wp-caption-text\">the true origins of the summit</p></div>\n\
1742
+ <p>fast forward to 9/27/10</p>\n\
1743
+ <p>1 year +1 day = my 35th birthday + the birth of the summit. we&#8217;re open for business on thursday, 9/30/10.</p>\n\
1744
+ <br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/thesummitsf.wordpress.com/670/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/thesummitsf.wordpress.com/670/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godelicious/thesummitsf.wordpress.com/670/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/delicious/thesummitsf.wordpress.com/670/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gofacebook/thesummitsf.wordpress.com/670/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/facebook/thesummitsf.wordpress.com/670/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gotwitter/thesummitsf.wordpress.com/670/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/twitter/thesummitsf.wordpress.com/670/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gostumble/thesummitsf.wordpress.com/670/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/stumble/thesummitsf.wordpress.com/670/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godigg/thesummitsf.wordpress.com/670/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/digg/thesummitsf.wordpress.com/670/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/goreddit/thesummitsf.wordpress.com/670/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/reddit/thesummitsf.wordpress.com/670/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=thesummitsf.wordpress.com&amp;blog=12364641&amp;post=670&amp;subd=thesummitsf&amp;ref=&amp;feed=1\" width=\"1\" height=\"1\" />]]></content:encoded>\n\
1745
+ \t\t\t<wfw:commentRss>http://thesummitsf.wordpress.com/2010/09/27/it-was-meant-to-be/feed/</wfw:commentRss>\n\
1746
+ \t\t<slash:comments>1</slash:comments>\n\
1747
+ \t\t<georss:point>37.775001 -122.447111</georss:point>\n\
1748
+ \t\t<geo:lat>37.775001</geo:lat>\n\
1749
+ \t\t<geo:long>-122.447111</geo:long>\n\
1750
+ \t\t<media:content url=\"http://0.gravatar.com/avatar/a840c1fcd7fef4cbee6c558a90067789?s=96&#38;d=identicon&#38;r=G\" medium=\"image\">\n\
1751
+ \t\t\t<media:title type=\"html\">thesummitsf</media:title>\n\
1752
+ \t\t</media:content>\n\n\
1753
+ \t\t<media:content url=\"http://thesummitsf.files.wordpress.com/2010/09/1461089933_2baa1d09b3.jpg?w=300\" medium=\"image\">\n\
1754
+ \t\t\t<media:title type=\"html\">1461089933_2baa1d09b3</media:title>\n\
1755
+ \t\t</media:content>\n\n\
1756
+ \t\t<media:content url=\"http://thesummitsf.files.wordpress.com/2010/09/mockmenu-2009-11-24.jpg?w=182\" medium=\"image\">\n\
1757
+ \t\t\t<media:title type=\"html\">MockMenu 2009-11-24</media:title>\n\
1758
+ \t\t</media:content>\n\n\
1759
+ \t\t<media:content url=\"http://img.youtube.com/vi/tUcOaGawIW0/2.jpg\" medium=\"image\" />\n\n\
1760
+ \t\t<media:content url=\"http://thesummitsf.files.wordpress.com/2010/09/20851_135947563092556_134796489874330_237886_2120291_n.jpg?w=208\" medium=\"image\">\n\
1761
+ \t\t\t<media:title type=\"html\">20851_135947563092556_134796489874330_237886_2120291_n</media:title>\n\
1762
+ \t\t</media:content>\n\
1763
+ \t</item>\n\
1764
+ \t\t<item>\n\
1765
+ \t\t<title>KKW&#8217;s Prologue</title>\n\
1766
+ \t\t<link>http://thesummitsf.wordpress.com/2010/09/22/kkws-prologue/</link>\n\
1767
+ \t\t<comments>http://thesummitsf.wordpress.com/2010/09/22/kkws-prologue/#comments</comments>\n\
1768
+ \t\t<pubDate>Wed, 22 Sep 2010 10:10:41 +0000</pubDate>\n\
1769
+ \t\t<dc:creator>kellykate</dc:creator>\n\
1770
+ \t\t\t\t<category><![CDATA[Uncategorized]]></category>\n\
1771
+ \t\t<category><![CDATA[concept]]></category>\n\
1772
+ \t\t<category><![CDATA[literature]]></category>\n\
1773
+ \t\t<category><![CDATA[kellykate]]></category>\n\
1774
+ \t\t<category><![CDATA[zines]]></category>\n\
1775
+ \t\t<category><![CDATA[magazines]]></category>\n\
1776
+ \t\t<category><![CDATA[books]]></category>\n\n\
1777
+ \t\t<guid isPermaLink=\"false\">http://thesummitsf.wordpress.com/?p=579</guid>\n\
1778
+ \t\t<description><![CDATA[Unveiling The Summit's new literary program<img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=thesummitsf.wordpress.com&amp;blog=12364641&amp;post=579&amp;subd=thesummitsf&amp;ref=&amp;feed=1\" width=\"1\" height=\"1\" />]]></description>\n\
1779
+ \t\t\t<content:encoded><![CDATA[<p>I can think of few things more excruciating than bus rides, waiting rooms, or lunching solo without something to read. I spend a lot of time in transit, and between destinations I find myself stuck in the Mission with 20 minutes to spare, or at the 33 MUNI stop watching the estimated arrival time waver from 18 minutes to 63 minutes. 99% of the time I have a book in my purse, but I have collected hours upon hours reading and then rereading The Guardian and\xC2\xA0The SF Weekly. Most weeks I can relate to you in great detail what Paul Reidinger thought of the udon at Izakaya Sozei or Dan Savage has to say about maple syrup fetishes.</p>\n\
1780
+ <div id=\"attachment_617\" class=\"wp-caption aligncenter\" style=\"width: 269px\"><a href=\"http://thesummitsf.files.wordpress.com/2010/09/bay-cover-big4.jpg\"><img class=\"size-medium wp-image-617\" title=\"bay-cover-big\" src=\"http://thesummitsf.files.wordpress.com/2010/09/bay-cover-big4.jpg?w=259&#038;h=300\" alt=\"\" width=\"259\" height=\"300\" /></a></dt>\n\
1781
+ </dl>\n\
1782
+ </div>\n\
1783
+ <p style=\"text-align:center;\">\n\
1784
+ <p style=\"text-align:center;\">\n\
1785
+ <div class=\"mceTemp mceIEcenter\">\n\
1786
+ <div class=\"mceTemp mceIEcenter\">\n\
1787
+ <dl class=\"wp-caption aligncenter\">\n\
1788
+ <dt class=\"wp-caption-dt\"><a href=\"http://thesummitsf.files.wordpress.com/2010/09/4621385957_371d28eaab.jpg\"><img class=\"size-medium wp-image-584\" title=\"4621385957_371d28eaab\" src=\"http://thesummitsf.files.wordpress.com/2010/09/4621385957_371d28eaab.jpg?w=246&#038;h=300\" alt=\"\" width=\"246\" height=\"300\" /></a></dt>\n\
1789
+ </dl>\n\
1790
+ </div>\n\
1791
+ </div>\n\
1792
+ <p>I love to read. Growing up I probably spent more time with books than I did with other children. My mom would take me to the library once a week and I would bring home as many books as I could carry. I was partial to fantasy and sci-fi (Roald Dahl, Ray Bradbury, Philip Pulman&#8230;), and I spent most of my childhood waiting for a doorway to appear in my closet.</p>\n\
1793
+ <div class=\"mceTemp mceIEcenter\">\n\
1794
+ <dl class=\"wp-caption aligncenter\">\n\
1795
+ <dt class=\"wp-caption-dt\"><a href=\"http://thesummitsf.files.wordpress.com/2010/09/ray_bradbury_illustrated_man3.jpg\"><img class=\"size-medium wp-image-590\" title=\"ray_bradbury_illustrated_man\" src=\"http://thesummitsf.files.wordpress.com/2010/09/ray_bradbury_illustrated_man3.jpg?w=182&#038;h=300\" alt=\"\" width=\"182\" height=\"300\" /></a><p class=\"wp-caption-text\">I&#039;m borderline obsessed with Ray Bradbury. The Illustrated Man remains one of my favorite books.</p></div>\n\
1796
+ <p>When I would run through my library books I moved on to my parent&#8217;s &#8211; a mix of non-fiction and classic literature. As a teenager I became obsessed with Twee Pop, Riot Grrl, and DIY culture. I was rabidly addicted to Livejournal, wrote terrible poetry, and pieced together equally terrible zines. More than anything in the entire world I wanted to move to San Francisco, work in a cafe, and date a boy in a band.</p>\n\
1797
+ <div id=\"attachment_602\" class=\"wp-caption aligncenter\" style=\"width: 310px\"><a href=\"http://thesummitsf.files.wordpress.com/2010/09/zine_pile.jpg\"><img class=\"size-medium wp-image-602\" title=\"zine_pile\" src=\"http://thesummitsf.files.wordpress.com/2010/09/zine_pile.jpg?w=300&#038;h=200\" alt=\"\" width=\"300\" height=\"200\" /></a><p class=\"wp-caption-text\">The term &quot;zine&quot; (from &quot;fanzine&quot;) covers a wide range of self-printed, small circulation publications featuring text &amp; images.</p></div>\n\
1798
+ <div id=\"attachment_592\" class=\"wp-caption aligncenter\" style=\"width: 310px\"><a href=\"http://thesummitsf.files.wordpress.com/2010/09/4978236366_b6aac18ddb_b.jpg\"><img class=\"size-medium wp-image-592\" title=\"4978236366_b6aac18ddb_b\" src=\"http://thesummitsf.files.wordpress.com/2010/09/4978236366_b6aac18ddb_b.jpg?w=300&#038;h=108\" alt=\"\" width=\"300\" height=\"108\" /></a><p class=\"wp-caption-text\">Slumberland, Sarah, &amp; K Records were probably the biggest influences on the person I am today. All these labels have strong ties to the zine culture that emerged in the 80s. </p></div>\n\
1799
+ <div id=\"attachment_593\" class=\"wp-caption aligncenter\" style=\"width: 300px\"><a href=\"http://thesummitsf.files.wordpress.com/2010/09/myheroek4.jpg\"><img class=\"size-full wp-image-593\" title=\"myheroek4\" src=\"http://thesummitsf.files.wordpress.com/2010/09/myheroek4.jpg?w=290&#038;h=300\" alt=\"\" width=\"290\" height=\"300\" /></a><p class=\"wp-caption-text\">Kathleen Hanna - Poster girl for the Riot Grrrl movement, which was ignited by the publication of several feminist zines. </p></div>\n\
1800
+ <p>Fast-forward to today and I live in San Francisco, work in a cafe&#8230; and have pretty much given up on dating boys in bands. It&#8217;s been a wild ride getting here. I went from couch surfing in Oakland to traveling the country by Greyhound, finally ending up here in San Francisco about four years ago. I started off as a hostess at a now defunct Top 100 restaurant (any guesses?), moved on to become a party promoter, fell into a social media consulting position for a clothing boutique, and have ended up at The Summit, where my job title is &#8220;Literary Curator.&#8221;</p>\n\
1801
+ <div id=\"attachment_604\" class=\"wp-caption aligncenter\" style=\"width: 310px\"><a href=\"http://thesummitsf.files.wordpress.com/2010/09/l_c9f80447147f4be7ac9c15782100d2bb.jpg\"><img class=\"size-medium wp-image-604\" title=\"l_c9f80447147f4be7ac9c15782100d2bb\" src=\"http://thesummitsf.files.wordpress.com/2010/09/l_c9f80447147f4be7ac9c15782100d2bb.jpg?w=300&#038;h=168\" alt=\"\" width=\"300\" height=\"168\" /></a><p class=\"wp-caption-text\">In &#039;09 The Guardian named me of one of San Francisco&#039;s &quot;Scene Makers&quot; in the Nightlife Industry. I think the scene at The Summit will involve more reading &amp; less dancing.</p></div>\n\
1802
+ <p>In\xC2\xA0the last couple of years that I spent falling into jobs and scenes and hangovers, I&#8217;d sometimes forget that for most of my life, books were my best friends. For me, running the literary program at The Summit is like peeling away all sorts of strange identities that I&#8217;ve adopted in the last few years and finally getting to do what I love to do best, nerd out over books.</p>\n\
1803
+ <div id=\"attachment_628\" class=\"wp-caption aligncenter\" style=\"width: 310px\"><a href=\"http://thesummitsf.files.wordpress.com/2010/09/l_aacc89d707564e4d33414a855a442456-copy5.jpg\"><img class=\"size-medium wp-image-628\" title=\"l_aacc89d707564e4d33414a855a442456 copy\" src=\"http://thesummitsf.files.wordpress.com/2010/09/l_aacc89d707564e4d33414a855a442456-copy5.jpg?w=300&#038;h=199\" alt=\"\" width=\"300\" height=\"199\" /></a><p class=\"wp-caption-text\">Me in &#039;06 - platinum &amp; probably plastered. These days I&#039;m usually holding a cup of Blue Bottle.</p></div>\n\
1804
+ <p>I&#8217;ve spent the last few months watching The Summit come together. The space keeps filling up with tables, espresso machines, and couches, and more importantly, with people and ideas. My job went from stocking a simple magazine rack, to outlining a literary program that will focus on zines, graphic novels, and other independently published work. Along with compiling a library of zines, I&#8217;ve been hunting down magazine back issues and vintage design manuals, and playing with the idea that a collection of literature can be curated much the same way one curates a collection of visual art in a gallery.</p>\n\
1805
+ <div id=\"attachment_598\" class=\"wp-caption aligncenter\" style=\"width: 203px\"><a href=\"http://thesummitsf.files.wordpress.com/2010/09/zfposterweb.jpg\"><img class=\"size-medium wp-image-598\" title=\"zfposterweb\" src=\"http://thesummitsf.files.wordpress.com/2010/09/zfposterweb.jpg?w=193&#038;h=300\" alt=\"\" width=\"193\" height=\"300\" /></a><p class=\"wp-caption-text\">I left Zine Fest last weekend with lots of awesome readables that will soon be featured in The Summit Library.</p></div>\n\
1806
+ <div id=\"attachment_611\" class=\"wp-caption aligncenter\" style=\"width: 235px\"><a href=\"http://thesummitsf.files.wordpress.com/2010/09/47510_1545814281427_1117128315_31516782_414163_n.jpg\"><img class=\"size-medium wp-image-611\" title=\"47510_1545814281427_1117128315_31516782_414163_n\" src=\"http://thesummitsf.files.wordpress.com/2010/09/47510_1545814281427_1117128315_31516782_414163_n.jpg?w=225&#038;h=300\" alt=\"\" width=\"225\" height=\"300\" /></a><p class=\"wp-caption-text\">Just scored this back issue of Fortune Magazine. Who knew Steve Jobs was such a babe?</p></div>\n\
1807
+ <p>As excited as I am about my position at The Summit, I&#8217;m also a little scared. I read constantly, but the volume of books, magazines, zines, and comic books out there is astounding. I cannot and will not claim to be the authority on any literary scene, but I&#8217;m thrilled to have the opportunity to work with people who know more than myself. I hope that I can make The Summit a welcoming place for readers and writers, and I feel incredibly fortunate to work someplace where I&#8217;ll always have something interesting to read.</p>\n\
1808
+ <div id=\"attachment_620\" class=\"wp-caption aligncenter\" style=\"width: 270px\"><a href=\"http://thesummitsf.files.wordpress.com/2010/09/images1.jpeg\"><img class=\"size-full wp-image-620\" title=\"images\" src=\"http://thesummitsf.files.wordpress.com/2010/09/images1.jpeg?w=260&#038;h=194\" alt=\"\" width=\"260\" height=\"194\" /></a><p class=\"wp-caption-text\">!!!</p></div>\n\
1809
+ <p>KKW</p>\n\
1810
+ <br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/thesummitsf.wordpress.com/579/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/thesummitsf.wordpress.com/579/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godelicious/thesummitsf.wordpress.com/579/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/delicious/thesummitsf.wordpress.com/579/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gofacebook/thesummitsf.wordpress.com/579/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/facebook/thesummitsf.wordpress.com/579/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gotwitter/thesummitsf.wordpress.com/579/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/twitter/thesummitsf.wordpress.com/579/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gostumble/thesummitsf.wordpress.com/579/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/stumble/thesummitsf.wordpress.com/579/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godigg/thesummitsf.wordpress.com/579/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/digg/thesummitsf.wordpress.com/579/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/goreddit/thesummitsf.wordpress.com/579/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/reddit/thesummitsf.wordpress.com/579/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=thesummitsf.wordpress.com&amp;blog=12364641&amp;post=579&amp;subd=thesummitsf&amp;ref=&amp;feed=1\" width=\"1\" height=\"1\" />]]></content:encoded>\n\
1811
+ \t\t\t<wfw:commentRss>http://thesummitsf.wordpress.com/2010/09/22/kkws-prologue/feed/</wfw:commentRss>\n\
1812
+ \t\t<slash:comments>1</slash:comments>\n\
1813
+ \t\n\
1814
+ \t\t<media:content url=\"http://0.gravatar.com/avatar/6fbb3809f6427f7dd36608e2843fcc48?s=96&#38;d=identicon&#38;r=G\" medium=\"image\">\n\
1815
+ \t\t\t<media:title type=\"html\">kellykate</media:title>\n\
1816
+ \t\t</media:content>\n\n\
1817
+ \t\t<media:content url=\"http://thesummitsf.files.wordpress.com/2010/09/bay-cover-big4.jpg?w=259\" medium=\"image\">\n\
1818
+ \t\t\t<media:title type=\"html\">bay-cover-big</media:title>\n\
1819
+ \t\t</media:content>\n\n\
1820
+ \t\t<media:content url=\"http://thesummitsf.files.wordpress.com/2010/09/4621385957_371d28eaab.jpg?w=246\" medium=\"image\">\n\
1821
+ \t\t\t<media:title type=\"html\">4621385957_371d28eaab</media:title>\n\
1822
+ \t\t</media:content>\n\n\
1823
+ \t\t<media:content url=\"http://thesummitsf.files.wordpress.com/2010/09/ray_bradbury_illustrated_man3.jpg?w=182\" medium=\"image\">\n\
1824
+ \t\t\t<media:title type=\"html\">ray_bradbury_illustrated_man</media:title>\n\
1825
+ \t\t</media:content>\n\n\
1826
+ \t\t<media:content url=\"http://thesummitsf.files.wordpress.com/2010/09/zine_pile.jpg?w=300\" medium=\"image\">\n\
1827
+ \t\t\t<media:title type=\"html\">zine_pile</media:title>\n\
1828
+ \t\t</media:content>\n\n\
1829
+ \t\t<media:content url=\"http://thesummitsf.files.wordpress.com/2010/09/4978236366_b6aac18ddb_b.jpg?w=300\" medium=\"image\">\n\
1830
+ \t\t\t<media:title type=\"html\">4978236366_b6aac18ddb_b</media:title>\n\
1831
+ \t\t</media:content>\n\n\
1832
+ \t\t<media:content url=\"http://thesummitsf.files.wordpress.com/2010/09/myheroek4.jpg\" medium=\"image\">\n\
1833
+ \t\t\t<media:title type=\"html\">myheroek4</media:title>\n\
1834
+ \t\t</media:content>\n\n\
1835
+ \t\t<media:content url=\"http://thesummitsf.files.wordpress.com/2010/09/l_c9f80447147f4be7ac9c15782100d2bb.jpg?w=300\" medium=\"image\">\n\
1836
+ \t\t\t<media:title type=\"html\">l_c9f80447147f4be7ac9c15782100d2bb</media:title>\n\
1837
+ \t\t</media:content>\n\n\
1838
+ \t\t<media:content url=\"http://thesummitsf.files.wordpress.com/2010/09/l_aacc89d707564e4d33414a855a442456-copy5.jpg?w=300\" medium=\"image\">\n\
1839
+ \t\t\t<media:title type=\"html\">l_aacc89d707564e4d33414a855a442456 copy</media:title>\n\
1840
+ \t\t</media:content>\n\n\
1841
+ \t\t<media:content url=\"http://thesummitsf.files.wordpress.com/2010/09/zfposterweb.jpg?w=193\" medium=\"image\">\n\
1842
+ \t\t\t<media:title type=\"html\">zfposterweb</media:title>\n\
1843
+ \t\t</media:content>\n\n\
1844
+ \t\t<media:content url=\"http://thesummitsf.files.wordpress.com/2010/09/47510_1545814281427_1117128315_31516782_414163_n.jpg?w=225\" medium=\"image\">\n\
1845
+ \t\t\t<media:title type=\"html\">47510_1545814281427_1117128315_31516782_414163_n</media:title>\n\
1846
+ \t\t</media:content>\n\n\
1847
+ \t\t<media:content url=\"http://thesummitsf.files.wordpress.com/2010/09/images1.jpeg\" medium=\"image\">\n\
1848
+ \t\t\t<media:title type=\"html\">images</media:title>\n\
1849
+ \t\t</media:content>\n\
1850
+ \t</item>\n\
1851
+ \t\t<item>\n\
1852
+ \t\t<title>INTERN-SPECTIVE: KRAZY FOR KOMBUCHA?</title>\n\
1853
+ \t\t<link>http://thesummitsf.wordpress.com/2010/09/15/intern-spective-krazy-for-kombucha/</link>\n\
1854
+ \t\t<comments>http://thesummitsf.wordpress.com/2010/09/15/intern-spective-krazy-for-kombucha/#comments</comments>\n\
1855
+ \t\t<pubDate>Wed, 15 Sep 2010 03:04:28 +0000</pubDate>\n\
1856
+ \t\t<dc:creator>Laura U</dc:creator>\n\
1857
+ \t\t\t\t<category><![CDATA[Uncategorized]]></category>\n\
1858
+ \t\t<category><![CDATA[kombucha]]></category>\n\
1859
+ \t\t<category><![CDATA[Soft Opening]]></category>\n\
1860
+ \t\t<category><![CDATA[weight loss]]></category>\n\
1861
+ \t\t<category><![CDATA[coconut water]]></category>\n\
1862
+ \t\t<category><![CDATA[Lindsay Lohan]]></category>\n\
1863
+ \t\t<category><![CDATA[Halle Berry]]></category>\n\n\
1864
+ \t\t<guid isPermaLink=\"false\">http://thesummitsf.wordpress.com/?p=634</guid>\n\
1865
+ \t\t<description><![CDATA[It\xE2\x80\x99s been three weeks since the last post, and all I have to report to you is that we\xE2\x80\x99ve still got building inspectors to impress, a Grand Opening to prepare for (pending inspections), a soft launch to recuperate from, and some kombucha brewing in our kitchen. Did my move to Austin set me back a [...]<img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=thesummitsf.wordpress.com&amp;blog=12364641&amp;post=634&amp;subd=thesummitsf&amp;ref=&amp;feed=1\" width=\"1\" height=\"1\" />]]></description>\n\
1866
+ \t\t\t<content:encoded><![CDATA[<p>It\xE2\x80\x99s been three weeks since the last post, and all I have to report to you is that we\xE2\x80\x99ve still got building inspectors to impress, a Grand Opening to prepare for (pending inspections), a soft launch to recuperate from, and some kombucha brewing in our kitchen.<br />\n\
1867
+ <a href=\"http://thesummitsf.files.wordpress.com/2010/09/comic-1.jpg\"><img class=\"aligncenter size-full wp-image-635\" src=\"http://thesummitsf.files.wordpress.com/2010/09/comic-1.jpg?w=337&#038;h=241\" alt=\"\" width=\"337\" height=\"241\" /></a><br />\n\
1868
+ Did my move to Austin set me back a few years? I had no idea that\xE2\x80\x94along with <a href=\"http://everyfoodfits.com/2010/08/19/myth-or-truth-whats-the-deal-with-coconut-water/\">coconut water</a> and Blue Bottle coffee\xE2\x80\x94kombucha might be the first words San Franciscans teach their infants. Some folks claim that kombucha helps promote weight loss or is capable of <a href=\"http://www.happyherbalist.com/american_cancer_society_and_kombucha_tea.htm\">curing cancer</a>.</p>\n\
1869
+ <div id=\"attachment_636\" class=\"wp-caption aligncenter\" style=\"width: 299px\"><a href=\"http://thesummitsf.files.wordpress.com/2010/09/kombucha-weight-loss.jpg\"><img class=\"size-full wp-image-636\" src=\"http://thesummitsf.files.wordpress.com/2010/09/kombucha-weight-loss.jpg?w=289&#038;h=174\" alt=\"\" width=\"289\" height=\"174\" /></a><p class=\"wp-caption-text\">i literally need to get my ass on the kombucha diet. there&#039;s a linear relationship with my expanding waistline that correlates with the time i spend cooking in the kitchen.</p></div>\n\
1870
+ <p>Kombucha is a fermented tea produced through a symbiotic relationship between a kombucha culture/mother (or SCOBY &#8211; symbiotic culture of bacteria and yeast) and bacteria. The culture itself feels like a thick, leathery pancake. The kombucha mother culture is placed in a tea highly concentrated with sugar and then feeds off the sugar for at least 10 days. The process turns the tea into a drink concentrated in acids and nutrients.</p>\n\
1871
+ <div id=\"attachment_637\" class=\"wp-caption aligncenter\" style=\"width: 368px\"><a href=\"http://thesummitsf.files.wordpress.com/2010/09/kombucha_both-glass-jar.jpg\"><img class=\"size-full wp-image-637\" src=\"http://thesummitsf.files.wordpress.com/2010/09/kombucha_both-glass-jar.jpg?w=358&#038;h=239\" alt=\"\" width=\"358\" height=\"239\" /></a><p class=\"wp-caption-text\">after 10-14 days of fermentation the tea is bottled and an anaerobic process gives the final beverage its effervescence</p></div>\n\
1872
+ <p>After some in-house training with a local kombuchaseur the Summit\xE2\x80\x99s got its own kombucha house-brew on the way that will possibly be a regular feature on the menu. I can\xE2\x80\x99t promise we\xE2\x80\x99re serving any cancer blasters or that you\xE2\x80\x99ll have <a href=\"http://www.squidoo.com/getflatabs#module8128115\">Halle Berry\xE2\x80\x99s abs</a> drinking our house formulation, but kombucha is a step up from the ordinary iced tea or coffee. The initial sip shocks the palate with prominent acidic flavors layered with subtle sweet tones. Someone described kombucha as an exotic, effervescent rose water. If I can\xE2\x80\x99t convince you to give our kombucha a try, would it matter if I told you <a href=\"http://abcnews.go.com/Business/lindsay-lohan-habit-throws-kombucha-spotlight/story?id=11125416\">Lindsay Lohan</a> drinks the stuff?</p>\n\
1873
+ <p>Kombucha news might not be exciting, but the news I do have to offer is the soft opening we just wrapped up this past weekend. Two months have passed since I started my internship with the Summit, and three days ago I had my a shot at working in a professional kitchen for the very first time. If you ask me to describe the work that goes into launching a restaurant I have three words: f*****g hard work. And that\xE2\x80\x99s coming from the girl who\xE2\x80\x99s just the intern. I don\xE2\x80\x99t recall a weekend the Summit managers weren&#8217;t \xC2\xA0here to clean or build out the space, which now looks like this:</p>\n\
1874
+ <div id=\"attachment_638\" class=\"wp-caption aligncenter\" style=\"width: 480px\"><a href=\"http://thesummitsf.files.wordpress.com/2010/09/summit-front-both.jpg\"><img class=\"size-full wp-image-638\" src=\"http://thesummitsf.files.wordpress.com/2010/09/summit-front-both.jpg?w=470&#038;h=176\" alt=\"\" width=\"470\" height=\"176\" /></a><p class=\"wp-caption-text\">The Summit. check out your new Third Space</p></div>\n\
1875
+ <p>We haven\xE2\x80\x99t had a Grand Opening to prove that the hard work\xE2\x80\x99s paid off, but we did have a full attendance that had food orders coming faster than the kitchen could prepare them, more plates to push out than our runners could keep track of, and a shortage of food even before closing (we still find ourselves apologizing to the friends and family whose orders weren\xE2\x80\x99t fulfilled). We hope that the feedback and positive support we received from this weekend\xE2\x80\x99s soft opening resonates with the response we\xE2\x80\x99ll get once the Summit opens to the public. Pictures of the soft launch are on their way. In the meantime, I\xE2\x80\x99m on my way to chant to the Grand Opening Gods to pray we pass the next building inspection and that the Opening I <a href=\"http://thesummitsf.wordpress.com/2010/08/09/intern-spective-3/\">sniffed out</a> four weeks ago takes place soon&#8230;<br />\n\
1876
+ <a href=\"http://thesummitsf.files.wordpress.com/2010/09/prayer-comic-edited.jpg\"><img class=\"aligncenter size-full wp-image-639\" src=\"http://thesummitsf.files.wordpress.com/2010/09/prayer-comic-edited.jpg?w=205&#038;h=233\" alt=\"\" width=\"205\" height=\"233\" /></a></p>\n\
1877
+ <p style=\"text-align:right;\"><em>- MISS U</em></p>\n\
1878
+ <br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/thesummitsf.wordpress.com/634/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/thesummitsf.wordpress.com/634/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godelicious/thesummitsf.wordpress.com/634/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/delicious/thesummitsf.wordpress.com/634/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gofacebook/thesummitsf.wordpress.com/634/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/facebook/thesummitsf.wordpress.com/634/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gotwitter/thesummitsf.wordpress.com/634/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/twitter/thesummitsf.wordpress.com/634/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gostumble/thesummitsf.wordpress.com/634/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/stumble/thesummitsf.wordpress.com/634/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godigg/thesummitsf.wordpress.com/634/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/digg/thesummitsf.wordpress.com/634/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/goreddit/thesummitsf.wordpress.com/634/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/reddit/thesummitsf.wordpress.com/634/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=thesummitsf.wordpress.com&amp;blog=12364641&amp;post=634&amp;subd=thesummitsf&amp;ref=&amp;feed=1\" width=\"1\" height=\"1\" />]]></content:encoded>\n\
1879
+ \t\t\t<wfw:commentRss>http://thesummitsf.wordpress.com/2010/09/15/intern-spective-krazy-for-kombucha/feed/</wfw:commentRss>\n\
1880
+ \t\t<slash:comments>3</slash:comments>\n\
1881
+ \t\n\
1882
+ \t\t<media:content url=\"http://1.gravatar.com/avatar/f38530d60fd5b7547ca7a37e28c204e1?s=96&#38;d=identicon&#38;r=G\" medium=\"image\">\n\
1883
+ \t\t\t<media:title type=\"html\">justanotherintern</media:title>\n\
1884
+ \t\t</media:content>\n\n\
1885
+ \t\t<media:content url=\"http://thesummitsf.files.wordpress.com/2010/09/comic-1.jpg\" medium=\"image\" />\n\n\
1886
+ \t\t<media:content url=\"http://thesummitsf.files.wordpress.com/2010/09/kombucha-weight-loss.jpg\" medium=\"image\" />\n\n\
1887
+ \t\t<media:content url=\"http://thesummitsf.files.wordpress.com/2010/09/kombucha_both-glass-jar.jpg\" medium=\"image\" />\n\n\
1888
+ \t\t<media:content url=\"http://thesummitsf.files.wordpress.com/2010/09/summit-front-both.jpg\" medium=\"image\" />\n\n\
1889
+ \t\t<media:content url=\"http://thesummitsf.files.wordpress.com/2010/09/prayer-comic-edited.jpg\" medium=\"image\" />\n\
1890
+ \t</item>\n\
1891
+ \t\t<item>\n\
1892
+ \t\t<title>INTERN-SPECTIVE: WE&#8217;VE GOT OUR FLAIR. WHERE\xE2\x80\x99S YOURS?</title>\n\
1893
+ \t\t<link>http://thesummitsf.wordpress.com/2010/08/19/intern-spective-we-have-our-flair-where%e2%80%99s-yours/</link>\n\
1894
+ \t\t<comments>http://thesummitsf.wordpress.com/2010/08/19/intern-spective-we-have-our-flair-where%e2%80%99s-yours/#comments</comments>\n\
1895
+ \t\t<pubDate>Thu, 19 Aug 2010 23:25:15 +0000</pubDate>\n\
1896
+ \t\t<dc:creator>Laura U</dc:creator>\n\
1897
+ \t\t\t\t<category><![CDATA[Uncategorized]]></category>\n\
1898
+ \t\t<category><![CDATA[brand idenitty]]></category>\n\
1899
+ \t\t<category><![CDATA[Freddy Anzures]]></category>\n\
1900
+ \t\t<category><![CDATA[friday the 13th]]></category>\n\
1901
+ \t\t<category><![CDATA[Red Blossom Tea Co]]></category>\n\
1902
+ \t\t<category><![CDATA[Summiteers]]></category>\n\n\
1903
+ \t\t<guid isPermaLink=\"false\">http://thesummitsf.wordpress.com/?p=524</guid>\n\
1904
+ \t\t<description><![CDATA[I intended to commit the clich\xC3\xA9 of posting an update on Friday the 13th. Well, we all know what happens when the clock strikes five on a Friday afternoon. And thus this post comes to you nearly a week later. We had an official orientation to welcome the Summit staff, after sending them off to [...]<img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=thesummitsf.wordpress.com&amp;blog=12364641&amp;post=524&amp;subd=thesummitsf&amp;ref=&amp;feed=1\" width=\"1\" height=\"1\" />]]></description>\n\
1905
+ \t\t\t<content:encoded><![CDATA[<p>I intended to commit the clich\xC3\xA9 of posting an update on Friday the 13th. Well, we all know what happens when the clock strikes five on a Friday afternoon. And thus this post comes to you nearly a week later.</p>\n\
1906
+ <p><a href=\"http://thesummitsf.files.wordpress.com/2010/08/comic-code-of-conduct.jpg\"><img class=\"aligncenter size-medium wp-image-527\" title=\"the clock strikes 5. and we're out.\" src=\"http://thesummitsf.files.wordpress.com/2010/08/comic-code-of-conduct.jpg?w=300&#038;h=148\" alt=\"\" width=\"300\" height=\"148\" /></a></p>\n\
1907
+ <p>We had an official orientation to welcome the Summit staff, after sending them off to the East Bay for a week of Blue Bottle boot camp and later immersing them in a day of <a title=\"Red Blossom Tea Co\" href=\"http://www.redblossomtea.com/content/about\">Red Blossom tea training</a>.\xC2\xA0You read that right; we\xE2\x80\x99re featuring Red Blossom tea on our menu. I&#8217;ll spill more details on our specialty drinks during the next few weeks.</p>\n\
1908
+ <p>Front of the House manager, Marco Jastillana, got serious summarizing the communal goals of the caf\xC3\xA9 and the standards our staff are expected to meet. He also unveiled the signature blue scarves Summit crew members will sport while on-site.</p>\n\
1909
+ <div id=\"attachment_533\" class=\"wp-caption aligncenter\" style=\"width: 480px\"><a href=\"http://thesummitsf.files.wordpress.com/2010/08/faces-of-the-summit1.jpg\"><img class=\"size-full wp-image-533\" title=\"faces of the summit\" src=\"http://thesummitsf.files.wordpress.com/2010/08/faces-of-the-summit1.jpg?w=470&#038;h=151\" alt=\"\" width=\"470\" height=\"151\" /></a><p class=\"wp-caption-text\">(L) Marco gets down to business (R) say <i>Hello</i>. the selection process was tough, but two rounds of interviews later, we\xE2\x80\x99ve got a complete team of Summiteers</p></div>\n\
1910
+ <p>I witnessed some surprised expressions. We even got questions from the skeptics.\xC2\xA0I\xE2\x80\x99m going to assume that the folks who remained quiet were stifling their enthusiasm to avoid\xC2\xA0any ostracism\xC2\xA0that resulted from their proclamations of love for the versatile piece of flair. It\xE2\x80\x99s a handkerchief. What <i>can&#8217;t</i> you do with it?</p>\n\
1911
+ <div id=\"attachment_535\" class=\"wp-caption aligncenter\" style=\"width: 241px\"><a href=\"http://thesummitsf.files.wordpress.com/2010/08/flare-both1.jpg\"><img class=\"size-medium wp-image-535 \" title=\"fitted out\" src=\"http://thesummitsf.files.wordpress.com/2010/08/flare-both1.jpg?w=231&#038;h=300\" alt=\"\" width=\"231\" height=\"300\" /></a><p class=\"wp-caption-text\">keeping it simple with grey and blue. i hate to toot our own horns, but you&#039;ll soon welcome some of the best-looking cafe staff in the City</p></div>\n\
1912
+ <p>I\xE2\x80\x99m probably the only person who gets this involved discussing the <a title=\"oh, the fashion possibilities of bandanas\" href=\"http://www.skooldays.com/categories/fashion/fa1055.htm\">possibilities</a> that come with coordinating grey tops and blue handkerchiefs.</p>\n\
1913
+ <p>Most everyone else has turned their focus to our caf\xC3\xA9 front. The interior has undergone a major face-lift, clad in a few fresh coats of paint and an almost finished coffee bar.</p>\n\
1914
+ <div id=\"attachment_536\" class=\"wp-caption aligncenter\" style=\"width: 480px\"><a href=\"http://thesummitsf.files.wordpress.com/2010/08/before-and-after-front-bar.jpg\"><img class=\"size-full wp-image-536\" title=\"cafe/bar front - before and after\" src=\"http://thesummitsf.files.wordpress.com/2010/08/before-and-after-front-bar.jpg?w=470&#038;h=263\" alt=\"\" width=\"470\" height=\"263\" /></a><p class=\"wp-caption-text\">evolution of the Summit cafe front</p></div>\n\
1915
+ <p>Our window front recently got dressed up with smartly designed posters displaying our brand identity.</p>\n\
1916
+ <div id=\"attachment_537\" class=\"wp-caption aligncenter\" style=\"width: 480px\"><a href=\"http://thesummitsf.files.wordpress.com/2010/08/posters-cumulative.jpg\"><img src=\"http://thesummitsf.files.wordpress.com/2010/08/posters-cumulative.jpg?w=470&#038;h=202\" alt=\"\" title=\"eye candy\" width=\"470\" height=\"202\" class=\"size-full wp-image-537\" /></a><p class=\"wp-caption-text\">window shopping in the mission? stop by to check out the new eye candy, designed by Freddy Anzures </p></div>\n\
1917
+ <p>Beyond our store front, it looks like our posters are making their way to the streets. Don\xE2\x80\x99t be surprised if while grabbing your daily dose of the <i>Guardian</i>, that you also <a title=\"The Summit's Kinko's-Style Guerrilla Marketing\" href=\"http://blogs.sfweekly.com/foodie/2010/08/summits_guerrilla_marketing.php\">catch a glimpse</a> of those four familiar peaks.</p>\n\
1918
+ <p style=\"text-align:right;\"><strong><span style=\"font-weight:normal;\"> &#8212;<em>Miss U</em></span></strong></p>\n\
1919
+ <br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/thesummitsf.wordpress.com/524/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/thesummitsf.wordpress.com/524/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godelicious/thesummitsf.wordpress.com/524/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/delicious/thesummitsf.wordpress.com/524/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gofacebook/thesummitsf.wordpress.com/524/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/facebook/thesummitsf.wordpress.com/524/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gotwitter/thesummitsf.wordpress.com/524/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/twitter/thesummitsf.wordpress.com/524/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gostumble/thesummitsf.wordpress.com/524/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/stumble/thesummitsf.wordpress.com/524/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godigg/thesummitsf.wordpress.com/524/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/digg/thesummitsf.wordpress.com/524/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/goreddit/thesummitsf.wordpress.com/524/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/reddit/thesummitsf.wordpress.com/524/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=thesummitsf.wordpress.com&amp;blog=12364641&amp;post=524&amp;subd=thesummitsf&amp;ref=&amp;feed=1\" width=\"1\" height=\"1\" />]]></content:encoded>\n\
1920
+ \t\t\t<wfw:commentRss>http://thesummitsf.wordpress.com/2010/08/19/intern-spective-we-have-our-flair-where%e2%80%99s-yours/feed/</wfw:commentRss>\n\
1921
+ \t\t<slash:comments>3</slash:comments>\n\
1922
+ \t\n\
1923
+ \t\t<media:content url=\"http://1.gravatar.com/avatar/f38530d60fd5b7547ca7a37e28c204e1?s=96&#38;d=identicon&#38;r=G\" medium=\"image\">\n\
1924
+ \t\t\t<media:title type=\"html\">justanotherintern</media:title>\n\
1925
+ \t\t</media:content>\n\n\
1926
+ \t\t<media:content url=\"http://thesummitsf.files.wordpress.com/2010/08/comic-code-of-conduct.jpg?w=300\" medium=\"image\">\n\
1927
+ \t\t\t<media:title type=\"html\">the clock strikes 5. and we're out.</media:title>\n\
1928
+ \t\t</media:content>\n\n\
1929
+ \t\t<media:content url=\"http://thesummitsf.files.wordpress.com/2010/08/faces-of-the-summit1.jpg\" medium=\"image\">\n\
1930
+ \t\t\t<media:title type=\"html\">faces of the summit</media:title>\n\
1931
+ \t\t</media:content>\n\n\
1932
+ \t\t<media:content url=\"http://thesummitsf.files.wordpress.com/2010/08/flare-both1.jpg?w=231\" medium=\"image\">\n\
1933
+ \t\t\t<media:title type=\"html\">fitted out</media:title>\n\
1934
+ \t\t</media:content>\n\n\
1935
+ \t\t<media:content url=\"http://thesummitsf.files.wordpress.com/2010/08/before-and-after-front-bar.jpg\" medium=\"image\">\n\
1936
+ \t\t\t<media:title type=\"html\">cafe/bar front - before and after</media:title>\n\
1937
+ \t\t</media:content>\n\n\
1938
+ \t\t<media:content url=\"http://thesummitsf.files.wordpress.com/2010/08/posters-cumulative.jpg\" medium=\"image\">\n\
1939
+ \t\t\t<media:title type=\"html\">eye candy</media:title>\n\
1940
+ \t\t</media:content>\n\
1941
+ \t</item>\n\
1942
+ \t\t<item>\n\
1943
+ \t\t<title>INTERN-SPECTIVE: I CAN SMELL A GRAND OPENING&#8230;</title>\n\
1944
+ \t\t<link>http://thesummitsf.wordpress.com/2010/08/09/intern-spective-3/</link>\n\
1945
+ \t\t<comments>http://thesummitsf.wordpress.com/2010/08/09/intern-spective-3/#comments</comments>\n\
1946
+ \t\t<pubDate>Mon, 09 Aug 2010 01:52:58 +0000</pubDate>\n\
1947
+ \t\t<dc:creator>Laura U</dc:creator>\n\
1948
+ \t\t\t\t<category><![CDATA[Uncategorized]]></category>\n\
1949
+ \t\t<category><![CDATA[780 Valencia St.]]></category>\n\
1950
+ \t\t<category><![CDATA[build-out]]></category>\n\
1951
+ \t\t<category><![CDATA[Grand Opening]]></category>\n\
1952
+ \t\t<category><![CDATA[i/o ventures]]></category>\n\
1953
+ \t\t<category><![CDATA[Microsoft Paint]]></category>\n\n\
1954
+ \t\t<guid isPermaLink=\"false\">http://thesummitsf.wordpress.com/?p=423</guid>\n\
1955
+ \t\t<description><![CDATA[We\xE2\x80\x99re less than three weeks away from the Summit&#8217;s projected Grand Opening. That means I have less than two weeks to find a pair of black, non-slip chef shoes if I want clearance into Eddie&#8217;s kitchen. It\xE2\x80\x99s hard to choose comfort over fashion when I just want to rock a pair of these. Alas, my [...]<img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=thesummitsf.wordpress.com&amp;blog=12364641&amp;post=423&amp;subd=thesummitsf&amp;ref=&amp;feed=1\" width=\"1\" height=\"1\" />]]></description>\n\
1956
+ \t\t\t<content:encoded><![CDATA[<p>We\xE2\x80\x99re less than three weeks away from the Summit&#8217;s projected Grand Opening. That means I have less than two weeks to find a pair of black, non-slip chef shoes if I want clearance into Eddie&#8217;s kitchen. It\xE2\x80\x99s hard to choose comfort over fashion when I just want to rock a pair of <a title=\"Christian Louboutin Boots\" href=\"http://us.christianlouboutin.com/shoes/boots/over-the-knee-boots/ronfifi-100mm.html\">these</a>.</p>\n\
1957
+ <p>Alas, my fashion woes aren&#8217;t the focus of this post but the transformation of the Summit over the course of a week. Folks might be interested in knowing that we\xE2\x80\x99re no longer <i>just</i> at the corner of 19<sup>th</sup> and Valencia. Our main entrance has been tramp stamped with <I>SEVEN EIGHTY</I>. As in <b>780 Valencia St</b>.</p>\n\
1958
+ <div id=\"attachment_424\" class=\"wp-caption aligncenter\" style=\"width: 250px\"><a href=\"http://thesummitsf.files.wordpress.com/2010/08/front-address.jpg\"><img class=\"size-medium wp-image-424\" title=\"seven eighty valencia\" src=\"http://thesummitsf.files.wordpress.com/2010/08/front-address.jpg?w=240&#038;h=300\" alt=\"\" width=\"240\" height=\"300\" /></a><p class=\"wp-caption-text\">claim your third space at 780 Valencia St.</p></div>\n\
1959
+ <p>After a few rounds of inspections, it looks like we\xE2\x80\x99re making headway. The naked beams in the kitchen and bar areas have been stuffed with insulation and are starting to sport drywall.</p>\n\
1960
+ <div id=\"attachment_437\" class=\"wp-caption aligncenter\" style=\"width: 310px\"><a href=\"http://thesummitsf.files.wordpress.com/2010/08/drywall-before-after1.jpg\"><img class=\"size-medium wp-image-437\" title=\"DRYWALL - BEFORE &amp; AFTER\" src=\"http://thesummitsf.files.wordpress.com/2010/08/drywall-before-after1.jpg?w=300&#038;h=259\" alt=\"\" width=\"300\" height=\"259\" /></a><p class=\"wp-caption-text\">i just want to hop onto this portable lift and finish the job myself. that way when friends come by i can point to the ceiling and brag, \xE2\x80\x9Chell yea, i did that\xE2\x80\x9D</p></div>\n\
1961
+ <p>We recently submitted our application for an outdoor-seating permit. I hyperventilate at the thought of having to buy Adobe Illustrator; instead, I used Microsoft Paint to create the site plan. While fiddling with the graphics, my status as an outlier grew exponentially, as I pumped out JPEGs on my Toshiba notebook in a cafe full of Mac users. Perhaps <a href=\"http://www.youtube.com/watch?v=Hxx2KcPWWZg&amp;feature=player_embedded\">Microsoft Paint</a> isn\xE2\x80\x99t an outdated tool after all; as long as the City of San Francisco accepts <i>this</i> submission (and it did), MS Paint and I are best friends.</p>\n\
1962
+ <div id=\"attachment_426\" class=\"wp-caption aligncenter\" style=\"width: 310px\"><a href=\"http://thesummitsf.files.wordpress.com/2010/08/outdoor-seating-plan.jpg\"><img class=\"size-medium wp-image-426\" title=\"outdoor seating plan\" src=\"http://thesummitsf.files.wordpress.com/2010/08/outdoor-seating-plan.jpg?w=300&#038;h=298\" alt=\"\" width=\"300\" height=\"298\" /></a><p class=\"wp-caption-text\">future of the summit&#039;s front space</p></div>\n\
1963
+ <p>There are days when the toughest decisions we make might involve determining the type of glasses beers will be served in or the bowls soup will be slurped from. We were scratching our heads at one point deciding between espresso cups in sky-blue porcelain or stainless steel. Wondering which was the victor? Come to our opening in a few weeks to find out.</p>\n\
1964
+ <div class=\"wp-caption aligncenter\" style=\"width: 310px\"><a href=\"http://thesummitsf.files.wordpress.com/2010/08/espresso-cups.jpg\"><img class=\"size-medium wp-image-427\" title=\"blue porcelain vs stainless steel\" src=\"http://thesummitsf.files.wordpress.com/2010/08/espresso-cups.jpg?w=300&#038;h=164\" alt=\"\" width=\"300\" height=\"164\" /></a><p class=\"wp-caption-text\">a hybrid of these two would be pretty awesome</p></div>\n\
1965
+ <p>Mid-week, we took a small break from decisions for barbecuing and beer-sipping on the rooftop of the Summit space. \xC2\xA0The ice breaker served to introduce newly hired members of the Summit staff to the fellows who regularly come to the incubation space for mentorship from the I/O Ventures team.</p>\n\
1966
+ <div id=\"attachment_428\" class=\"wp-caption aligncenter\" style=\"width: 310px\"><a href=\"http://thesummitsf.files.wordpress.com/2010/08/bbq-3.jpg\"><img class=\"size-medium wp-image-428\" title=\"summit sf + IO ventures ice breaker\" src=\"http://thesummitsf.files.wordpress.com/2010/08/bbq-3.jpg?w=300&#038;h=114\" alt=\"\" width=\"300\" height=\"114\" /></a><p class=\"wp-caption-text\">rooftop mingling + burger broiling = summer lovin\xE2\x80\x99</p></div>\n\
1967
+ <div id=\"attachment_429\" class=\"wp-caption aligncenter\" style=\"width: 310px\"><a href=\"http://thesummitsf.files.wordpress.com/2010/08/corn-knackwurst.jpg\"><img class=\"size-medium wp-image-429\" src=\"http://thesummitsf.files.wordpress.com/2010/08/corn-knackwurst.jpg?w=300&#038;h=219\" alt=\"\" width=\"300\" height=\"219\" /></a><p class=\"wp-caption-text\">grill us some knackwurst, and we will follow</p></div>\n\
1968
+ <p>Now that our address is official and the incubation space is quickly evolving into the envisioned Third Space, I\xE2\x80\x99d suggest that curious readers drop by to check out the spot. But if in a few weeks there&#8217;s not a single thing you recall from this post, at least remember that if you&#8217;re looking for a place to find knock-out grub tastefully-paired with a glass of wine or a cold beer, look no further than our space at the corner of 19<sup>th</sup> St and Valencia.</p>\n\
1969
+ <p> <i>&#8212;Miss U</i></p>\n\
1970
+ <br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/thesummitsf.wordpress.com/423/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/thesummitsf.wordpress.com/423/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godelicious/thesummitsf.wordpress.com/423/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/delicious/thesummitsf.wordpress.com/423/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gofacebook/thesummitsf.wordpress.com/423/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/facebook/thesummitsf.wordpress.com/423/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gotwitter/thesummitsf.wordpress.com/423/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/twitter/thesummitsf.wordpress.com/423/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gostumble/thesummitsf.wordpress.com/423/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/stumble/thesummitsf.wordpress.com/423/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godigg/thesummitsf.wordpress.com/423/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/digg/thesummitsf.wordpress.com/423/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/goreddit/thesummitsf.wordpress.com/423/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/reddit/thesummitsf.wordpress.com/423/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=thesummitsf.wordpress.com&amp;blog=12364641&amp;post=423&amp;subd=thesummitsf&amp;ref=&amp;feed=1\" width=\"1\" height=\"1\" />]]></content:encoded>\n\
1971
+ \t\t\t<wfw:commentRss>http://thesummitsf.wordpress.com/2010/08/09/intern-spective-3/feed/</wfw:commentRss>\n\
1972
+ \t\t<slash:comments>1</slash:comments>\n\
1973
+ \t\n\
1974
+ \t\t<media:content url=\"http://1.gravatar.com/avatar/f38530d60fd5b7547ca7a37e28c204e1?s=96&#38;d=identicon&#38;r=G\" medium=\"image\">\n\
1975
+ \t\t\t<media:title type=\"html\">justanotherintern</media:title>\n\
1976
+ \t\t</media:content>\n\n\
1977
+ \t\t<media:content url=\"http://thesummitsf.files.wordpress.com/2010/08/front-address.jpg?w=240\" medium=\"image\">\n\
1978
+ \t\t\t<media:title type=\"html\">seven eighty valencia</media:title>\n\
1979
+ \t\t</media:content>\n\n\
1980
+ \t\t<media:content url=\"http://thesummitsf.files.wordpress.com/2010/08/drywall-before-after1.jpg?w=300\" medium=\"image\">\n\
1981
+ \t\t\t<media:title type=\"html\">DRYWALL - BEFORE &#38; AFTER</media:title>\n\
1982
+ \t\t</media:content>\n\n\
1983
+ \t\t<media:content url=\"http://thesummitsf.files.wordpress.com/2010/08/outdoor-seating-plan.jpg?w=300\" medium=\"image\">\n\
1984
+ \t\t\t<media:title type=\"html\">outdoor seating plan</media:title>\n\
1985
+ \t\t</media:content>\n\n\
1986
+ \t\t<media:content url=\"http://thesummitsf.files.wordpress.com/2010/08/espresso-cups.jpg?w=300\" medium=\"image\">\n\
1987
+ \t\t\t<media:title type=\"html\">blue porcelain vs stainless steel</media:title>\n\
1988
+ \t\t</media:content>\n\n\
1989
+ \t\t<media:content url=\"http://thesummitsf.files.wordpress.com/2010/08/bbq-3.jpg?w=300\" medium=\"image\">\n\
1990
+ \t\t\t<media:title type=\"html\">summit sf + IO ventures ice breaker</media:title>\n\
1991
+ \t\t</media:content>\n\n\
1992
+ \t\t<media:content url=\"http://thesummitsf.files.wordpress.com/2010/08/corn-knackwurst.jpg?w=300\" medium=\"image\" />\n\
1993
+ \t</item>\n\
1994
+ \t\t<item>\n\
1995
+ \t\t<title>INTERN-SPECTIVE: SNEAK PEEK AT THE SUMMIT&#8217;S PEEK GALLERY</title>\n\
1996
+ \t\t<link>http://thesummitsf.wordpress.com/2010/07/29/intern-spective-2/</link>\n\
1997
+ \t\t<comments>http://thesummitsf.wordpress.com/2010/07/29/intern-spective-2/#comments</comments>\n\
1998
+ \t\t<pubDate>Thu, 29 Jul 2010 08:40:46 +0000</pubDate>\n\
1999
+ \t\t<dc:creator>Laura U</dc:creator>\n\
2000
+ \t\t\t\t<category><![CDATA[Uncategorized]]></category>\n\
2001
+ \t\t<category><![CDATA[Blue Bottle]]></category>\n\
2002
+ \t\t<category><![CDATA[Bruce Lee]]></category>\n\
2003
+ \t\t<category><![CDATA[latte art]]></category>\n\
2004
+ \t\t<category><![CDATA[Peek Gallery]]></category>\n\
2005
+ \t\t<category><![CDATA[Third Space Concept]]></category>\n\n\
2006
+ \t\t<guid isPermaLink=\"false\">http://thesummitsf.wordpress.com/?p=370</guid>\n\
2007
+ \t\t<description><![CDATA[These days everyone needs a third space. It\xE2\x80\x99s the perfect outlet, because telecommuting from home is ideal but often hones distractions that inhibit productivity, much like the 15-watt energy-efficient light bulb that is saving the earth but not so much your eyesight. So you hit up your third space, a caf\xC3\xA9 down the street. You\xE2\x80\x99re [...]<img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=thesummitsf.wordpress.com&amp;blog=12364641&amp;post=370&amp;subd=thesummitsf&amp;ref=&amp;feed=1\" width=\"1\" height=\"1\" />]]></description>\n\
2008
+ \t\t\t<content:encoded><![CDATA[<p>These days everyone needs a <a href=\"http://thesummitsf.wordpress.com/about/\">third space</a>. It\xE2\x80\x99s the perfect outlet, because telecommuting from home is ideal but often hones distractions that inhibit productivity, much like the 15-watt energy-efficient light bulb that is saving the earth but not so much your eyesight.</p>\n\
2009
+ <p style=\"text-align:center;\"><a href=\"http://thesummitsf.files.wordpress.com/2010/07/eslb-cartoon.png\"><img class=\"aligncenter size-medium wp-image-371\" src=\"http://thesummitsf.files.wordpress.com/2010/07/eslb-cartoon.png?w=284&#038;h=300\" alt=\"\" width=\"284\" height=\"300\" /></a></p>\n\
2010
+ <p>So you hit up your third space, a caf\xC3\xA9 down the street. You\xE2\x80\x99re equipped with a laptop and every intention to do work. But what\xE2\x80\x99s that I see? You are <a href=\"http://www.lemondrop.com/2010/06/24/is-it-ok-to-facebook-stalk-a-crush/\">facebook-stalking</a> the girl you met last week. Although sometimes, when the wifi connection is too slow to successfully cyber stalk and the hot girl sitting at the adjacent table (who, by the way, is also a regular) <I>always</I> fails to notice your excessive glances, you\xE2\x80\x99re relegated to staring at blank walls while working on your fourth free refill.</p>\n\
2011
+ <div id=\"attachment_373\" class=\"wp-caption aligncenter\" style=\"width: 310px\"><a href=\"http://thesummitsf.files.wordpress.com/2010/07/bare-walls.jpg\"><img class=\"size-medium wp-image-373 \" src=\"http://thesummitsf.files.wordpress.com/2010/07/bare-walls.jpg?w=300&#038;h=255\" alt=\"\" width=\"300\" height=\"255\" /></a><p class=\"wp-caption-text\">the Summit walls. ready for some action.</p></div>\n\
2012
+ <p>Come September 2010 the Summit\xE2\x80\x99s walls will be dressed to whet your imagination, so that a muse isn\xE2\x80\x99t the only reason you come in for a macchiato. I&#8217;ve got fresh details on the Summit\xE2\x80\x99s Peek Gallery\xC2\xA0that may pique your interest. Gallery director, Marky Enriquez, has named the first show \xE2\x80\x9C33 1/3: Album Art in the 3<sup>rd</sup> Space\xE2\x80\x9D. The opening will showcase the Bay Area\xE2\x80\x99s renowned record collectors, shop owners, designers, DJ\xE2\x80\x99s and album covers that best represent the \xE2\x80\x9Cthird space\xE2\x80\x9D concept. It will be the first of a series of album art shows at the Peek, which will feature futurist and space-age themes.</p>\n\
2013
+ <div id=\"attachment_374\" class=\"wp-caption aligncenter\" style=\"width: 183px\"><a href=\"http://thesummitsf.files.wordpress.com/2010/07/img_5101-copy.jpg\"><img class=\"size-medium wp-image-374 \" src=\"http://thesummitsf.files.wordpress.com/2010/07/img_5101-copy.jpg?w=173&#038;h=300\" alt=\"\" width=\"173\" height=\"300\" /></a><p class=\"wp-caption-text\">Marky Enriquez, gallery director of Peek Gallery</p></div>\n\
2014
+ <p>Among the shows slated to rotate after the first opening are \xE2\x80\x9CThe Nightlife is the Right Life\xE2\x80\x9D and \xE2\x80\x9CHistory of the Mixer\xE2\x80\x9D, each focusing on applied arts and emphasizing exceptional graphic, industrial and fashion/textile design work. Ultimately, Marky would like the Peek to emphasize the Summit as the third space in the \xE2\x80\x9Cthird place\xE2\x80\x9D and to embody the concept that public gathering spaces are essential parts of the community.</p>\n\
2015
+ <div id=\"attachment_372\" class=\"wp-caption aligncenter\" style=\"width: 275px\"><a href=\"http://thesummitsf.files.wordpress.com/2010/07/the-summit-fb-photo.jpg\"><img class=\"size-medium wp-image-372 \" src=\"http://thesummitsf.files.wordpress.com/2010/07/the-summit-fb-photo.jpg?w=265&#038;h=300\" alt=\"\" width=\"265\" height=\"300\" /></a><p class=\"wp-caption-text\">your third space</p></div>\n\
2016
+ <p>On another high note, we have artwork in the name of coffee. We\xE2\x80\x99ve finished up a week of formal Blue Bottle training at BB\xE2\x80\x99s Oakland headquarters. Lessons included learning to consistently brew the ideal cup of espresso and getting milk to steam and foam just right so that the first drink we pour you might look this delicious:</p>\n\
2017
+ <div id=\"attachment_375\" class=\"wp-caption aligncenter\" style=\"width: 210px\"><a href=\"http://thesummitsf.files.wordpress.com/2010/07/coffe_foam_art_faces_bruce_lee-final-copy.jpg\"><img class=\"size-full wp-image-375 \" src=\"http://thesummitsf.files.wordpress.com/2010/07/coffe_foam_art_faces_bruce_lee-final-copy.jpg?w=200&#038;h=150\" alt=\"\" width=\"200\" height=\"150\" /></a><p class=\"wp-caption-text\">who says you can&#039;t enjoy your latt\xC3\xA9 with Bruce Lee?</p></div>\n\
2018
+ <p>Four days into training, and I\xE2\x80\x99m candidly admitting that it\xE2\x80\x99s not an easy task (is this callous formation on these palms from espresso tamping?). Tip your baristas well; it takes <I>a latt\xC3\xA9</I> work to produce the perfect latt\xC3\xA9.</p>\n\
2019
+ <p> <I>&#8212;Miss U</I></p>\n\
2020
+ <br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/thesummitsf.wordpress.com/370/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/thesummitsf.wordpress.com/370/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godelicious/thesummitsf.wordpress.com/370/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/delicious/thesummitsf.wordpress.com/370/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gofacebook/thesummitsf.wordpress.com/370/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/facebook/thesummitsf.wordpress.com/370/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gotwitter/thesummitsf.wordpress.com/370/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/twitter/thesummitsf.wordpress.com/370/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gostumble/thesummitsf.wordpress.com/370/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/stumble/thesummitsf.wordpress.com/370/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godigg/thesummitsf.wordpress.com/370/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/digg/thesummitsf.wordpress.com/370/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/goreddit/thesummitsf.wordpress.com/370/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/reddit/thesummitsf.wordpress.com/370/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=thesummitsf.wordpress.com&amp;blog=12364641&amp;post=370&amp;subd=thesummitsf&amp;ref=&amp;feed=1\" width=\"1\" height=\"1\" />]]></content:encoded>\n\
2021
+ \t\t\t<wfw:commentRss>http://thesummitsf.wordpress.com/2010/07/29/intern-spective-2/feed/</wfw:commentRss>\n\
2022
+ \t\t<slash:comments>0</slash:comments>\n\
2023
+ \t\n\
2024
+ \t\t<media:content url=\"http://1.gravatar.com/avatar/f38530d60fd5b7547ca7a37e28c204e1?s=96&#38;d=identicon&#38;r=G\" medium=\"image\">\n\
2025
+ \t\t\t<media:title type=\"html\">justanotherintern</media:title>\n\
2026
+ \t\t</media:content>\n\n\
2027
+ \t\t<media:content url=\"http://thesummitsf.files.wordpress.com/2010/07/eslb-cartoon.png?w=284\" medium=\"image\" />\n\n\
2028
+ \t\t<media:content url=\"http://thesummitsf.files.wordpress.com/2010/07/bare-walls.jpg?w=300\" medium=\"image\" />\n\n\
2029
+ \t\t<media:content url=\"http://thesummitsf.files.wordpress.com/2010/07/img_5101-copy.jpg?w=173\" medium=\"image\" />\n\n\
2030
+ \t\t<media:content url=\"http://thesummitsf.files.wordpress.com/2010/07/the-summit-fb-photo.jpg?w=265\" medium=\"image\" />\n\n\
2031
+ \t\t<media:content url=\"http://thesummitsf.files.wordpress.com/2010/07/coffe_foam_art_faces_bruce_lee-final-copy.jpg\" medium=\"image\" />\n\
2032
+ \t</item>\n\
2033
+ \t\t<item>\n\
2034
+ \t\t<title>INTERN-SPECTIVE: BLUE BOTTLE BINGE</title>\n\
2035
+ \t\t<link>http://thesummitsf.wordpress.com/2010/07/21/intern-spective/</link>\n\
2036
+ \t\t<comments>http://thesummitsf.wordpress.com/2010/07/21/intern-spective/#comments</comments>\n\
2037
+ \t\t<pubDate>Wed, 21 Jul 2010 07:11:29 +0000</pubDate>\n\
2038
+ \t\t<dc:creator>Laura U</dc:creator>\n\
2039
+ \t\t\t\t<category><![CDATA[Uncategorized]]></category>\n\
2040
+ \t\t<category><![CDATA[Blue Bottle Coffee]]></category>\n\
2041
+ \t\t<category><![CDATA[organic roasts]]></category>\n\
2042
+ \t\t<category><![CDATA[siphon bar]]></category>\n\n\
2043
+ \t\t<guid isPermaLink=\"false\">http://thesummitsf.wordpress.com/?p=326</guid>\n\
2044
+ \t\t<description><![CDATA[I\xE2\x80\x99m ashamed to admit this, but about two weeks ago I was on a mission to find out What the hell is Blue Bottle coffee? I was embarrassed, because people talk about it as if Gandhi were the barista behind every cup. And as we know, The Summit\xE2\x80\x99s menu will exclusively feature Blue Bottle coffee. [...]<img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=thesummitsf.wordpress.com&amp;blog=12364641&amp;post=326&amp;subd=thesummitsf&amp;ref=&amp;feed=1\" width=\"1\" height=\"1\" />]]></description>\n\
2045
+ \t\t\t<content:encoded><![CDATA[<p>I\xE2\x80\x99m ashamed to admit this, but about two weeks ago I was on a mission to find out <em>What the hell is Blue Bottle coffee?</em> I was embarrassed, because people talk about it as if Gandhi were the barista behind every cup. And as we know, The Summit\xE2\x80\x99s menu will exclusively feature Blue Bottle coffee.<em> </em></p>\n\
2046
+ <p>Every time Blue and Bottle are uttered together, the loyalist fans fight to have the last word about how much they love this stuff. Initially, I secretly poked fun at this Blue Bottle following. Two weeks post-first sip, and, yes, now I find myself on the Blue Bottle bandwagon.</p>\n\
2047
+ <div id=\"attachment_328\" class=\"wp-caption aligncenter\" style=\"width: 220px\"><a href=\"http://thesummitsf.files.wordpress.com/2010/07/blue-bottle-coffee-addiction-1.jpg\"><img class=\"size-medium wp-image-328 \" src=\"http://thesummitsf.files.wordpress.com/2010/07/blue-bottle-coffee-addiction-1.jpg?w=210&#038;h=300\" alt=\"\" width=\"210\" height=\"300\" /></a><p class=\"wp-caption-text\">it\xE2\x80\x99s okay. you can laugh at me about my love for Blue Bottle coffee</p></div>\n\
2048
+ <p>Blue Bottle receives recognition for starting with single-origin beans from artisanal producers who sustainably grow and harvest to enhance flavor. The beans are then roasted in small batches and brewed on a drip bar. The Summit will prepare its Blue Bottle coffee in the same manner.</p>\n\
2049
+ <p>I\xE2\x80\x98m not a coffee connoisseur, so I\xE2\x80\x99m bashful about ordering lattes and cappuccinos. I\xE2\x80\x99m a drip coffee kinda\xE2\x80\x99 girl, preferably black and absent of cream and sugar. Really, that\xE2\x80\x99s all you need, because every Blue Bottle blend produces a drink rich in aroma, full in flavor, and absent of any bitterness.</p>\n\
2050
+ <p>There is much pleasure in knowing that soon enough I\xE2\x80\x99ll be able to order a cup of Blue Bottle coffee from the Mission\xE2\x80\x99s own Summit location. For now, I usually pick up a cup from the Blue Bottle venue located at Mint Plaza. \xC2\xA0I like to admire the $20,000 piece of equipment that sits towards the back of the cafe:</p>\n\
2051
+ <div id=\"attachment_337\" class=\"wp-caption aligncenter\" style=\"width: 310px\"><a href=\"http://thesummitsf.files.wordpress.com/2010/07/blue-bottle-siphon-w-caption.jpg\"><img class=\"size-medium wp-image-337 \" src=\"http://thesummitsf.files.wordpress.com/2010/07/blue-bottle-siphon-w-caption.jpg?w=300&#038;h=200\" alt=\"\" width=\"300\" height=\"200\" /></a><p class=\"wp-caption-text\">this bad boy, imported from Japan, is the only halogen-powered model in the US</p></div>\n\
2052
+ <div id=\"attachment_338\" class=\"wp-caption aligncenter\" style=\"width: 235px\"><a href=\"http://thesummitsf.files.wordpress.com/2010/07/img_4998.jpg\"><img class=\"size-medium wp-image-338 \" src=\"http://thesummitsf.files.wordpress.com/2010/07/img_4998.jpg?w=225&#038;h=300\" alt=\"\" width=\"225\" height=\"300\" /></a><p class=\"wp-caption-text\">a scientist at heart, i sometimes feel inclined to don a lab coat and safety goggles and work this equipment</p></div>\n\
2053
+ <p>With a crash course of Blue Bottle 101 under my belt, I now find myself scratching my head over our next project, as Eddie and I work on putting a custom-built drip bar together. Once The Summit doors are open, please fight the urge to punch me if I happen to cut to the front of the line in an effort to grab the first cup of Blue Bottle coffee.</p>\n\
2054
+ <p style=\"text-align:right;\">&#8212; <em>Miss U</em></p>\n\
2055
+ <br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/thesummitsf.wordpress.com/326/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/thesummitsf.wordpress.com/326/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godelicious/thesummitsf.wordpress.com/326/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/delicious/thesummitsf.wordpress.com/326/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gofacebook/thesummitsf.wordpress.com/326/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/facebook/thesummitsf.wordpress.com/326/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gotwitter/thesummitsf.wordpress.com/326/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/twitter/thesummitsf.wordpress.com/326/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gostumble/thesummitsf.wordpress.com/326/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/stumble/thesummitsf.wordpress.com/326/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godigg/thesummitsf.wordpress.com/326/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/digg/thesummitsf.wordpress.com/326/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/goreddit/thesummitsf.wordpress.com/326/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/reddit/thesummitsf.wordpress.com/326/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=thesummitsf.wordpress.com&amp;blog=12364641&amp;post=326&amp;subd=thesummitsf&amp;ref=&amp;feed=1\" width=\"1\" height=\"1\" />]]></content:encoded>\n\
2056
+ \t\t\t<wfw:commentRss>http://thesummitsf.wordpress.com/2010/07/21/intern-spective/feed/</wfw:commentRss>\n\
2057
+ \t\t<slash:comments>1</slash:comments>\n\
2058
+ \t\n\
2059
+ \t\t<media:content url=\"http://1.gravatar.com/avatar/f38530d60fd5b7547ca7a37e28c204e1?s=96&#38;d=identicon&#38;r=G\" medium=\"image\">\n\
2060
+ \t\t\t<media:title type=\"html\">justanotherintern</media:title>\n\
2061
+ \t\t</media:content>\n\n\
2062
+ \t\t<media:content url=\"http://thesummitsf.files.wordpress.com/2010/07/blue-bottle-coffee-addiction-1.jpg?w=210\" medium=\"image\" />\n\n\
2063
+ \t\t<media:content url=\"http://thesummitsf.files.wordpress.com/2010/07/blue-bottle-siphon-w-caption.jpg?w=300\" medium=\"image\" />\n\n\
2064
+ \t\t<media:content url=\"http://thesummitsf.files.wordpress.com/2010/07/img_4998.jpg?w=225\" medium=\"image\" />\n\
2065
+ \t</item>\n\
2066
+ \t\t<item>\n\
2067
+ \t\t<title>INTERN-SPECTIVE: NEWBIE ON THE BLOCK</title>\n\
2068
+ \t\t<link>http://thesummitsf.wordpress.com/2010/07/13/266/</link>\n\
2069
+ \t\t<comments>http://thesummitsf.wordpress.com/2010/07/13/266/#comments</comments>\n\
2070
+ \t\t<pubDate>Tue, 13 Jul 2010 00:00:15 +0000</pubDate>\n\
2071
+ \t\t<dc:creator>Laura U</dc:creator>\n\
2072
+ \t\t\t\t<category><![CDATA[Uncategorized]]></category>\n\
2073
+ \t\t<category><![CDATA[Anthony Bourdain]]></category>\n\
2074
+ \t\t<category><![CDATA[Ferry Plaza Farmers Market]]></category>\n\
2075
+ \t\t<category><![CDATA[launch]]></category>\n\
2076
+ \t\t<category><![CDATA[tasting]]></category>\n\n\
2077
+ \t\t<guid isPermaLink=\"false\">http://thesummitsf.wordpress.com/?p=266</guid>\n\
2078
+ \t\t<description><![CDATA[I learned about The Summit after returning home to the Bay with plans to attend culinary school (and, of course, without an ounce of experience in the food business). A few conversations later with culinary school graduates, I started to question whether I was ready to consummate my relationship with cooking and agree to this [...]<img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=thesummitsf.wordpress.com&amp;blog=12364641&amp;post=266&amp;subd=thesummitsf&amp;ref=&amp;feed=1\" width=\"1\" height=\"1\" />]]></description>\n\
2079
+ \t\t\t<content:encoded><![CDATA[<p>I learned about The Summit after returning home to the Bay with plans to attend culinary school (and, of course, without an ounce of experience in the food business). A few conversations later with culinary school graduates, I started to question whether I was ready to consummate my relationship with cooking and agree to this long-term commitment\xE2\x80\x94a fairly costly one, too. Where in the culinary world did I fit? Was I getting hot and bothered about the idea because I was that average Jane who strapped herself to the Food Network channel and had wet dreams about creating dishes that earned visits from <a title=\"Anthony Bourdain\" href=\"http://anthony-bourdain-blog.travelchannel.com/?fbid=_xhNVJk-YcR\" target=\"_blank\">Anthony Bourdain</a>?</p>\n\
2080
+ <p>Timing is everything. After I failed to answer all of\xC2\xA0the above questions, I was introduced to Desi and Eddie, two guys who worked in the restaurant industry for years and came together so that before this summer&#8217;s end, the City will find out that a well-designed space complemented with a menu boasting rich flavors can frenzy a palate into ecstasy.</p>\n\
2081
+ <p>My first meeting with Eddie involved a trip to the<em> </em><a title=\"San Francisco Ferry Plaza Farmers Market\" href=\"http://www.ferrybuildingmarketplace.com/farmers_market.php\" target=\"_blank\"><em>San Francisco Ferry Plaza Farmers Market</em></a> in preparation for a few upcoming tastings. I joined him in the kitchen as he prepared dishes that are likely appearing on the menu.</p>\n\
2082
+ <div id=\"attachment_276\" class=\"wp-caption aligncenter\" style=\"width: 310px\"><a href=\"http://thesummitsf.files.wordpress.com/2010/07/pork-4.jpg\"><img class=\"size-medium wp-image-276\" src=\"http://thesummitsf.files.wordpress.com/2010/07/pork-4.jpg?w=300&#038;h=223\" alt=\"\" width=\"300\" height=\"223\" /></a><p class=\"wp-caption-text\">pulled pork + wild greens + fresh loaf = heaven</p></div>\n\
2083
+ <p>I felt like a pretty lucky intern; the tasting included a medley of roasted baby potatoes and wild mushrooms in vadouvan,\xC2\xA0followed by a pulled pork sandwich with wild greens.</p>\n\
2084
+ <div id=\"attachment_269\" class=\"wp-caption aligncenter\" style=\"width: 310px\"><a href=\"http://thesummitsf.files.wordpress.com/2010/07/salad-2.jpg\"><img class=\"size-medium wp-image-269 \" src=\"http://thesummitsf.files.wordpress.com/2010/07/salad-2.jpg?w=300&#038;h=160\" alt=\"\" width=\"300\" height=\"160\" /></a><p class=\"wp-caption-text\">call me crazy, but the butter bolete might be my all-time favorite mushroom</p></div>\n\
2085
+ <div id=\"attachment_271\" class=\"wp-caption aligncenter\" style=\"width: 310px\"><a href=\"http://thesummitsf.files.wordpress.com/2010/07/salad-4.jpg\"><img class=\"size-medium wp-image-271 \" title=\"SALAD 4\" src=\"http://thesummitsf.files.wordpress.com/2010/07/salad-4.jpg?w=300&#038;h=196\" alt=\"\" width=\"300\" height=\"196\" /></a><p class=\"wp-caption-text\">it would be an injustice if this dish didn&#039;t make a cameo</p></div>\n\
2086
+ <p>I&#8217;ve had a chance to witness a side of cafe-opening I never imagined. As the launch nears, there&#8217;s new meaning to the term <em>crunch time</em>; there are still plenty of contracts to sign, applications to submit and permits to request. That&#8217;s just one layer to the complexities of the project. To simply say the process requires hard work is an understatement. And now I find myself \xC2\xA0hot and bothered about the collaboration and chaos that goes into a highly anticipated kick-off.</p>\n\
2087
+ <p style=\"text-align:right;\"><em><em>&#8212; Miss U</em></em></p>\n\
2088
+ <br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/thesummitsf.wordpress.com/266/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/thesummitsf.wordpress.com/266/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godelicious/thesummitsf.wordpress.com/266/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/delicious/thesummitsf.wordpress.com/266/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gofacebook/thesummitsf.wordpress.com/266/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/facebook/thesummitsf.wordpress.com/266/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gotwitter/thesummitsf.wordpress.com/266/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/twitter/thesummitsf.wordpress.com/266/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gostumble/thesummitsf.wordpress.com/266/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/stumble/thesummitsf.wordpress.com/266/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godigg/thesummitsf.wordpress.com/266/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/digg/thesummitsf.wordpress.com/266/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/goreddit/thesummitsf.wordpress.com/266/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/reddit/thesummitsf.wordpress.com/266/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=thesummitsf.wordpress.com&amp;blog=12364641&amp;post=266&amp;subd=thesummitsf&amp;ref=&amp;feed=1\" width=\"1\" height=\"1\" />]]></content:encoded>\n\
2089
+ \t\t\t<wfw:commentRss>http://thesummitsf.wordpress.com/2010/07/13/266/feed/</wfw:commentRss>\n\
2090
+ \t\t<slash:comments>0</slash:comments>\n\
2091
+ \t\n\
2092
+ \t\t<media:content url=\"http://1.gravatar.com/avatar/f38530d60fd5b7547ca7a37e28c204e1?s=96&#38;d=identicon&#38;r=G\" medium=\"image\">\n\
2093
+ \t\t\t<media:title type=\"html\">justanotherintern</media:title>\n\
2094
+ \t\t</media:content>\n\n\
2095
+ \t\t<media:content url=\"http://thesummitsf.files.wordpress.com/2010/07/pork-4.jpg?w=300\" medium=\"image\" />\n\n\
2096
+ \t\t<media:content url=\"http://thesummitsf.files.wordpress.com/2010/07/salad-2.jpg?w=300\" medium=\"image\" />\n\n\
2097
+ \t\t<media:content url=\"http://thesummitsf.files.wordpress.com/2010/07/salad-4.jpg?w=300\" medium=\"image\">\n\
2098
+ \t\t\t<media:title type=\"html\">SALAD 4</media:title>\n\
2099
+ \t\t</media:content>\n\
2100
+ \t</item>\n\
2101
+ \t\t<item>\n\
2102
+ \t\t<title>T-minus 30 days or so and counting&#8230;</title>\n\
2103
+ \t\t<link>http://thesummitsf.wordpress.com/2010/07/04/t-minus-30-days-or-so-and-counting/</link>\n\
2104
+ \t\t<comments>http://thesummitsf.wordpress.com/2010/07/04/t-minus-30-days-or-so-and-counting/#comments</comments>\n\
2105
+ \t\t<pubDate>Sun, 04 Jul 2010 21:22:41 +0000</pubDate>\n\
2106
+ \t\t<dc:creator>thesummitsf</dc:creator>\n\
2107
+ \t\t\t\t<category><![CDATA[Uncategorized]]></category>\n\
2108
+ \t\t<category><![CDATA[branding]]></category>\n\
2109
+ \t\t<category><![CDATA[build-out]]></category>\n\
2110
+ \t\t<category><![CDATA[food concept]]></category>\n\
2111
+ \t\t<category><![CDATA[i/o ventures]]></category>\n\
2112
+ \t\t<category><![CDATA[marketing]]></category>\n\
2113
+ \t\t<category><![CDATA[tasting]]></category>\n\n\
2114
+ \t\t<guid isPermaLink=\"false\">http://thesummitsf.wordpress.com/?p=239</guid>\n\
2115
+ \t\t<description><![CDATA[the mad dash to open the summit in 30+ days<img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=thesummitsf.wordpress.com&amp;blog=12364641&amp;post=239&amp;subd=thesummitsf&amp;ref=&amp;feed=1\" width=\"1\" height=\"1\" />]]></description>\n\
2116
+ \t\t\t<content:encoded><![CDATA[<p>it&#8217;s crunch time! construction is underway, permits are in play, help wanted ads are on their way&#8230; things to do, things to-do. i&#8217;m gitty and nervous at the same time. alot can still go wrong&#8211;like more construction going over budget, furniture not arriving on time, or worse inspectors being dicks.\xC2\xA0at this juncture i&#8217;m at the mercy of variables out of my control.</p>\n\
2117
+ <p>but when i take a step back, take a deep, breath, it&#8217;s really not that bad. between the stress of meetings and timelines i get to enjoy tasting like this with our first incubated chef:</p>\n\
2118
+ <div id=\"attachment_246\" class=\"wp-caption aligncenter\" style=\"width: 235px\"><a href=\"http://thesummitsf.files.wordpress.com/2010/07/photo-42.jpg\"><img class=\"size-medium wp-image-246\" title=\"photo-4\" src=\"http://thesummitsf.files.wordpress.com/2010/07/photo-42-e1278277487308.jpg?w=225&#038;h=300\" alt=\"\" width=\"225\" height=\"300\" /></a><p class=\"wp-caption-text\">jared formerly of orson / citizen cake looks on as we slice into his sample brioche loaf</p></div>\n\
2119
+ <p>and after tastings i get to spend time with creatives on the branding like this:</p>\n\
2120
+ <div id=\"attachment_240\" class=\"wp-caption aligncenter\" style=\"width: 310px\"><a href=\"http://thesummitsf.files.wordpress.com/2010/07/photo-3.jpg\"><img class=\"size-medium wp-image-240\" title=\"branding preview\" src=\"http://thesummitsf.files.wordpress.com/2010/07/photo-3.jpg?w=300&#038;h=225\" alt=\"\" width=\"300\" height=\"225\" /></a><p class=\"wp-caption-text\">freddy anzures giving us a sneak peak of The Summit&#039;s brand identity </p></div>\n\
2121
+ <p>or spending time with the incubated start-ups:</p>\n\
2122
+ <div id=\"attachment_241\" class=\"wp-caption aligncenter\" style=\"width: 310px\"><a href=\"http://thesummitsf.files.wordpress.com/2010/07/photo-2.jpg\"><img class=\"size-medium wp-image-241\" title=\"incubation meet-up\" src=\"http://thesummitsf.files.wordpress.com/2010/07/photo-2.jpg?w=300&#038;h=225\" alt=\"\" width=\"300\" height=\"225\" /></a><p class=\"wp-caption-text\">the first gathering of i/o venture partners, incubated start-ups, and their tech mentors</p></div>\n\
2123
+ <p>but for the next 3o days my attention will be focused on the builders and designers of the summit space:</p>\n\
2124
+ <div id=\"attachment_242\" class=\"wp-caption aligncenter\" style=\"width: 310px\"><a href=\"http://thesummitsf.files.wordpress.com/2010/07/photo-1.jpg\"><img class=\"size-medium wp-image-242\" title=\"builders and designers\" src=\"http://thesummitsf.files.wordpress.com/2010/07/photo-1.jpg?w=300&#038;h=225\" alt=\"\" width=\"300\" height=\"225\" /></a><p class=\"wp-caption-text\">kanbayashi design + travis construction = the build-out of the summit</p></div>\n\
2125
+ <p>10 months of planning and day dreaming are coming to culmination. inside i&#8217;m dreading the long hours it&#8217;ll take to see this thru. gone are my weekend jaunts across SF&#8217;s myriad of night clubs. gone are the 11a-6p days of leisure. \xC2\xA0the little voice in my head tells me &#8220;i should be careful what i wish for&#8221; because dreams do become realities&#8230;</p>\n\
2126
+ <br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/thesummitsf.wordpress.com/239/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/thesummitsf.wordpress.com/239/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godelicious/thesummitsf.wordpress.com/239/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/delicious/thesummitsf.wordpress.com/239/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gofacebook/thesummitsf.wordpress.com/239/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/facebook/thesummitsf.wordpress.com/239/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gotwitter/thesummitsf.wordpress.com/239/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/twitter/thesummitsf.wordpress.com/239/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gostumble/thesummitsf.wordpress.com/239/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/stumble/thesummitsf.wordpress.com/239/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godigg/thesummitsf.wordpress.com/239/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/digg/thesummitsf.wordpress.com/239/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/goreddit/thesummitsf.wordpress.com/239/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/reddit/thesummitsf.wordpress.com/239/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=thesummitsf.wordpress.com&amp;blog=12364641&amp;post=239&amp;subd=thesummitsf&amp;ref=&amp;feed=1\" width=\"1\" height=\"1\" />]]></content:encoded>\n\
2127
+ \t\t\t<wfw:commentRss>http://thesummitsf.wordpress.com/2010/07/04/t-minus-30-days-or-so-and-counting/feed/</wfw:commentRss>\n\
2128
+ \t\t<slash:comments>0</slash:comments>\n\
2129
+ \t\t<georss:point>37.775001 -122.447111</georss:point>\n\
2130
+ \t\t<geo:lat>37.775001</geo:lat>\n\
2131
+ \t\t<geo:long>-122.447111</geo:long>\n\
2132
+ \t\t<media:content url=\"http://0.gravatar.com/avatar/a840c1fcd7fef4cbee6c558a90067789?s=96&#38;d=identicon&#38;r=G\" medium=\"image\">\n\
2133
+ \t\t\t<media:title type=\"html\">thesummitsf</media:title>\n\
2134
+ \t\t</media:content>\n\n\
2135
+ \t\t<media:content url=\"http://thesummitsf.files.wordpress.com/2010/07/photo-42-e1278277487308.jpg?w=225\" medium=\"image\">\n\
2136
+ \t\t\t<media:title type=\"html\">photo-4</media:title>\n\
2137
+ \t\t</media:content>\n\n\
2138
+ \t\t<media:content url=\"http://thesummitsf.files.wordpress.com/2010/07/photo-3.jpg?w=300\" medium=\"image\">\n\
2139
+ \t\t\t<media:title type=\"html\">branding preview</media:title>\n\
2140
+ \t\t</media:content>\n\n\
2141
+ \t\t<media:content url=\"http://thesummitsf.files.wordpress.com/2010/07/photo-2.jpg?w=300\" medium=\"image\">\n\
2142
+ \t\t\t<media:title type=\"html\">incubation meet-up</media:title>\n\
2143
+ \t\t</media:content>\n\n\
2144
+ \t\t<media:content url=\"http://thesummitsf.files.wordpress.com/2010/07/photo-1.jpg?w=300\" medium=\"image\">\n\
2145
+ \t\t\t<media:title type=\"html\">builders and designers</media:title>\n\
2146
+ \t\t</media:content>\n\
2147
+ \t</item>\n\
2148
+ \t\t<item>\n\
2149
+ \t\t<title>&#8220;The Hustle&#8221; and &#8220;The Game&#8221;</title>\n\
2150
+ \t\t<link>http://thesummitsf.wordpress.com/2010/06/08/the-hustle-and-the-game/</link>\n\
2151
+ \t\t<comments>http://thesummitsf.wordpress.com/2010/06/08/the-hustle-and-the-game/#comments</comments>\n\
2152
+ \t\t<pubDate>Tue, 08 Jun 2010 09:15:21 +0000</pubDate>\n\
2153
+ \t\t<dc:creator>thesummitsf</dc:creator>\n\
2154
+ \t\t\t\t<category><![CDATA[Uncategorized]]></category>\n\
2155
+ \t\t<category><![CDATA[reading list]]></category>\n\
2156
+ \t\t<category><![CDATA[tipping point]]></category>\n\
2157
+ \t\t<category><![CDATA[malcom gladwell]]></category>\n\
2158
+ \t\t<category><![CDATA[jared rivera]]></category>\n\
2159
+ \t\t<category><![CDATA[danny meyer]]></category>\n\
2160
+ \t\t<category><![CDATA[roger fields]]></category>\n\
2161
+ \t\t<category><![CDATA[chip conley]]></category>\n\
2162
+ \t\t<category><![CDATA[peak]]></category>\n\
2163
+ \t\t<category><![CDATA[setting the table]]></category>\n\
2164
+ \t\t<category><![CDATA[Business Buy-out Agreements]]></category>\n\
2165
+ \t\t<category><![CDATA[the great good place]]></category>\n\
2166
+ \t\t<category><![CDATA[3rd space]]></category>\n\
2167
+ \t\t<category><![CDATA[ray oldenburg]]></category>\n\n\
2168
+ \t\t<guid isPermaLink=\"false\">http://thesummitsf.wordpress.com/?p=226</guid>\n\
2169
+ \t\t<description><![CDATA[my summer reading list for the any aspiring restauranteur<img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=thesummitsf.wordpress.com&amp;blog=12364641&amp;post=226&amp;subd=thesummitsf&amp;ref=&amp;feed=1\" width=\"1\" height=\"1\" />]]></description>\n\
2170
+ \t\t\t<content:encoded><![CDATA[<p><a href=\"http://www.rivera-pr.com/jared_rivera.htm\">Jared of Rivera PR</a> emailed me to pick my brain about vendor recommendations and general advice for eager new restauranteurs. I quickly reply back places to buy cheap places, designers to work with, etc.</p>\n\
2171
+ <p>2 hours later it hits me during bikram yoga that it&#8217;s really about <em>The Hustle and The Game</em>. Consultations from my guru <a href=\"http://www.kitchenstink.com/\">Kitchenstink</a> and late night jamo sessions with Tim Luym mixed with a hiphop soundtrack have made me see the industry in 2 distinct ways. As &#8220;The Hustle&#8221; (execution) and &#8220;The Game&#8221; (strategy). Like yin-yang, right and left, the constant push and pull of these polar ideas, and the balance of duality ultimately drive the restaurant industry.\xC2\xA0 These 6 books have influenced me greatly and have given me guiding principles that no MBA, certificate program, or bachelor degree ever will.</p>\n\
2172
+ <p><strong>The Hustle:<br />\n\
2173
+ <span style=\"font-weight:normal;\">Tips on efficiency, process, promotion, and legalities of partnerships gone bad.<br />\n\
2174
+ </span></strong></p>\n\
2175
+ <p><strong> </strong></p>\n\
2176
+ <p><strong> </strong></p>\n\
2177
+ <p><strong> </strong></p>\n\
2178
+ <p><strong> </strong></p>\n\
2179
+ <p><strong> </strong></p>\n\
2180
+ <p><strong> </strong></p>\n\
2181
+ <p><strong> </strong></p>\n\
2182
+ <p><strong> </strong></p>\n\
2183
+ <p><strong> </strong></p>\n\
2184
+ <p><strong></p>\n\
2185
+ <div class=\"wp-caption aligncenter\" style=\"width: 430px\"><img title=\"Restaurant Success by the Numbers\" src=\"http://www.coverbrowser.com/image/books-about-success/148-6.jpg\" alt=\"\" width=\"420\" height=\"630\" /><p class=\"wp-caption-text\">By Roger Fields. Here lies secret Excel formulas.</p></div>\n\
2186
+ <p></strong></p>\n\
2187
+ <p><strong> </strong></p>\n\
2188
+ <p><strong> </strong></p>\n\
2189
+ <p><strong> </strong></p>\n\
2190
+ <p><strong> </strong></p>\n\
2191
+ <p><strong> </strong></p>\n\
2192
+ <p><strong> </strong></p>\n\
2193
+ <p><strong> </strong></p>\n\
2194
+ <p><strong> </strong></p>\n\
2195
+ <p><strong> </strong></p>\n\
2196
+ <p><strong></p>\n\
2197
+ <div class=\"wp-caption aligncenter\" style=\"width: 430px\"><img class=\" \" title=\"The Tipping Point\" src=\"http://www.nyu.edu/classes/persell/aIntroNSF/images/the-tipping-point-740155.jpg\" alt=\"\" width=\"420\" height=\"651\" /><p class=\"wp-caption-text\">Word of mouth is not bought, but is an epidemic. Malcom Gladwell coined the term &quot;Stickiness.&quot;</p></div>\n\
2198
+ <p></strong></p>\n\
2199
+ <div class=\"wp-caption aligncenter\" style=\"width: 418px\"><img class=\" \" title=\"Business Buy-out Agreements\" src=\"http://static.nolo.com/rx/images/products/510/BSAG4.gif\" alt=\"\" width=\"408\" height=\"525\" /><p class=\"wp-caption-text\">When the shit hits the fan--have your ass covered.</p></div>\n\
2200
+ <p><strong>The Game:<br />\n\
2201
+ <span style=\"font-weight:normal;\">See the industry in more holistic and interconnected way.</span></strong></p>\n\
2202
+ <p><strong> </strong></p>\n\
2203
+ <div class=\"wp-caption aligncenter\" style=\"width: 342px\"><img title=\"Setting the Table\" src=\"http://s3.amazonaws.com/adaptiveblue_img/books/setting_table_transforming_power_of_hospitality_in_business/danny_meyer\" alt=\"\" width=\"332\" height=\"500\" /><p class=\"wp-caption-text\">Mastermind behindf NYC&#039;s Shake Shake, Blue Smoke, The Modern, Tabla, Gramacy Park </p></div>\n\
2204
+ <div class=\"wp-caption aligncenter\" style=\"width: 388px\"><img title=\"Peak\" src=\"http://bookfiesta4u.com/wp-content/uploads/2008/11/peak.jpg\" alt=\"\" width=\"378\" height=\"544\" /><p class=\"wp-caption-text\">Founder/CEO of Joie de Vivre Hospitality - California&#039;s largest boutique hotel breaks down the Game.</p></div>\n\
2205
+ <div class=\"wp-caption aligncenter\" style=\"width: 332px\"><img title=\"Great Good Places\" src=\"http://kellylowenstein.files.wordpress.com/2009/11/greatgoodplace.jpg?w=322&#038;h=475\" alt=\"\" width=\"322\" height=\"475\" /><p class=\"wp-caption-text\">Go beyond the brand and create a community thru the theory of 3rd Spaces.</p></div>\n\
2206
+ <p><strong><br />\n\
2207
+ </strong></p>\n\
2208
+ <br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/thesummitsf.wordpress.com/226/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/thesummitsf.wordpress.com/226/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godelicious/thesummitsf.wordpress.com/226/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/delicious/thesummitsf.wordpress.com/226/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gofacebook/thesummitsf.wordpress.com/226/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/facebook/thesummitsf.wordpress.com/226/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gotwitter/thesummitsf.wordpress.com/226/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/twitter/thesummitsf.wordpress.com/226/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gostumble/thesummitsf.wordpress.com/226/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/stumble/thesummitsf.wordpress.com/226/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godigg/thesummitsf.wordpress.com/226/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/digg/thesummitsf.wordpress.com/226/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/goreddit/thesummitsf.wordpress.com/226/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/reddit/thesummitsf.wordpress.com/226/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=thesummitsf.wordpress.com&amp;blog=12364641&amp;post=226&amp;subd=thesummitsf&amp;ref=&amp;feed=1\" width=\"1\" height=\"1\" />]]></content:encoded>\n\
2209
+ \t\t\t<wfw:commentRss>http://thesummitsf.wordpress.com/2010/06/08/the-hustle-and-the-game/feed/</wfw:commentRss>\n\
2210
+ \t\t<slash:comments>0</slash:comments>\n\
2211
+ \t\t<georss:point>37.775001 -122.447111</georss:point>\n\
2212
+ \t\t<geo:lat>37.775001</geo:lat>\n\
2213
+ \t\t<geo:long>-122.447111</geo:long>\n\
2214
+ \t\t<media:content url=\"http://0.gravatar.com/avatar/a840c1fcd7fef4cbee6c558a90067789?s=96&#38;d=identicon&#38;r=G\" medium=\"image\">\n\
2215
+ \t\t\t<media:title type=\"html\">thesummitsf</media:title>\n\
2216
+ \t\t</media:content>\n\n\
2217
+ \t\t<media:content url=\"http://www.coverbrowser.com/image/books-about-success/148-6.jpg\" medium=\"image\">\n\
2218
+ \t\t\t<media:title type=\"html\">Restaurant Success by the Numbers</media:title>\n\
2219
+ \t\t</media:content>\n\n\
2220
+ \t\t<media:content url=\"http://www.nyu.edu/classes/persell/aIntroNSF/images/the-tipping-point-740155.jpg\" medium=\"image\">\n\
2221
+ \t\t\t<media:title type=\"html\">The Tipping Point</media:title>\n\
2222
+ \t\t</media:content>\n\n\
2223
+ \t\t<media:content url=\"http://static.nolo.com/rx/images/products/510/BSAG4.gif\" medium=\"image\">\n\
2224
+ \t\t\t<media:title type=\"html\">Business Buy-out Agreements</media:title>\n\
2225
+ \t\t</media:content>\n\n\
2226
+ \t\t<media:content url=\"http://s3.amazonaws.com/adaptiveblue_img/books/setting_table_transforming_power_of_hospitality_in_business/danny_meyer\" medium=\"image\">\n\
2227
+ \t\t\t<media:title type=\"html\">Setting the Table</media:title>\n\
2228
+ \t\t</media:content>\n\n\
2229
+ \t\t<media:content url=\"http://bookfiesta4u.com/wp-content/uploads/2008/11/peak.jpg\" medium=\"image\">\n\
2230
+ \t\t\t<media:title type=\"html\">Peak</media:title>\n\
2231
+ \t\t</media:content>\n\n\
2232
+ \t\t<media:content url=\"http://kellylowenstein.files.wordpress.com/2009/11/greatgoodplace.jpg\" medium=\"image\">\n\
2233
+ \t\t\t<media:title type=\"html\">Great Good Places</media:title>\n\
2234
+ \t\t</media:content>\n\
2235
+ \t</item>\n\
2236
+ \t</channel>\n\
2237
+ </rss>"
2238
+ http_version: "1.1"
2239
+ - !ruby/struct:VCR::HTTPInteraction
2240
+ request: !ruby/struct:VCR::Request
2241
+ method: :get
2242
+ uri: http://buildr.markmail.org:80/atom/list:users
2243
+ body:
2244
+ headers:
2245
+ accept:
2246
+ - "*/*"
2247
+ user-agent:
2248
+ - Ruby
2249
+ response: !ruby/struct:VCR::Response
2250
+ status: !ruby/struct:VCR::ResponseStatus
2251
+ code: 200
2252
+ message: OK
2253
+ headers:
2254
+ content-type:
2255
+ - application/atom+xml
2256
+ date:
2257
+ - Tue, 28 Sep 2010 04:49:38
2258
+ expires:
2259
+ - Tue, 28 Sep 2010 05:46:38
2260
+ cache-control:
2261
+ - public
2262
+ server:
2263
+ - MarkLogic
2264
+ content-length:
2265
+ - "198976"
2266
+ age:
2267
+ - "960"
2268
+ x-cache:
2269
+ - HIT from cache-2.a.markmail.biz
2270
+ via:
2271
+ - 1.0 cache-2.a.markmail.biz:80 (squid)
2272
+ connection:
2273
+ - close
2274
+ body: |-
2275
+ <feed xmlns="http://www.w3.org/2005/Atom"><title>MarkMail: list:users</title><subtitle>We've Got Mail!</subtitle><link href="http://markmail.org/search/?q=list:users" rel="self"/><updated>2010-09-27T21:49:58.360344-07:00</updated><id>http://markmail.org/atom/?q=list:users</id><generator uri="http://markmail.org/atom" version="1.0">MarkMail</generator><icon>http://markmail.org/favicon.ico</icon><logo>http://markmail.org/images/logo_red.gif</logo><entry><id>urn:uuid:markmail-egvsf5gk64rpbywi</id><link href="http://markmail.org/message/egvsf5gk64rpbywi?q=list:users"/><title>[ANN] Buildrdeb 1.0.0</title><author><name>Antoine Toulme</name></author><updated>2010-09-25T18:56:45-07:00</updated><published>2010-09-25T18:56:45-07:00</published><content type="html">&lt;div xmlns="intentional"&gt;&lt;div&gt;&lt;table style="border-bottom: 1px solid #ccc; margin-bottom: 10px;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;th style="text-align: right; font-weight: normal"&gt;From:&lt;/th&gt;&lt;td&gt;Antoine Toulme (anto...@lunar-ocean.com)&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th style="text-align: right; font-weight: normal"&gt;List:&lt;/th&gt;&lt;td&gt;&lt;span xmlns:xhtml="intentional"&gt;org.apache.buildr.users&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;div&gt;&lt;div&gt;&lt;p xml:space="preserve" style="white-space: pre; margin: 0px; padding: 0px;"&gt;Hi all,
2276
+ &lt;/p&gt;&lt;p xml:space="preserve" style="white-space: pre; margin: 0px; padding: 0px;"&gt;
2277
+ we have a new release of buildrdeb. It lets you package your project as a
2278
+ debian package.
2279
+
2280
+ &lt;/p&gt;&lt;p xml:space="preserve" style="white-space: pre; margin: 0px; padding: 0px;"&gt;The new release is a jump from 0.0.3 to 1.0. We pushed for better specs and
2281
+ more robust code. The set of functionalities is well defined, so it's
2282
+ probably going to be stable for some time like this.
2283
+
2284
+ &lt;/p&gt;&lt;p xml:space="preserve" style="white-space: pre; margin: 0px; padding: 0px;"&gt;Issues and source here:
2285
+ &lt;a href="http://github.com/intalio/package_as_deb"&gt;http://github.com/intalio/package_as_deb&lt;/a&gt;
2286
+
2287
+ &lt;/p&gt;&lt;p xml:space="preserve" style="white-space: pre; margin: 0px; padding: 0px;"&gt;Thanks,
2288
+
2289
+ &lt;/p&gt;&lt;p xml:space="preserve" style="white-space: pre; margin: 0px; padding: 0px;"&gt;Antoine
2290
+ &lt;/p&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</content></entry></feed>