tumblr-rb 1.3.0 → 2.0.0.alpha

Sign up to get free protection for your applications and to get access to all the features.
Files changed (62) hide show
  1. data/.travis.yml +7 -0
  2. data/Gemfile +15 -8
  3. data/Gemfile.lock +65 -65
  4. data/LICENSE +4 -2
  5. data/README.md +31 -84
  6. data/Rakefile +8 -68
  7. data/bin/tumblr +3 -133
  8. data/lib/tumblr.rb +7 -184
  9. data/lib/tumblr/authentication.rb +71 -0
  10. data/lib/tumblr/client.rb +148 -0
  11. data/lib/tumblr/command_line_interface.rb +222 -0
  12. data/lib/tumblr/credentials.rb +31 -0
  13. data/lib/tumblr/post.rb +253 -171
  14. data/lib/tumblr/post/answer.rb +17 -0
  15. data/lib/tumblr/post/audio.rb +22 -10
  16. data/lib/tumblr/post/chat.rb +25 -0
  17. data/lib/tumblr/post/link.rb +22 -9
  18. data/lib/tumblr/post/photo.rb +29 -10
  19. data/lib/tumblr/post/quote.rb +17 -10
  20. data/lib/tumblr/post/text.rb +18 -0
  21. data/lib/tumblr/post/video.rb +26 -11
  22. data/lib/tumblr/version.rb +3 -0
  23. data/lib/tumblr/views/error.erb +6 -0
  24. data/lib/tumblr/views/form.erb +11 -0
  25. data/lib/tumblr/views/layout.erb +41 -0
  26. data/lib/tumblr/views/success.erb +6 -0
  27. data/man/tumblr.1 +67 -65
  28. data/man/tumblr.1.html +131 -108
  29. data/man/tumblr.1.ronn +76 -57
  30. data/man/tumblr.5 +48 -68
  31. data/man/tumblr.5.html +106 -114
  32. data/man/tumblr.5.ronn +38 -51
  33. data/spec/fixtures/posts.json +10 -0
  34. data/spec/fixtures/typical_animated_gif.gif +0 -0
  35. data/spec/spec_helper.rb +12 -0
  36. data/spec/tumblr/authentication_spec.rb +57 -0
  37. data/spec/tumblr/client_spec.rb +223 -0
  38. data/spec/tumblr/credentials_spec.rb +63 -0
  39. data/spec/tumblr/post_spec.rb +125 -0
  40. data/tumblr-rb.gemspec +16 -89
  41. metadata +101 -102
  42. data/lib/tumblr/authenticator.rb +0 -18
  43. data/lib/tumblr/post/conversation.rb +0 -15
  44. data/lib/tumblr/post/regular.rb +0 -14
  45. data/lib/tumblr/reader.rb +0 -191
  46. data/lib/tumblr/writer.rb +0 -39
  47. data/test/fixtures/vcr_cassettes/authenticate/authenticate.yml +0 -39
  48. data/test/fixtures/vcr_cassettes/read/all_pages.yml +0 -34
  49. data/test/fixtures/vcr_cassettes/read/authenticated.yml +0 -40
  50. data/test/fixtures/vcr_cassettes/read/authentication_failure.yml +0 -33
  51. data/test/fixtures/vcr_cassettes/read/like.yml +0 -31
  52. data/test/fixtures/vcr_cassettes/read/mwunsch.yml +0 -101
  53. data/test/fixtures/vcr_cassettes/read/optional.yml +0 -48
  54. data/test/fixtures/vcr_cassettes/read/pages.yml +0 -36
  55. data/test/fixtures/vcr_cassettes/read/tumblrgemtest.yml +0 -42
  56. data/test/fixtures/vcr_cassettes/read/unlike.yml +0 -31
  57. data/test/fixtures/vcr_cassettes/write/delete.yml +0 -31
  58. data/test/fixtures/vcr_cassettes/write/edit.yml +0 -31
  59. data/test/fixtures/vcr_cassettes/write/reblog.yml +0 -31
  60. data/test/fixtures/vcr_cassettes/write/write.yml +0 -31
  61. data/test/helper.rb +0 -44
  62. data/test/test_tumblr.rb +0 -710
@@ -1,39 +0,0 @@
1
- class Tumblr
2
- class Writer < Weary::Base
3
-
4
- headers({"User-Agent" => Tumblr::USER_AGENT})
5
-
6
- def initialize(*credentials)
7
- @defaults = {:generator => Tumblr::GENERATOR}
8
- @defaults.merge!({:email => credentials[0], :password => credentials[1]}) unless credentials.blank?
9
- end
10
-
11
- # http://www.tumblr.com/docs/en/api#api_write
12
- post :write do |write|
13
- write.url = 'http://www.tumblr.com/api/write'
14
- write.requires = [:email, :password, :type]
15
- write.with = (Post::BASIC_PARAMS | Post::POST_PARAMS)
16
- end
17
-
18
- # http://www.tumblr.com/docs/en/api#editing_posts
19
- post :edit do |edit|
20
- edit.url = 'http://www.tumblr.com/api/write'
21
- edit.requires = [:email, :password, :'post-id']
22
- edit.with = (Post::BASIC_PARAMS | Post::POST_PARAMS)
23
- end
24
-
25
- # http://www.tumblr.com/docs/en/api#reblogging_posts
26
- post :reblog do |reblog|
27
- reblog.url = 'http://www.tumblr.com/api/reblog'
28
- reblog.requires = [:email, :password, :'post-id', :'reblog-key']
29
- reblog.with = (Post::BASIC_PARAMS | Post::POST_PARAMS | Post::REBLOG_PARAMS)
30
- end
31
-
32
- # http://www.tumblr.com/docs/en/api#deleting_posts
33
- post :delete do |del|
34
- del.url = 'http://www.tumblr.com/api/delete'
35
- del.requires = [:email, :password, :'post-id']
36
- end
37
-
38
- end
39
- end
@@ -1,39 +0,0 @@
1
- ---
2
- - !ruby/struct:VCR::RecordedResponse
3
- method: :post
4
- uri: http://www.tumblr.com:80/api/authenticate
5
- response: !ruby/object:Net::HTTPOK
6
- body: |
7
- <?xml version="1.0" encoding="UTF-8"?>
8
- <tumblr version="1.0">
9
- <user default-post-format="markdown" can-upload-audio="1" can-upload-aiff="1" can-ask-question="1" can-upload-video="1" max-video-bytes-uploaded="26214400"/>
10
- <tumblelog title="M. Wunsch" is-admin="1" name="mwunsch" url="http://mwunsch.tumblr.com/" type="public" avatar-url="http://27.media.tumblr.com/avatar_14a45e5585e1_128.png" is-primary="yes" backup-post-limit="30000"/>
11
- <tumblelog title="Hacking in the Movies" is-admin="1" name="hackinginthemovies" url="http://hackinginthemovies.tumblr.com/" type="public" avatar-url="http://29.media.tumblr.com/avatar_ccdceda8f0ea_128.png" backup-post-limit="30000"/>
12
- <tumblelog title="Testing Tumblr Gem" is-admin="1" private-id="3723757" type="private" backup-post-limit="30000"/>
13
- </tumblr>
14
-
15
- body_exist: true
16
- code: "200"
17
- header:
18
- p3p:
19
- - CP="ALL ADM DEV PSAi COM OUR OTRo STP IND ONL"
20
- content-type:
21
- - text/xml
22
- connection:
23
- - close
24
- x-tumblr-usec:
25
- - D=106425
26
- server:
27
- - Apache/2.2.3 (Red Hat)
28
- date:
29
- - Sun, 07 Mar 2010 07:38:07 GMT
30
- content-length:
31
- - "804"
32
- x-tumblr-perf:
33
- - "\"ch:4/country_code_for_ip,rate-limiter,tumblelogs,tumblelog_posts_ref cm:2/rate-limiter,rate-limiter ce:0/ c:0/0 d:0/0 e:0/0\""
34
- vary:
35
- - Accept-Encoding
36
- http_version: "1.1"
37
- message: OK
38
- read: true
39
- socket:
@@ -1,34 +0,0 @@
1
- ---
2
- - !ruby/struct:VCR::RecordedResponse
3
- method: :post
4
- uri: http://tumblrgemtest.tumblr.com:80/api/pages
5
- response: !ruby/object:Net::HTTPOK
6
- body: |
7
- <?xml version="1.0" encoding="UTF-8"?>
8
- <tumblr version="1.0"><pages><page url="http://tumblrgemtest.tumblr.com/test1" render-in-theme="true" title="Page Test 1" link-title="Page Test 1">Test #1</page><page url="http://tumblrgemtest.tumblr.com/test2" render-in-theme="true" title="Page Test 2">Whatsup</page></pages></tumblr>
9
-
10
- body_exist: true
11
- code: "200"
12
- header:
13
- p3p:
14
- - CP="ALL ADM DEV PSAi COM OUR OTRo STP IND ONL"
15
- content-type:
16
- - text/xml
17
- connection:
18
- - close
19
- x-tumblr-usec:
20
- - D=86883
21
- server:
22
- - Apache/2.2.3 (Red Hat)
23
- date:
24
- - Fri, 26 Mar 2010 17:35:45 GMT
25
- content-length:
26
- - "325"
27
- x-tumblr-perf:
28
- - "\"ch:0/ cm:0/ ce:0/ c:0/0 d:0/0 e:0/0\""
29
- vary:
30
- - Accept-Encoding
31
- http_version: "1.1"
32
- message: OK
33
- read: true
34
- socket:
@@ -1,40 +0,0 @@
1
- ---
2
- - !ruby/struct:VCR::RecordedResponse
3
- method: :post
4
- uri: http://mwunsch.tumblr.com:80/api/read/
5
- response: !ruby/object:Net::HTTPOK
6
- body: |
7
- <?xml version="1.0" encoding="UTF-8"?>
8
- <tumblr version="1.0"><tumblelog name="mwunsch" timezone="US/Eastern" title="M. Wunsch">Collected visual and aural interests of &lt;a href="http://markwunsch.com" rel="me"&gt;Mark Wunsch&lt;/a&gt;.</tumblelog><posts start="0" total="66"><post id="420292045" url="http://mwunsch.tumblr.com/post/420292045" url-with-slug="http://mwunsch.tumblr.com/post/420292045/testing-something-or-other" type="regular" date-gmt="2010-03-01 19:20:12 GMT" date="Mon, 01 Mar 2010 14:20:12" unix-timestamp="1267471212" format="markdown" reblog-key="Bdxz9T94" slug="testing-something-or-other" bookmarklet="true"><regular-body>Just a test.</regular-body></post></posts></tumblr>
9
-
10
- body_exist: true
11
- code: "200"
12
- header:
13
- last-modified:
14
- - Fri, 05 Mar 2010 17:12:57 GMT
15
- p3p:
16
- - CP="ALL ADM DEV PSAi COM OUR OTRo STP IND ONL"
17
- content-type:
18
- - text/xml; charset=UTF-8
19
- connection:
20
- - close
21
- x-tumblr-usec:
22
- - D=126358
23
- x-robots-tag:
24
- - noindex
25
- server:
26
- - Apache/2.2.3 (CentOS)
27
- date:
28
- - Sat, 06 Mar 2010 12:16:06 GMT
29
- content-length:
30
- - "902"
31
- x-tumblr-perf:
32
- - "\"ch:4/tumblelog_id_for_host,tumblelogs,country_code_for_ip,tumblelog_post_count cm:3/rate-limiter,rate-limiter,rate-limiter ce:0/ c:0/0 d:0/0 e:0/0\""
33
- vary:
34
- - Accept-Encoding
35
- cache-control:
36
- - max-age=900
37
- http_version: "1.1"
38
- message: OK
39
- read: true
40
- socket:
@@ -1,33 +0,0 @@
1
- ---
2
- - !ruby/struct:VCR::RecordedResponse
3
- method: :post
4
- uri: http://mwunsch.tumblr.com:80/api/read/
5
- response: !ruby/object:Net::HTTPForbidden
6
- body: Authentication failed.
7
- body_exist: true
8
- code: "403"
9
- header:
10
- last-modified:
11
- - Fri, 05 Mar 2010 17:12:57 GMT
12
- p3p:
13
- - CP="ALL ADM DEV PSAi COM OUR OTRo STP IND ONL"
14
- content-type:
15
- - text/plain; charset=utf-8
16
- connection:
17
- - close
18
- x-tumblr-usec:
19
- - D=66602
20
- server:
21
- - Apache/2.2.3 (CentOS)
22
- date:
23
- - Sat, 06 Mar 2010 12:22:52 GMT
24
- content-length:
25
- - "22"
26
- x-tumblr-perf:
27
- - "\"ch:3/tumblelog_id_for_host,tumblelogs,country_code_for_ip cm:3/rate-limiter,rate-limiter,rate-limiter ce:0/ c:0/0 d:0/0 e:0/0\""
28
- vary:
29
- - Accept-Encoding
30
- http_version: "1.1"
31
- message: Forbidden
32
- read: true
33
- socket:
@@ -1,31 +0,0 @@
1
- ---
2
- - !ruby/struct:VCR::RecordedResponse
3
- method: :post
4
- uri: http://www.tumblr.com:80/api/like
5
- response: !ruby/object:Net::HTTPOK
6
- body: Liked post 445597771.
7
- body_exist: true
8
- code: "200"
9
- header:
10
- p3p:
11
- - CP="ALL ADM DEV PSAi COM OUR OTRo STP IND ONL"
12
- content-type:
13
- - text/plain; charset=utf-8
14
- connection:
15
- - close
16
- x-tumblr-usec:
17
- - D=91330
18
- server:
19
- - Apache/2.2.3 (Red Hat)
20
- date:
21
- - Sat, 13 Mar 2010 16:30:58 GMT
22
- content-length:
23
- - "21"
24
- x-tumblr-perf:
25
- - "\"ch:0/ cm:0/ ce:0/ c:0/0 d:0/0 e:0/0\""
26
- vary:
27
- - Accept-Encoding
28
- http_version: "1.1"
29
- message: OK
30
- read: true
31
- socket:
@@ -1,101 +0,0 @@
1
- ---
2
- - !ruby/struct:VCR::RecordedResponse
3
- method: :get
4
- uri: http://mwunsch.tumblr.com:80/api/read/
5
- response: !ruby/object:Net::HTTPOK
6
- body: "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n\
7
- <tumblr version=\"1.0\"><tumblelog name=\"mwunsch\" timezone=\"US/Eastern\" title=\"M. Wunsch\">Collected visual and aural interests of &lt;a href=\"http://markwunsch.com\" rel=\"me\"&gt;Mark Wunsch&lt;/a&gt;.</tumblelog><posts start=\"0\" total=\"66\"><post id=\"428536701\" url=\"http://mwunsch.tumblr.com/post/428536701\" url-with-slug=\"http://mwunsch.tumblr.com/post/428536701/but-for-me-im-going-to-stop-thinking-in-terms-of\" type=\"quote\" date-gmt=\"2010-03-05 17:12:57 GMT\" date=\"Fri, 05 Mar 2010 12:12:57\" unix-timestamp=\"1267809177\" format=\"markdown\" reblog-key=\"OMh0FPCk\" slug=\"but-for-me-im-going-to-stop-thinking-in-terms-of\"><quote-text>But for me, I\xE2\x80\x99m going to stop thinking in terms of products and start releasing projects. I don\xE2\x80\x99t want to be limited by thinking, \xE2\x80\x9Cis there a market for this idea.\xE2\x80\x9D From here on out, success for a project means at least one person is \xE2\x80\x9Cwatching\xE2\x80\x9D it on github.</quote-text><quote-source>&lt;a href=\"http://ted-is-a-nerd.tumblr.com/post/428529777/i-quit-or-its-open-source-from-now-on\" class=\"tumblr_blog\"&gt;I Quit, or It&amp;#8217;s Open Source from now on!&lt;/a&gt; by &lt;a href=\"http://ted-is-a-nerd.tumblr.com/\"&gt;Nerdy Ted Roden&lt;/a&gt;</quote-source></post><post id=\"424706712\" url=\"http://mwunsch.tumblr.com/post/424706712\" url-with-slug=\"http://mwunsch.tumblr.com/post/424706712/world-geodetic-system\" type=\"link\" date-gmt=\"2010-03-03 20:55:36 GMT\" date=\"Wed, 03 Mar 2010 15:55:36\" unix-timestamp=\"1267649736\" format=\"markdown\" reblog-key=\"hoqItOHh\" slug=\"world-geodetic-system\" bookmarklet=\"true\"><link-text>World Geodetic System</link-text><link-url>http://en.wikipedia.org/wiki/World_Geodetic_System</link-url><link-description>&lt;p&gt;What I&amp;#8217;m looking at on Wikipedia, right now.&lt;/p&gt;\n\n\
8
- &lt;blockquote&gt;\n &lt;p&gt;The &lt;strong&gt;World Geodetic System&lt;/strong&gt; is a standard for use in cartography, geodesy, and navigation. It comprises a standard coordinate frame for the Earth, a standard spheroidal reference surface&amp;#8230;for raw altitude data, and a gravitational equipotential surface&amp;#8230;that defines the nominal sea level.&lt;/p&gt;\n\
9
- &lt;/blockquote&gt;</link-description><tag>Wikipedia</tag></post><post id=\"409216752\" url=\"http://mwunsch.tumblr.com/post/409216752\" url-with-slug=\"http://mwunsch.tumblr.com/post/409216752/leonardo-da-vincis-polyhedra-these-are-the\" type=\"photo\" date-gmt=\"2010-02-24 15:48:17 GMT\" date=\"Wed, 24 Feb 2010 10:48:17\" unix-timestamp=\"1267026497\" format=\"markdown\" reblog-key=\"4mcMnJZx\" slug=\"leonardo-da-vincis-polyhedra-these-are-the\" bookmarklet=\"true\"><photo-caption>&lt;p&gt;&lt;a href=\"http://georgehart.com/virtual-polyhedra/leonardo.html\"&gt;Leonardo da Vinci&amp;#8217;s Polyhedra&lt;/a&gt;&lt;/p&gt;\n\n\
10
- &lt;blockquote&gt;\n &lt;p&gt;These are the first illustrations of polyhedra ever in the form of &amp;#8220;solid edges.&amp;#8221; The solidity of the edges lets one easily see which edges belong to the front and which to the back, unlike simple line drawings where the front and back surfaces may be visually confused. Yet the hollow faces allow one to see through to the structure of the rear surface. This is a brilliant new form of geometric illustration, one worthy of Leonardo&amp;#8217;s genius for insightful graphic display of information.&lt;/p&gt;\n\
11
- &lt;/blockquote&gt;</photo-caption><photo-link-url>http://georgehart.com/virtual-polyhedra/leonardo.html</photo-link-url><photo-url max-width=\"1280\">http://26.media.tumblr.com/tumblr_kycrwiQSqF1qzykueo1_250.jpg</photo-url><photo-url max-width=\"500\">http://26.media.tumblr.com/tumblr_kycrwiQSqF1qzykueo1_250.jpg</photo-url><photo-url max-width=\"400\">http://26.media.tumblr.com/tumblr_kycrwiQSqF1qzykueo1_250.jpg</photo-url><photo-url max-width=\"250\">http://26.media.tumblr.com/tumblr_kycrwiQSqF1qzykueo1_250.jpg</photo-url><photo-url max-width=\"100\">http://28.media.tumblr.com/tumblr_kycrwiQSqF1qzykueo1_100.jpg</photo-url><photo-url max-width=\"75\">http://28.media.tumblr.com/tumblr_kycrwiQSqF1qzykueo1_75sq.jpg</photo-url></post><post id=\"405012793\" url=\"http://mwunsch.tumblr.com/post/405012793\" url-with-slug=\"http://mwunsch.tumblr.com/post/405012793/the-only-programming-literature-worth-writing-is-code\" type=\"regular\" date-gmt=\"2010-02-22 15:14:12 GMT\" date=\"Mon, 22 Feb 2010 10:14:12\" unix-timestamp=\"1266851652\" format=\"markdown\" reblog-key=\"n7BSH8f6\" slug=\"the-only-programming-literature-worth-writing-is-code\"><regular-title>The only programming literature worth writing is code.</regular-title><regular-body>&lt;p&gt;I said that, &lt;a href=\"http://twitter.com/markwunsch/status/9453630873\"&gt;in a tweet&lt;/a&gt;, while thinking about &lt;a href=\"http://www.marco.org/403653088\"&gt;Marco Arment&amp;#8217;s latest post&lt;/a&gt;.&lt;/p&gt;\n\n\
12
- &lt;p&gt;I think it&amp;#8217;s true. It&amp;#8217;s not the only programming literature worth &lt;em&gt;reading&lt;/em&gt;, but I can&amp;#8217;t stomach the thought of &lt;em&gt;writing&lt;/em&gt; about programming, especially when it always falls on selfish, angry, anonymous ears.&lt;/p&gt;\n\n\
13
- &lt;p&gt;Good code is always outspoken. It&amp;#8217;s why &lt;a href=\"http://yehudakatz.com/\"&gt;Yehuda Katz&lt;/a&gt; has the best programming blog going: it&amp;#8217;s all just code.&lt;/p&gt;\n\n\
14
- &lt;p&gt;Related: &lt;a href=\"http://mwunsch.tumblr.com/post/226005635/chris-wanstrath-github\"&gt;Chris Wanstrath&amp;#8217;s at RailsConf&lt;/a&gt;. &lt;a href=\"https://gist.github.com/0a2655aed6a26fa15a02\"&gt;A transcript of that talk&lt;/a&gt;.&lt;/p&gt;\n\n\
15
- &lt;blockquote&gt;\n &lt;p&gt;Code, I&amp;#8217;m learning, is the common thread that brings developers together. It&amp;#8217;s not blogging or trolling or procrastinating, as much as we love those things.&lt;/p&gt;\n \n &lt;p&gt;It&amp;#8217;s reading, writing, and sharing code.&lt;/p&gt;\n\
16
- &lt;/blockquote&gt;</regular-body></post><post id=\"403791212\" url=\"http://mwunsch.tumblr.com/post/403791212\" url-with-slug=\"http://mwunsch.tumblr.com/post/403791212/everyone-is-the-worst-audience-but-programmers\" type=\"quote\" date-gmt=\"2010-02-22 01:12:56 GMT\" date=\"Sun, 21 Feb 2010 20:12:56\" unix-timestamp=\"1266801176\" format=\"markdown\" reblog-key=\"tRWnT0sU\" slug=\"everyone-is-the-worst-audience-but-programmers\"><quote-text>Everyone is the worst audience. But programmers are a special case. Because not only will they tell you how wrong you are, but they\xE2\x80\x99ll also tell you how stupid and idiotic you are, and they\xE2\x80\x99ll mathematically prove it, and you should never program again, and you should be fired, you moron. Their attacks are all-out personal insults on your intelligence, but much better written and argued than most internet commenters.</quote-text><quote-source>&lt;a href=\"http://www.marco.org/403653088\" class=\"tumblr_blog\"&gt;Marco.org: Business Insider will probably add an inflammatory headline about Joel Spolsky or Jason Calacanis here&lt;/a&gt;\xC2\xA0</quote-source></post><post id=\"402876465\" url=\"http://mwunsch.tumblr.com/post/402876465\" url-with-slug=\"http://mwunsch.tumblr.com/post/402876465/polyglot-computing\" type=\"link\" date-gmt=\"2010-02-21 16:50:06 GMT\" date=\"Sun, 21 Feb 2010 11:50:06\" unix-timestamp=\"1266771006\" format=\"markdown\" reblog-key=\"0uFlVSEs\" slug=\"polyglot-computing\"><link-text>Polyglot (computing)</link-text><link-url>http://en.wikipedia.org/wiki/Polyglot_%28computing%29</link-url><link-description>&lt;p&gt;What I\xE2\x80\x99m looking at on Wikipedia, right now.&lt;/p&gt;\n\n\
17
- &lt;blockquote&gt;\n &lt;p&gt;In the context of computing, a &lt;strong&gt;polyglot&lt;/strong&gt; is a computer program or script written in a valid form of multiple programming languages, which performs the same operations or output independently of the programming language used to compile or interpret it.&lt;/p&gt;\n\
18
- &lt;/blockquote&gt;</link-description><tag>Wikipedia</tag></post><post id=\"398639335\" url=\"http://mwunsch.tumblr.com/post/398639335\" url-with-slug=\"http://mwunsch.tumblr.com/post/398639335/e-123\" type=\"link\" date-gmt=\"2010-02-19 14:49:49 GMT\" date=\"Fri, 19 Feb 2010 09:49:49\" unix-timestamp=\"1266590989\" format=\"markdown\" reblog-key=\"5jtaBRiP\" slug=\"e-123\"><link-text>E.123</link-text><link-url>http://en.wikipedia.org/wiki/E.123</link-url><link-description>&lt;p&gt;What I\xE2\x80\x99m looking at on Wikipedia, right now.&lt;/p&gt;\n\n\
19
- &lt;blockquote&gt;\n &lt;p&gt;&lt;strong&gt;E.123&lt;/strong&gt;, also known as &lt;strong&gt;Notation for national and international telephone numbers, e-mail addresses and Web addresses&lt;/strong&gt; is an ITU-T standard for printed representation of telephone numbers, e-mail addresses, and web addresses.&lt;/p&gt;\n\
20
- &lt;/blockquote&gt;</link-description><tag>Wikipedia</tag></post><post id=\"392873651\" url=\"http://mwunsch.tumblr.com/post/392873651\" url-with-slug=\"http://mwunsch.tumblr.com/post/392873651/marco-org-side-effects-of-developing-for-yourself\" type=\"link\" date-gmt=\"2010-02-16 15:26:29 GMT\" date=\"Tue, 16 Feb 2010 10:26:29\" unix-timestamp=\"1266333989\" format=\"markdown\" reblog-key=\"KUl1i2f8\" slug=\"marco-org-side-effects-of-developing-for-yourself\"><link-text>Marco.org: Side effects of developing for yourself</link-text><link-url>http://www.marco.org/392848093</link-url><link-description>&lt;blockquote&gt;\n &lt;p&gt;If I let users steer product decisions, the result would be a massive codebase producing a bloated, cluttered product full of features that hardly anyone used at the expense of everyday usability and polish on the features that matter. Like Microsoft Word. Or Firefox.&lt;/p&gt;\n\
21
- &lt;/blockquote&gt;</link-description></post><post id=\"389111213\" url=\"http://mwunsch.tumblr.com/post/389111213\" url-with-slug=\"http://mwunsch.tumblr.com/post/389111213/if-you-can-have-a-bon-mot-or-a-brilliant\" type=\"quote\" date-gmt=\"2010-02-14 16:01:03 GMT\" date=\"Sun, 14 Feb 2010 11:01:03\" unix-timestamp=\"1266163263\" format=\"markdown\" reblog-key=\"Z2sB8ZIP\" slug=\"if-you-can-have-a-bon-mot-or-a-brilliant\"><quote-text>If you can have a bon mot, or a brilliant conversation, or feel strongly about something and express it, succinctly &amp;#8212; that&amp;#8217;s success.</quote-text><quote-source>&lt;a href=\"http://www.maximumfun.org/sound-young-america/actor-kevin-kline-interview-sound-young-america\"&gt;Kevin Kline on &lt;em&gt;The Sound of Young America&lt;/em&gt;&lt;/a&gt; (at about 32 minutes in or so)</quote-source></post><post id=\"385851242\" url=\"http://mwunsch.tumblr.com/post/385851242\" url-with-slug=\"http://mwunsch.tumblr.com/post/385851242/eric-royer-a-one-man-band-performs-shortnin\" type=\"video\" date-gmt=\"2010-02-12 19:00:00 GMT\" date=\"Fri, 12 Feb 2010 14:00:00\" unix-timestamp=\"1266001200\" format=\"markdown\" reblog-key=\"gymWGGbw\" slug=\"eric-royer-a-one-man-band-performs-shortnin\"><video-caption>&lt;p&gt;&lt;a href=\"http://guitarmachine.com/\"&gt;Eric Royer&lt;/a&gt;, a one-man band performs &lt;a href=\"http://en.wikipedia.org/wiki/Shortnin%27_Bread\"&gt;&lt;em&gt;Shortnin&amp;#8217; Bread&lt;/em&gt;&lt;/a&gt;&lt;/p&gt;</video-caption><video-source>http://www.youtube.com/watch?v=i7CgL7c4LeE</video-source><video-player>&lt;object width=\"400\" height=\"336\"&gt;&lt;param name=\"movie\" value=\"http://www.youtube.com/v/i7CgL7c4LeE&amp;amp;rel=0&amp;amp;egm=0&amp;amp;showinfo=0&amp;amp;fs=1\"&gt;&lt;/param&gt;&lt;param name=\"wmode\" value=\"transparent\"&gt;&lt;/param&gt;&lt;param name=\"allowFullScreen\" value=\"true\"&gt;&lt;/param&gt;&lt;embed src=\"http://www.youtube.com/v/i7CgL7c4LeE&amp;amp;rel=0&amp;amp;egm=0&amp;amp;showinfo=0&amp;amp;fs=1\" type=\"application/x-shockwave-flash\" width=\"400\" height=\"336\" allowFullScreen=\"true\" wmode=\"transparent\"&gt;&lt;/embed&gt;&lt;/object&gt;</video-player><tag>one-man-band</tag></post><post id=\"385721948\" url=\"http://mwunsch.tumblr.com/post/385721948\" url-with-slug=\"http://mwunsch.tumblr.com/post/385721948/iso-8601\" type=\"link\" date-gmt=\"2010-02-12 17:13:14 GMT\" date=\"Fri, 12 Feb 2010 12:13:14\" unix-timestamp=\"1265994794\" format=\"markdown\" reblog-key=\"k3vLDmwW\" slug=\"iso-8601\"><link-text>ISO 8601</link-text><link-url>http://en.wikipedia.org/wiki/ISO_8601</link-url><link-description>&lt;p&gt;What I&amp;#8217;m looking at on Wikipedia, right now.&lt;/p&gt;\n\n\
22
- &lt;blockquote&gt;\n &lt;p&gt;ISO 8601 is an international standard covering the exchange of date and time-related data.&lt;/p&gt;\n\
23
- &lt;/blockquote&gt;</link-description><tag>Wikipedia</tag></post><post id=\"384113710\" url=\"http://mwunsch.tumblr.com/post/384113710\" url-with-slug=\"http://mwunsch.tumblr.com/post/384113710/i-liked-the-old-facebook-login-better\" type=\"link\" date-gmt=\"2010-02-11 19:02:07 GMT\" date=\"Thu, 11 Feb 2010 14:02:07\" unix-timestamp=\"1265914927\" format=\"markdown\" reblog-key=\"ko3jDOvZ\" slug=\"i-liked-the-old-facebook-login-better\"><link-text>I liked the old Facebook login better</link-text><link-url>http://www.readwriteweb.com/archives/facebook_wants_to_be_your_one_true_login.php</link-url><link-description>&lt;p&gt;&lt;a href=\"http://mrgan.tumblr.com/post/384061532/i-liked-the-old-facebook-login-better\" class=\"tumblr_blog\"&gt;mrgan&lt;/a&gt;:&lt;/p&gt;\n\n\
24
- &lt;blockquote&gt;\n &lt;p&gt;What\xE2\x80\x99s apparently happening here is, Facebook users are googling for \xE2\x80\x9Cfacebook login\xE2\x80\x9D (because how else are you going to log into Facebook?), clicking the first result (which is sometimes a story &lt;i&gt;about&lt;/i&gt; Facebook, on an unrelated site), assuming that the site itself &lt;i&gt;is&lt;/i&gt; Facebook, scrolling to the bottom to get to the comment form - &lt;i&gt;still thinking they\xE2\x80\x99re on Facebook&lt;/i&gt; - and using the comment form to complain about how this, &lt;i&gt;a wholly different website&lt;/i&gt;, is a terrible redesign of Facebook.&amp;gt;&lt;/p&gt;\n\
25
- &lt;/blockquote&gt;\n\n\
26
- &lt;p&gt;The internet.&lt;/p&gt;</link-description></post><post id=\"383857890\" url=\"http://mwunsch.tumblr.com/post/383857890\" url-with-slug=\"http://mwunsch.tumblr.com/post/383857890/buzzkill\" type=\"regular\" date-gmt=\"2010-02-11 15:38:00 GMT\" date=\"Thu, 11 Feb 2010 10:38:00\" unix-timestamp=\"1265902680\" format=\"markdown\" reblog-key=\"hJU11uyW\" slug=\"buzzkill\"><regular-title>Buzzkill</regular-title><regular-body>&lt;p&gt;&lt;a href=\"http://www.google.com/buzz\"&gt;Google Buzz&lt;/a&gt; is bad.&lt;/p&gt;\n\n\
27
- &lt;p&gt;Google Buzz is inserted into Gmail, so you&amp;#8217;re really &lt;em&gt;using&lt;/em&gt; Buzz whether you want to or not, just by checking your e-mail. Whether you navigate to the Buzz label or not is completely irrelevant, you&amp;#8217;ve signed up, &lt;strong&gt;by default&lt;/strong&gt;, simply by doing something you probably do every day. You don&amp;#8217;t opt-in to Google Buzz. Can you imagine if, all of a sudden, you had a Facebook profile, simply because you talk on the phone, sometimes? This is a feature?&lt;/p&gt;\n\n\
28
- &lt;p&gt;Google Buzz automatically, &lt;strong&gt;by default&lt;/strong&gt;, sets you to &lt;em&gt;follow&lt;/em&gt; people you&amp;#8217;ve contacted. These may include your friends, but really it&amp;#8217;s just your Google address book. Can you imagine if you signed into Facebook and you were automatically friends with everyone in your Rolodex? Consequently, the people I started out following on Google Buzz were people I hadn&amp;#8217;t talked to in years; folks like a real-estate broker from years ago or relatives I don&amp;#8217;t keep in touch with. And likewise, they are following me. I didn&amp;#8217;t do anything to indicate interest in watching their &lt;em&gt;Buzz&lt;/em&gt;, I only had them in my address book. This is a feature?&lt;/p&gt;\n\n\
29
- &lt;p&gt;&lt;strong&gt;By default&lt;/strong&gt;, your Google Buzz profile is totally public. So anybody in your address book that you&amp;#8217;re not magically &amp;#8220;following&amp;#8221; can look at your profile and see who else is in your address book. &lt;a href=\"http://www.businessinsider.com/warning-google-buzz-has-a-huge-privacy-flaw-2010-2\"&gt;There may be good reasons you don&amp;#8217;t want that&lt;/a&gt;.&lt;/p&gt;\n\n\
30
- &lt;p&gt;The settings where you can set who you want to follow and the publicness of your profile are not in the Settings tab of Gmail, where you would expect them to be. They are kind of hard to find.&lt;/p&gt;\n\n\
31
- &lt;h2&gt;Quote-Unquote &amp;#8216;Contacts&amp;#8217;&lt;/h2&gt;\n\n\
32
- &lt;p&gt;This Google model of automatically connecting you with your &lt;em&gt;&amp;#8220;contacts&amp;#8221;&lt;/em&gt; is seen all over Google products now. On Google Wave, all of your &amp;#8220;contacts&amp;#8221; are in the contacts pane of Google Wave, &lt;strong&gt;by default&lt;/strong&gt;. You can&amp;#8217;t remove them from that pane.&lt;/p&gt;\n\n\
33
- &lt;p&gt;On Google Reader, I keep my Shared Items private: only a select group of people can see the items I share. When Google Buzz launched, I received a group of requests from my &amp;#8216;contacts&amp;#8217; to see my Shared Items. When I asked one about it, he said that he never requested to see my items, it must have just happened automatically: and indeed it did. Google Reader now, &lt;strong&gt;by default&lt;/strong&gt;, tells everybody in your address book that you want to view their share items. It even uses that language:&lt;/p&gt;\n\n\
34
- &lt;blockquote&gt;\n &lt;p&gt;&amp;#8220;These people are requesting access to your shared items and comments.&amp;#8221;&lt;/p&gt;\n\
35
- &lt;/blockquote&gt;\n\n\
36
- &lt;p&gt;But they&amp;#8217;re not. They did not actively &lt;em&gt;request&lt;/em&gt; access. Google requested access for them, whether they knew it or not. This is at the very least, &lt;strong&gt;&lt;em&gt;completely misleading&lt;/em&gt;&lt;/strong&gt;.&lt;/p&gt;\n\n\
37
- &lt;h2&gt;Contacts Are Not Friends.&lt;/h2&gt;\n\n\
38
- &lt;p&gt;What Google does not understand is that simply because I have somebody in my Google Address Book, does not mean I wish to track them. In my address book are my nemeses along with my friends. Simply because I keep a record of somebody&amp;#8217;s e-mail address does not mean I am interested in them. On Facebook, I opt-in to my connections. On Twitter, I elect to follow someone. Google, &lt;strong&gt;by default&lt;/strong&gt;, opts you in to these connections, whether you are aware of it or not.&lt;/p&gt;\n\n\
39
- &lt;h2&gt;Possible solution&lt;/h2&gt;\n\n\
40
- &lt;p&gt;A much more sensible default would be to only add contacts who are in the &lt;em&gt;Friends&lt;/em&gt; group of my address book. Duh.&lt;/p&gt;</regular-body><tag>Google</tag></post><post id=\"380262584\" url=\"http://mwunsch.tumblr.com/post/380262584\" url-with-slug=\"http://mwunsch.tumblr.com/post/380262584/tiger-rag-performed-by-professor-gizmo-one-man\" type=\"video\" date-gmt=\"2010-02-09 18:00:00 GMT\" date=\"Tue, 09 Feb 2010 13:00:00\" unix-timestamp=\"1265738400\" format=\"markdown\" reblog-key=\"EJbEaOC4\" slug=\"tiger-rag-performed-by-professor-gizmo-one-man\"><video-caption>&lt;p&gt;&lt;a href=\"http://en.wikipedia.org/wiki/Tiger_Rag\"&gt;&lt;em&gt;Tiger Rag&lt;/em&gt;&lt;/a&gt;, performed by Professor Gizmo, one-man band.&lt;/p&gt;</video-caption><video-source>http://www.youtube.com/watch?v=azb9kN1fgwc</video-source><video-player>&lt;object width=\"400\" height=\"336\"&gt;&lt;param name=\"movie\" value=\"http://www.youtube.com/v/azb9kN1fgwc&amp;amp;rel=0&amp;amp;egm=0&amp;amp;showinfo=0&amp;amp;fs=1\"&gt;&lt;/param&gt;&lt;param name=\"wmode\" value=\"transparent\"&gt;&lt;/param&gt;&lt;param name=\"allowFullScreen\" value=\"true\"&gt;&lt;/param&gt;&lt;embed src=\"http://www.youtube.com/v/azb9kN1fgwc&amp;amp;rel=0&amp;amp;egm=0&amp;amp;showinfo=0&amp;amp;fs=1\" type=\"application/x-shockwave-flash\" width=\"400\" height=\"336\" allowFullScreen=\"true\" wmode=\"transparent\"&gt;&lt;/embed&gt;&lt;/object&gt;</video-player><tag>one-man-band</tag></post><post id=\"380124621\" url=\"http://mwunsch.tumblr.com/post/380124621\" url-with-slug=\"http://mwunsch.tumblr.com/post/380124621/i-write-a-little-blog-called-hacking-in-the-movies\" type=\"regular\" date-gmt=\"2010-02-09 16:03:56 GMT\" date=\"Tue, 09 Feb 2010 11:03:56\" unix-timestamp=\"1265731436\" format=\"markdown\" reblog-key=\"au3lv6Yt\" slug=\"i-write-a-little-blog-called-hacking-in-the-movies\"><regular-body>&lt;p&gt;I write a little blog called &lt;a href=\"http://hackinginthemovies.tumblr.com\"&gt;Hacking in the Movies&lt;/a&gt; that discusses the tropes surrounding hacking, and computers in general, as portrayed in movies and television; I find the subject fascinating. Like the way movies portray love and revenge, so much of what people know about computers is based on &lt;em&gt;imagery&lt;/em&gt; of computing. It&amp;#8217;s a life-imitating-art-imitating-life kind of thing.&lt;/p&gt;\n\n\
41
- &lt;p&gt;Computer Imagery in film chiefly serves as a plot device to get from Point A to Point B and to create a sense of dramatic action; nothing more. This is why portrayals of computing in film are so obnoxiously silly: the goal is not to accurately represent computers and/or hackers, but to drive the story. Here is an example:&lt;/p&gt;\n\n\
42
- &lt;ul&gt;\n\
43
- &lt;li&gt;Hacker transfers data from computer to floppy disk.&lt;/li&gt;\n\
44
- &lt;li&gt;\n\
45
- &lt;a href=\"http://tvtropes.org/pmwiki/pmwiki.php/Main/ExactProgressBar\"&gt;Big progress bar appears&lt;/a&gt;.&lt;/li&gt;\n\
46
- &lt;li&gt;As progress bar advances, the Hacker character is placed in some sort of scenario where time is of the essence.&lt;/li&gt;\n\
47
- &lt;li&gt;The progress bar completes and the Hacker has secured the data just in the nick of time.&lt;/li&gt;\n\
48
- &lt;/ul&gt;\n\
49
- &lt;p&gt;The data is the &lt;a href=\"http://en.wikipedia.org/wiki/MacGuffin\"&gt;MacGuffin&lt;/a&gt;, containing information about the evil corporation, or the &lt;a href=\"http://en.wikipedia.org/wiki/Non-official_cover\"&gt;NOC List&lt;/a&gt;, or whatever. The method employed to retrieve the MacGuffin is largely trivial, and enhanced for added dramatic effect.&lt;/p&gt;\n\n\
50
- &lt;p&gt;These images of hacking, though entertaining, do very little to convince a normal (movie-going) public that computers are not the realm of &lt;a href=\"http://tvtropes.org/pmwiki/pmwiki.php/Main/TechnoWizard\"&gt;Wizards&lt;/a&gt;. I think these kinds of tropes only reinforce the thinking that computers are magical and require a specialist.&lt;/p&gt;\n\n\
51
- &lt;blockquote&gt;\n &lt;p&gt;Any sufficiently advanced technology is indistinguishable from magic.&lt;sup id=\"fnref:1\"&gt;&lt;a href=\"#fn:1\" rel=\"footnote\"&gt;1&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;\n\
52
- &lt;/blockquote&gt;\n\n\
53
- &lt;p&gt;Computers are sold and developed by highly specialized technologists; the common portrayal of both computers and the technologists that drive them shows them exist in a magical realm, outside of the scope of a layperson. I think that&amp;#8217;s pretty fair, given what I&amp;#8217;ve learned thus far in my career as a software engineer.&lt;/p&gt;\n\n\
54
- &lt;h2&gt;Dark Magic&lt;/h2&gt;\n\n\
55
- &lt;p&gt;As I become a better, and more experienced programmer, I go deeper and deeper into the lower-level systems of the computer. I don&amp;#8217;t have a background in Computer Science so each level of abstraction I remove is very new and fresh to me.&lt;/p&gt;\n\n\
56
- &lt;p&gt;And the shit I have seen is scary. Cannot be unseen.&lt;/p&gt;\n\n\
57
- &lt;p&gt;Computers are hard. It&amp;#8217;s reinforced in movie imagery, but I think it is a pretty accurate portrayal. I think what intrigues me the most about the &lt;a href=\"http://www.apple.com/ipad/\"&gt;iPad&lt;/a&gt; (largely I mean the iPhone OS) is that it provides an air-tight abstraction layer and really guards the user from the dark arts. This is computing, not as its seen in the movies, but as it &lt;em&gt;should&lt;/em&gt; be: a simple tool. Practical magic.&lt;/p&gt;\n\n\
58
- &lt;div class=\"footnotes\"&gt;\n\
59
- &lt;hr&gt;\n\
60
- &lt;ol&gt;\n\
61
- &lt;li id=\"fn:1\"&gt;\n\
62
- &lt;p&gt;&lt;a href=\"http://mwunsch.tumblr.com/post/374263788/any-sufficiently-advanced-technology-is\"&gt;Arthur C. Clark&amp;#8217;s third law of prediction&lt;/a&gt;.\xC2\xA0&lt;a href=\"#fnref:1\" rev=\"footnote\"&gt;\xE2\x86\xA9&lt;/a&gt;&lt;/p&gt;\n\
63
- &lt;/li&gt;\n\n\
64
- &lt;/ol&gt;\n\
65
- &lt;/div&gt;</regular-body><tag>Apple</tag></post><post id=\"378434375\" url=\"http://mwunsch.tumblr.com/post/378434375\" url-with-slug=\"http://mwunsch.tumblr.com/post/378434375/these-technologies-can-make-life-easier-can-let\" type=\"quote\" date-gmt=\"2010-02-08 18:45:00 GMT\" date=\"Mon, 08 Feb 2010 13:45:00\" unix-timestamp=\"1265654700\" format=\"markdown\" reblog-key=\"I5lQuUru\" slug=\"these-technologies-can-make-life-easier-can-let\"><quote-text>These technologies can make life easier, can let us touch people we might not otherwise. &amp;#8230; These things can profoundly influence life. I&amp;#8217;m not downplaying that. But it&amp;#8217;s a disservice to constantly put things in this radical new light - that it&amp;#8217;s going to change everything. Things don&amp;#8217;t have to change the world to be important.</quote-text><quote-source>Steve Jobs, &lt;a href=\"http://www.wired.com/wired/archive/4.02/jobs_pr.html\"&gt;from a 1996&amp;#160;&lt;em&gt;Wired&lt;/em&gt; interview&lt;/a&gt;</quote-source></post><post id=\"378242257\" url=\"http://mwunsch.tumblr.com/post/378242257\" url-with-slug=\"http://mwunsch.tumblr.com/post/378242257/cigo-man-band-a-one-man-band-performing-in\" type=\"video\" date-gmt=\"2010-02-08 16:00:00 GMT\" date=\"Mon, 08 Feb 2010 11:00:00\" unix-timestamp=\"1265644800\" format=\"markdown\" reblog-key=\"KEeTYx6M\" slug=\"cigo-man-band-a-one-man-band-performing-in\"><video-caption>&lt;p&gt;Cigo Man Band, a &lt;a href=\"http://en.wikipedia.org/wiki/One-man_band\"&gt;one-man band&lt;/a&gt;, performing in Croatia&lt;/p&gt;</video-caption><video-source>http://www.youtube.com/watch?v=uXMuWi0dUBc</video-source><video-player>&lt;object width=\"400\" height=\"336\"&gt;&lt;param name=\"movie\" value=\"http://www.youtube.com/v/uXMuWi0dUBc&amp;amp;rel=0&amp;amp;egm=0&amp;amp;showinfo=0&amp;amp;fs=1\"&gt;&lt;/param&gt;&lt;param name=\"wmode\" value=\"transparent\"&gt;&lt;/param&gt;&lt;param name=\"allowFullScreen\" value=\"true\"&gt;&lt;/param&gt;&lt;embed src=\"http://www.youtube.com/v/uXMuWi0dUBc&amp;amp;rel=0&amp;amp;egm=0&amp;amp;showinfo=0&amp;amp;fs=1\" type=\"application/x-shockwave-flash\" width=\"400\" height=\"336\" allowFullScreen=\"true\" wmode=\"transparent\"&gt;&lt;/embed&gt;&lt;/object&gt;</video-player><tag>one-man-band</tag></post><post id=\"376262956\" url=\"http://mwunsch.tumblr.com/post/376262956\" url-with-slug=\"http://mwunsch.tumblr.com/post/376262956/im-a-tool-builder-thats-how-i-think-of-myself\" type=\"quote\" date-gmt=\"2010-02-07 16:41:46 GMT\" date=\"Sun, 07 Feb 2010 11:41:46\" unix-timestamp=\"1265560906\" format=\"markdown\" reblog-key=\"4mjYseNB\" slug=\"im-a-tool-builder-thats-how-i-think-of-myself\"><quote-text>I&amp;#8217;m a tool builder. That&amp;#8217;s how I think of myself. I want to build really good tools that I know in my gut and my heart will be valuable. And then whatever happens is&amp;#8230; you can&amp;#8217;t really predict exactly what will happen, but you can feel the direction that we&amp;#8217;re going. And that&amp;#8217;s about as close as you can get. Then you just stand back and get out of the way, and these things take on a life of their own.</quote-text><quote-source>Steve Jobs, &lt;a href=\"http://www.rollingstone.com/news/story/31896381/from_the_archives_a_revealing_interview_with_steve_jobs/print\"&gt;from a 1994 Rolling Stone interview&lt;/a&gt;</quote-source></post><post id=\"376218408\" url=\"http://mwunsch.tumblr.com/post/376218408\" url-with-slug=\"http://mwunsch.tumblr.com/post/376218408/lonelysandwich-here-is-where-i-make-a-big\" type=\"regular\" date-gmt=\"2010-02-07 16:01:50 GMT\" date=\"Sun, 07 Feb 2010 11:01:50\" unix-timestamp=\"1265558510\" format=\"markdown\" reblog-key=\"wpqXTJQ9\" slug=\"lonelysandwich-here-is-where-i-make-a-big\"><regular-body>&lt;p&gt;&lt;a href=\"http://lonelysandwich.com/post/374473607/adaptation\" class=\"tumblr_blog\"&gt;lonelysandwich&lt;/a&gt;:&lt;/p&gt;\n\n\
66
- &lt;blockquote&gt;\n &lt;p&gt;Here is where I make a Big Point. What we &lt;i&gt;want&lt;/i&gt; from our technology, in its most elemental form, is to make our thoughts happen. Sure, it\xE2\x80\x99s still very much sci-fi in 2010, but what every calculating machine and telephone and computer and phonograph and light bulb and hammer and every tool ever invented is about at its core is our desire, our evolutionary imperative to control our environment at our will. And we\xE2\x80\x99re getting closer and closer to that happening. But there are still many layers between our intentions and our environment. As time progresses, we will strip away those layers one by one. And it\xE2\x80\x99s &lt;i&gt;always&lt;/i&gt; disruptive to do so. The reason that any manufacturer of technology exists is to ease each step of the process of tearing away the layers of abstraction between our thoughts and our realities.&lt;/p&gt;\n\
67
- &lt;/blockquote&gt;\n\n\
68
- &lt;p&gt;Mr. Lisagor crawls into my brain, and steals my thoughts on the iPad.&lt;/p&gt;</regular-body></post><post id=\"374263788\" url=\"http://mwunsch.tumblr.com/post/374263788\" url-with-slug=\"http://mwunsch.tumblr.com/post/374263788/any-sufficiently-advanced-technology-is\" type=\"quote\" date-gmt=\"2010-02-06 15:59:57 GMT\" date=\"Sat, 06 Feb 2010 10:59:57\" unix-timestamp=\"1265471997\" format=\"markdown\" reblog-key=\"P0rwoDlH\" slug=\"any-sufficiently-advanced-technology-is\"><quote-text>Any sufficiently advanced technology is indistinguishable from magic.</quote-text><quote-source>&lt;a href=\"http://en.wikipedia.org/wiki/Clarke's_three_laws\"&gt;Arthur C. Clark&amp;#8217;s third law of prediction&lt;/a&gt;</quote-source></post></posts></tumblr>\n"
69
- body_exist: true
70
- code: "200"
71
- header:
72
- last-modified:
73
- - Fri, 05 Mar 2010 17:12:57 GMT
74
- p3p:
75
- - CP="ALL ADM DEV PSAi COM OUR OTRo STP IND ONL"
76
- content-type:
77
- - text/xml; charset=UTF-8
78
- connection:
79
- - close
80
- x-tumblr-usec:
81
- - D=23522
82
- x-robots-tag:
83
- - noindex
84
- server:
85
- - Apache/2.2.3 (CentOS)
86
- date:
87
- - Sat, 06 Mar 2010 12:06:17 GMT
88
- x-cache-auto:
89
- - hit
90
- content-length:
91
- - "29274"
92
- x-tumblr-perf:
93
- - "\"ch:4/tumblelog_id_for_host,tumblelogs,country_code_for_ip,auto cm:3/rate-limiter,rate-limiter,rate-limiter ce:0/ c:0/0 d:0/0 e:0/0 auto-hit\""
94
- vary:
95
- - Accept-Encoding
96
- cache-control:
97
- - max-age=900
98
- http_version: "1.1"
99
- message: OK
100
- read: true
101
- socket:
@@ -1,48 +0,0 @@
1
- ---
2
- - !ruby/struct:VCR::RecordedResponse
3
- method: :get
4
- uri: http://mwunsch.tumblr.com:80/api/read/?type=video&num=5
5
- response: !ruby/object:Net::HTTPOK
6
- body: |
7
- <?xml version="1.0" encoding="UTF-8"?>
8
- <tumblr version="1.0"><tumblelog name="mwunsch" timezone="US/Eastern" title="M. Wunsch">Collected visual and aural interests of &lt;a href="http://markwunsch.com" rel="me"&gt;Mark Wunsch&lt;/a&gt;.</tumblelog><posts type="video" start="0" total="33"><post id="385851242" url="http://mwunsch.tumblr.com/post/385851242" url-with-slug="http://mwunsch.tumblr.com/post/385851242/eric-royer-a-one-man-band-performs-shortnin" type="video" date-gmt="2010-02-12 19:00:00 GMT" date="Fri, 12 Feb 2010 14:00:00" unix-timestamp="1266001200" format="markdown" reblog-key="gymWGGbw" slug="eric-royer-a-one-man-band-performs-shortnin"><video-caption>&lt;p&gt;&lt;a href="http://guitarmachine.com/"&gt;Eric Royer&lt;/a&gt;, a one-man band performs &lt;a href="http://en.wikipedia.org/wiki/Shortnin%27_Bread"&gt;&lt;em&gt;Shortnin&amp;#8217; Bread&lt;/em&gt;&lt;/a&gt;&lt;/p&gt;</video-caption><video-source>http://www.youtube.com/watch?v=i7CgL7c4LeE</video-source><video-player>&lt;object width="400" height="336"&gt;&lt;param name="movie" value="http://www.youtube.com/v/i7CgL7c4LeE&amp;amp;rel=0&amp;amp;egm=0&amp;amp;showinfo=0&amp;amp;fs=1"&gt;&lt;/param&gt;&lt;param name="wmode" value="transparent"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/i7CgL7c4LeE&amp;amp;rel=0&amp;amp;egm=0&amp;amp;showinfo=0&amp;amp;fs=1" type="application/x-shockwave-flash" width="400" height="336" allowFullScreen="true" wmode="transparent"&gt;&lt;/embed&gt;&lt;/object&gt;</video-player><tag>one-man-band</tag></post><post id="380262584" url="http://mwunsch.tumblr.com/post/380262584" url-with-slug="http://mwunsch.tumblr.com/post/380262584/tiger-rag-performed-by-professor-gizmo-one-man" type="video" date-gmt="2010-02-09 18:00:00 GMT" date="Tue, 09 Feb 2010 13:00:00" unix-timestamp="1265738400" format="markdown" reblog-key="EJbEaOC4" slug="tiger-rag-performed-by-professor-gizmo-one-man"><video-caption>&lt;p&gt;&lt;a href="http://en.wikipedia.org/wiki/Tiger_Rag"&gt;&lt;em&gt;Tiger Rag&lt;/em&gt;&lt;/a&gt;, performed by Professor Gizmo, one-man band.&lt;/p&gt;</video-caption><video-source>http://www.youtube.com/watch?v=azb9kN1fgwc</video-source><video-player>&lt;object width="400" height="336"&gt;&lt;param name="movie" value="http://www.youtube.com/v/azb9kN1fgwc&amp;amp;rel=0&amp;amp;egm=0&amp;amp;showinfo=0&amp;amp;fs=1"&gt;&lt;/param&gt;&lt;param name="wmode" value="transparent"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/azb9kN1fgwc&amp;amp;rel=0&amp;amp;egm=0&amp;amp;showinfo=0&amp;amp;fs=1" type="application/x-shockwave-flash" width="400" height="336" allowFullScreen="true" wmode="transparent"&gt;&lt;/embed&gt;&lt;/object&gt;</video-player><tag>one-man-band</tag></post><post id="378242257" url="http://mwunsch.tumblr.com/post/378242257" url-with-slug="http://mwunsch.tumblr.com/post/378242257/cigo-man-band-a-one-man-band-performing-in" type="video" date-gmt="2010-02-08 16:00:00 GMT" date="Mon, 08 Feb 2010 11:00:00" unix-timestamp="1265644800" format="markdown" reblog-key="KEeTYx6M" slug="cigo-man-band-a-one-man-band-performing-in"><video-caption>&lt;p&gt;Cigo Man Band, a &lt;a href="http://en.wikipedia.org/wiki/One-man_band"&gt;one-man band&lt;/a&gt;, performing in Croatia&lt;/p&gt;</video-caption><video-source>http://www.youtube.com/watch?v=uXMuWi0dUBc</video-source><video-player>&lt;object width="400" height="336"&gt;&lt;param name="movie" value="http://www.youtube.com/v/uXMuWi0dUBc&amp;amp;rel=0&amp;amp;egm=0&amp;amp;showinfo=0&amp;amp;fs=1"&gt;&lt;/param&gt;&lt;param name="wmode" value="transparent"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/uXMuWi0dUBc&amp;amp;rel=0&amp;amp;egm=0&amp;amp;showinfo=0&amp;amp;fs=1" type="application/x-shockwave-flash" width="400" height="336" allowFullScreen="true" wmode="transparent"&gt;&lt;/embed&gt;&lt;/object&gt;</video-player><tag>one-man-band</tag></post><post id="372768179" url="http://mwunsch.tumblr.com/post/372768179" url-with-slug="http://mwunsch.tumblr.com/post/372768179/flight-of-the-bumblebee-by-nikolai" type="video" date-gmt="2010-02-05 20:15:00 GMT" date="Fri, 05 Feb 2010 15:15:00" unix-timestamp="1265400900" format="markdown" reblog-key="C8oKiE8V" slug="flight-of-the-bumblebee-by-nikolai"><video-caption>&lt;p&gt;&lt;a href="http://en.wikipedia.org/wiki/Flight_of_the_Bumblebee"&gt;Flight of the Bumblebee&lt;/a&gt; by Nikolai Rimsky-Korsakov. On an accordion. &lt;a href="http://mwunsch.tumblr.com/tagged/shredding-on-an-accordion"&gt;WTF&lt;/a&gt;.&lt;/p&gt;</video-caption><video-source>http://www.youtube.com/watch?v=j2saw900LdU</video-source><video-player>&lt;object width="400" height="336"&gt;&lt;param name="movie" value="http://www.youtube.com/v/j2saw900LdU&amp;amp;rel=0&amp;amp;egm=0&amp;amp;showinfo=0&amp;amp;fs=1"&gt;&lt;/param&gt;&lt;param name="wmode" value="transparent"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/j2saw900LdU&amp;amp;rel=0&amp;amp;egm=0&amp;amp;showinfo=0&amp;amp;fs=1" type="application/x-shockwave-flash" width="400" height="336" allowFullScreen="true" wmode="transparent"&gt;&lt;/embed&gt;&lt;/object&gt;</video-player><tag>shredding-on-an-accordion</tag></post><post id="354629654" url="http://mwunsch.tumblr.com/post/354629654" url-with-slug="http://mwunsch.tumblr.com/post/354629654/when-i-first-switched-to-apple-computers-in-2001" type="video" date-gmt="2010-01-26 17:57:36 GMT" date="Tue, 26 Jan 2010 12:57:36" unix-timestamp="1264528656" format="markdown" reblog-key="xp1zSaiE" slug="when-i-first-switched-to-apple-computers-in-2001"><video-caption>&lt;p&gt;When I first switched to Apple computers in 2001, I desperately wanted a G4 Cube. Unfortunately, my enthusiasm for the Mac came right at the end of the Cube&amp;#8217;s life cycle, and I ended up choosing a Power Mac G4 (which is still happily running).&lt;/p&gt;
9
-
10
- &lt;p&gt;What&amp;#8217;s fascinating to me about this video is that this computer is so beautiful &amp;#8212; the height of industrial design (belongs in &lt;a href="http://www.moma.org/collection/browse_results.php?criteria=O%3AAD%3AE%3A22559&amp;amp;page_number=1&amp;amp;template_id=6&amp;amp;sort_order=1"&gt;a museum&lt;/a&gt;); yet this product failed to take off, presumably because it was only filler &amp;#8212; a middle ground between the big desktop computer and the laptop. It didn&amp;#8217;t solve any problems.&lt;/p&gt;
11
-
12
- &lt;p&gt;I have the same apprehensions about a Rumored Apple Tablet Device. Will it be a beautiful thing that only fills middle ground between a laptop computer and a mobile device? Apple has been down that road before.&lt;/p&gt;
13
-
14
- &lt;p&gt;My favorite part of this video is shortly after &lt;a href="http://www.youtube.com/watch?v=D0NbGbZBPL0#t=4m40s"&gt;4:40&lt;/a&gt;, where Steve reveals how to extract the innards of the Cube.&lt;/p&gt;</video-caption><video-source>http://www.youtube.com/watch?v=D0NbGbZBPL0</video-source><video-player>&lt;object width="400" height="336"&gt;&lt;param name="movie" value="http://www.youtube.com/v/D0NbGbZBPL0&amp;amp;rel=0&amp;amp;egm=0&amp;amp;showinfo=0&amp;amp;fs=1"&gt;&lt;/param&gt;&lt;param name="wmode" value="transparent"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/D0NbGbZBPL0&amp;amp;rel=0&amp;amp;egm=0&amp;amp;showinfo=0&amp;amp;fs=1" type="application/x-shockwave-flash" width="400" height="336" allowFullScreen="true" wmode="transparent"&gt;&lt;/embed&gt;&lt;/object&gt;</video-player><tag>Apple</tag></post></posts></tumblr>
15
-
16
- body_exist: true
17
- code: "200"
18
- header:
19
- last-modified:
20
- - Fri, 05 Mar 2010 17:12:57 GMT
21
- p3p:
22
- - CP="ALL ADM DEV PSAi COM OUR OTRo STP IND ONL"
23
- content-type:
24
- - text/xml; charset=UTF-8
25
- connection:
26
- - close
27
- x-tumblr-usec:
28
- - D=59314
29
- x-robots-tag:
30
- - noindex
31
- server:
32
- - Apache/2.2.3 (CentOS)
33
- date:
34
- - Sat, 06 Mar 2010 12:06:18 GMT
35
- content-length:
36
- - "7776"
37
- x-cache-auto:
38
- - miss
39
- x-tumblr-perf:
40
- - "\"ch:6/rate-limiter,tumblelog_id_for_host,tumblelogs,country_code_for_ip,rate-limiter,rate-limiter cm:1/auto ce:0/ c:0/0 d:0/0 e:0/0\""
41
- vary:
42
- - Accept-Encoding
43
- cache-control:
44
- - max-age=900
45
- http_version: "1.1"
46
- message: OK
47
- read: true
48
- socket:
@@ -1,36 +0,0 @@
1
- ---
2
- - !ruby/struct:VCR::RecordedResponse
3
- method: :get
4
- uri: http://tumblrgemtest.tumblr.com:80/api/pages
5
- response: !ruby/object:Net::HTTPOK
6
- body: |
7
- <?xml version="1.0" encoding="UTF-8"?>
8
- <tumblr version="1.0"><pages><page url="http://tumblrgemtest.tumblr.com/test1" render-in-theme="true" title="Page Test 1" link-title="Page Test 1">Test #1</page></pages></tumblr>
9
-
10
- body_exist: true
11
- code: "200"
12
- header:
13
- p3p:
14
- - CP="ALL ADM DEV PSAi COM OUR OTRo STP IND ONL"
15
- content-type:
16
- - text/xml
17
- connection:
18
- - close
19
- x-tumblr-usec:
20
- - D=18293
21
- server:
22
- - Apache/2.2.3 (Red Hat)
23
- date:
24
- - Fri, 26 Mar 2010 17:21:33 GMT
25
- content-length:
26
- - "218"
27
- x-cache-auto:
28
- - miss
29
- x-tumblr-perf:
30
- - "\"ch:0/ cm:0/ ce:0/ c:0/0 d:0/0 e:0/0\""
31
- vary:
32
- - Accept-Encoding
33
- http_version: "1.1"
34
- message: OK
35
- read: true
36
- socket:
@@ -1,42 +0,0 @@
1
- ---
2
- - !ruby/struct:VCR::RecordedResponse
3
- method: :get
4
- uri: http://tumblrgemtest.tumblr.com:80/api/read/
5
- response: !ruby/object:Net::HTTPOK
6
- body: |
7
- <?xml version="1.0" encoding="UTF-8"?>
8
- <tumblr version="1.0"><tumblelog name="tumblrgemtest" timezone="US/Eastern" title="Testing Tumblr Gem"></tumblelog><posts start="0" total="1"><post id="445597771" url="http://tumblrgemtest.tumblr.com/post/445597771" url-with-slug="http://tumblrgemtest.tumblr.com/post/445597771/simple-post-to-check-liking-unliking" type="regular" date-gmt="2010-03-13 16:16:00 GMT" date="Sat, 13 Mar 2010 11:16:00" unix-timestamp="1268496960" format="markdown" reblog-key="DLVWOpfh" slug="simple-post-to-check-liking-unliking"><regular-body>&lt;p&gt;Simple post to check liking/unliking.&lt;/p&gt;</regular-body></post></posts></tumblr>
9
-
10
- body_exist: true
11
- code: "200"
12
- header:
13
- last-modified:
14
- - Sat, 13 Mar 2010 16:16:00 GMT
15
- p3p:
16
- - CP="ALL ADM DEV PSAi COM OUR OTRo STP IND ONL"
17
- content-type:
18
- - text/xml; charset=UTF-8
19
- connection:
20
- - close
21
- x-tumblr-usec:
22
- - D=270024
23
- x-robots-tag:
24
- - noindex
25
- server:
26
- - Apache/2.2.3 (CentOS)
27
- date:
28
- - Sat, 13 Mar 2010 16:29:06 GMT
29
- content-length:
30
- - "660"
31
- x-cache-auto:
32
- - miss
33
- x-tumblr-perf:
34
- - "\"ch:4/tumblelog_id_for_host,tumblelogs,country_code_for_ip,tumblelog_post_count cm:4/rate-limiter,rate-limiter,rate-limiter,auto ce:0/ c:0/0 d:0/0 e:0/0\""
35
- vary:
36
- - Accept-Encoding
37
- cache-control:
38
- - max-age=900
39
- http_version: "1.1"
40
- message: OK
41
- read: true
42
- socket: