pinboard_api 0.1.0 → 0.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (49) hide show
  1. data/.gitignore +1 -0
  2. data/.travis.yml +8 -0
  3. data/Gemfile +5 -1
  4. data/README.md +81 -16
  5. data/Rakefile +10 -0
  6. data/lib/core_ext/array.rb +11 -0
  7. data/lib/core_ext/hash.rb +8 -0
  8. data/lib/pinboard_api.rb +24 -18
  9. data/lib/pinboard_api/post.rb +103 -21
  10. data/lib/pinboard_api/tag.rb +11 -9
  11. data/lib/pinboard_api/user.rb +1 -1
  12. data/lib/pinboard_api/version.rb +1 -1
  13. data/spec/core_ext/array_spec.rb +11 -0
  14. data/spec/core_ext/hash_spec.rb +18 -0
  15. data/spec/fixtures/vcr_cassettes/posts/all/custom_count.json +1 -0
  16. data/spec/fixtures/vcr_cassettes/posts/all/custom_tag.json +1 -0
  17. data/spec/fixtures/vcr_cassettes/posts/all/custom_times.json +1 -0
  18. data/spec/fixtures/vcr_cassettes/posts/all/default_values.json +1 -0
  19. data/spec/fixtures/vcr_cassettes/posts/all/not_found.json +1 -0
  20. data/spec/fixtures/vcr_cassettes/posts/dates/custom_tag.json +1 -0
  21. data/spec/fixtures/vcr_cassettes/posts/dates/default_values.json +1 -0
  22. data/spec/fixtures/vcr_cassettes/posts/delete/unsuccessful_class.json +1 -0
  23. data/spec/fixtures/vcr_cassettes/posts/destroy/successful_class.json +1 -0
  24. data/spec/fixtures/vcr_cassettes/posts/destroy/successful_instance.json +1 -0
  25. data/spec/fixtures/vcr_cassettes/posts/destroy/unsuccessful_instance.json +1 -0
  26. data/spec/fixtures/vcr_cassettes/posts/find/found.json +1 -1
  27. data/spec/fixtures/vcr_cassettes/posts/find/not_found.json +1 -1
  28. data/spec/fixtures/vcr_cassettes/posts/recent/custom_count.json +1 -0
  29. data/spec/fixtures/vcr_cassettes/posts/recent/custom_tag.json +1 -0
  30. data/spec/fixtures/vcr_cassettes/posts/recent/default_values.json +1 -0
  31. data/spec/fixtures/vcr_cassettes/posts/suggest.json +1 -0
  32. data/spec/fixtures/vcr_cassettes/posts/update.json +1 -1
  33. data/spec/fixtures/vcr_cassettes/tags/all.json +1 -1
  34. data/spec/fixtures/vcr_cassettes/tags/destroy/successful_class.json +1 -0
  35. data/spec/fixtures/vcr_cassettes/tags/destroy/successful_instance.json +1 -0
  36. data/spec/fixtures/vcr_cassettes/tags/destroy/unsuccessful_class.json +1 -0
  37. data/spec/fixtures/vcr_cassettes/tags/destroy/unsuccessful_instance.json +1 -0
  38. data/spec/fixtures/vcr_cassettes/tags/find/found.json +1 -1
  39. data/spec/fixtures/vcr_cassettes/tags/find/not_found.json +1 -1
  40. data/spec/fixtures/vcr_cassettes/tags/rename/successful.json +1 -1
  41. data/spec/fixtures/vcr_cassettes/tags/rename/unsuccessful.json +1 -1
  42. data/spec/fixtures/vcr_cassettes/user/secret.json +1 -1
  43. data/spec/pinboard_api_spec.rb +0 -4
  44. data/spec/post_spec.rb +358 -29
  45. data/spec/spec_helper.rb +8 -4
  46. data/spec/tag_spec.rb +27 -11
  47. metadata +48 -7
  48. data/spec/fixtures/vcr_cassettes/tags/delete/successful.json +0 -1
  49. data/spec/fixtures/vcr_cassettes/tags/delete/unsuccessful.json +0 -1
data/spec/spec_helper.rb CHANGED
@@ -1,7 +1,11 @@
1
- require "simplecov"
2
- SimpleCov.add_filter "spec"
3
- SimpleCov.command_name "MiniTest"
4
- SimpleCov.start
1
+ begin
2
+ require "simplecov"
3
+ SimpleCov.add_filter "spec"
4
+ SimpleCov.command_name "MiniTest"
5
+ SimpleCov.start
6
+ rescue LoadError
7
+ warn "unable to load 'simplecov'"
8
+ end
5
9
 
6
10
  require "minitest/autorun"
7
11
  require "minitest/pride"
data/spec/tag_spec.rb CHANGED
@@ -1,10 +1,6 @@
1
1
  require "spec_helper"
2
2
 
3
3
  describe PinboardApi::Tag do
4
- it "is defined" do
5
- defined? PinboardApi::Tag
6
- end
7
-
8
4
  let(:tag) { PinboardApi::Tag.new({"name" => "tag", "count" => 1}) }
9
5
 
10
6
  it { tag.must_respond_to :name }
@@ -77,23 +73,43 @@ describe PinboardApi::Tag do
77
73
  end
78
74
 
79
75
 
80
- describe "#delete" do
76
+ describe "#destroy" do
81
77
  describe "when successful" do
82
- it "returns self when the remote tag has been deleted" do
83
- VCR.use_cassette("tags/delete/successful") do
78
+ it "returns self when the remote tag has been destroyed" do
79
+ VCR.use_cassette("tags/destroy/successful_instance") do
84
80
  tag = PinboardApi::Tag.find("junk")
85
- tag.delete.must_equal tag
81
+ tag.destroy.must_equal tag
86
82
  end
87
83
  end
88
84
 
89
85
  end
90
86
 
91
- describe "when delete fails" do
87
+ describe "when not successful" do
92
88
  it "raises an exception" do
93
89
  Faraday::Response.any_instance.stubs(:body).returns("")
94
- VCR.use_cassette("tags/delete/unsuccessful") do
90
+ VCR.use_cassette("tags/destroy/unsuccessful_instance") do
95
91
  tag = PinboardApi::Tag.new("name" => "xxINVALIDxxBOGUSxx", "count" => 1)
96
- -> { tag.delete }.must_raise(RuntimeError)
92
+ -> { tag.destroy }.must_raise(RuntimeError)
93
+ end
94
+ end
95
+ end
96
+ end
97
+
98
+ describe "self.destroy" do
99
+ describe "when successful" do
100
+ it "returns self when the remote tag has been destroyed" do
101
+ VCR.use_cassette("tags/destroy/successful_class") do
102
+ tag = PinboardApi::Tag.destroy("junk")
103
+ tag.must_be_kind_of PinboardApi::Tag
104
+ end
105
+ end
106
+ end
107
+
108
+ describe "when not successful" do
109
+ it "raises an exception" do
110
+ Faraday::Response.any_instance.stubs(:body).returns("")
111
+ VCR.use_cassette("tags/destroy/unsuccessful_class") do
112
+ -> { PinboardApi::Tag.destroy("xxINVALIDxxBOGUSxx") }.must_raise(RuntimeError)
97
113
  end
98
114
  end
99
115
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pinboard_api
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.7.0
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-07-07 00:00:00.000000000 Z
12
+ date: 2012-07-14 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: faraday
@@ -196,23 +196,45 @@ extra_rdoc_files: []
196
196
  files:
197
197
  - .gitignore
198
198
  - .ruby-version
199
+ - .travis.yml
199
200
  - Gemfile
200
201
  - Guardfile
201
202
  - LICENSE
202
203
  - README.md
203
204
  - Rakefile
205
+ - lib/core_ext/array.rb
206
+ - lib/core_ext/hash.rb
204
207
  - lib/pinboard_api.rb
205
208
  - lib/pinboard_api/post.rb
206
209
  - lib/pinboard_api/tag.rb
207
210
  - lib/pinboard_api/user.rb
208
211
  - lib/pinboard_api/version.rb
209
212
  - pinboard_api.gemspec
213
+ - spec/core_ext/array_spec.rb
214
+ - spec/core_ext/hash_spec.rb
215
+ - spec/fixtures/vcr_cassettes/posts/all/custom_count.json
216
+ - spec/fixtures/vcr_cassettes/posts/all/custom_tag.json
217
+ - spec/fixtures/vcr_cassettes/posts/all/custom_times.json
218
+ - spec/fixtures/vcr_cassettes/posts/all/default_values.json
219
+ - spec/fixtures/vcr_cassettes/posts/all/not_found.json
220
+ - spec/fixtures/vcr_cassettes/posts/dates/custom_tag.json
221
+ - spec/fixtures/vcr_cassettes/posts/dates/default_values.json
222
+ - spec/fixtures/vcr_cassettes/posts/delete/unsuccessful_class.json
223
+ - spec/fixtures/vcr_cassettes/posts/destroy/successful_class.json
224
+ - spec/fixtures/vcr_cassettes/posts/destroy/successful_instance.json
225
+ - spec/fixtures/vcr_cassettes/posts/destroy/unsuccessful_instance.json
210
226
  - spec/fixtures/vcr_cassettes/posts/find/found.json
211
227
  - spec/fixtures/vcr_cassettes/posts/find/not_found.json
228
+ - spec/fixtures/vcr_cassettes/posts/recent/custom_count.json
229
+ - spec/fixtures/vcr_cassettes/posts/recent/custom_tag.json
230
+ - spec/fixtures/vcr_cassettes/posts/recent/default_values.json
231
+ - spec/fixtures/vcr_cassettes/posts/suggest.json
212
232
  - spec/fixtures/vcr_cassettes/posts/update.json
213
233
  - spec/fixtures/vcr_cassettes/tags/all.json
214
- - spec/fixtures/vcr_cassettes/tags/delete/successful.json
215
- - spec/fixtures/vcr_cassettes/tags/delete/unsuccessful.json
234
+ - spec/fixtures/vcr_cassettes/tags/destroy/successful_class.json
235
+ - spec/fixtures/vcr_cassettes/tags/destroy/successful_instance.json
236
+ - spec/fixtures/vcr_cassettes/tags/destroy/unsuccessful_class.json
237
+ - spec/fixtures/vcr_cassettes/tags/destroy/unsuccessful_instance.json
216
238
  - spec/fixtures/vcr_cassettes/tags/find/found.json
217
239
  - spec/fixtures/vcr_cassettes/tags/find/not_found.json
218
240
  - spec/fixtures/vcr_cassettes/tags/rename/successful.json
@@ -245,7 +267,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
245
267
  version: '0'
246
268
  segments:
247
269
  - 0
248
- hash: -3411937390163746200
270
+ hash: -2108865107413126180
249
271
  requirements: []
250
272
  rubyforge_project:
251
273
  rubygems_version: 1.8.24
@@ -253,12 +275,31 @@ signing_key:
253
275
  specification_version: 3
254
276
  summary: A Ruby client for the Pinboard.in API
255
277
  test_files:
278
+ - spec/core_ext/array_spec.rb
279
+ - spec/core_ext/hash_spec.rb
280
+ - spec/fixtures/vcr_cassettes/posts/all/custom_count.json
281
+ - spec/fixtures/vcr_cassettes/posts/all/custom_tag.json
282
+ - spec/fixtures/vcr_cassettes/posts/all/custom_times.json
283
+ - spec/fixtures/vcr_cassettes/posts/all/default_values.json
284
+ - spec/fixtures/vcr_cassettes/posts/all/not_found.json
285
+ - spec/fixtures/vcr_cassettes/posts/dates/custom_tag.json
286
+ - spec/fixtures/vcr_cassettes/posts/dates/default_values.json
287
+ - spec/fixtures/vcr_cassettes/posts/delete/unsuccessful_class.json
288
+ - spec/fixtures/vcr_cassettes/posts/destroy/successful_class.json
289
+ - spec/fixtures/vcr_cassettes/posts/destroy/successful_instance.json
290
+ - spec/fixtures/vcr_cassettes/posts/destroy/unsuccessful_instance.json
256
291
  - spec/fixtures/vcr_cassettes/posts/find/found.json
257
292
  - spec/fixtures/vcr_cassettes/posts/find/not_found.json
293
+ - spec/fixtures/vcr_cassettes/posts/recent/custom_count.json
294
+ - spec/fixtures/vcr_cassettes/posts/recent/custom_tag.json
295
+ - spec/fixtures/vcr_cassettes/posts/recent/default_values.json
296
+ - spec/fixtures/vcr_cassettes/posts/suggest.json
258
297
  - spec/fixtures/vcr_cassettes/posts/update.json
259
298
  - spec/fixtures/vcr_cassettes/tags/all.json
260
- - spec/fixtures/vcr_cassettes/tags/delete/successful.json
261
- - spec/fixtures/vcr_cassettes/tags/delete/unsuccessful.json
299
+ - spec/fixtures/vcr_cassettes/tags/destroy/successful_class.json
300
+ - spec/fixtures/vcr_cassettes/tags/destroy/successful_instance.json
301
+ - spec/fixtures/vcr_cassettes/tags/destroy/unsuccessful_class.json
302
+ - spec/fixtures/vcr_cassettes/tags/destroy/unsuccessful_instance.json
262
303
  - spec/fixtures/vcr_cassettes/tags/find/found.json
263
304
  - spec/fixtures/vcr_cassettes/tags/find/not_found.json
264
305
  - spec/fixtures/vcr_cassettes/tags/rename/successful.json
@@ -1 +0,0 @@
1
- {"http_interactions":[{"request":{"method":"get","uri":"https://api.pinboard.in/v1/tags/get","body":{"encoding":"US-ASCII","string":""},"headers":{"Authorization":["Basic [FILTERED]"]}},"response":{"status":{"code":200,"message":null},"headers":{"date":["Sat, 07 Jul 2012 05:33:25 GMT"],"server":["Apache/2.2.20 (Ubuntu)"],"set-cookie":["PHPSESSID=liu0h9egtvk14riad9l9j5rod7; path=/"],"expires":["Thu, 19 Nov 1981 08:52:00 GMT"],"cache-control":["no-store, no-cache, must-revalidate, post-check=0, pre-check=0"],"pragma":["no-cache"],"vary":["Accept-Encoding"],"content-length":["5341"],"connection":["close"],"content-type":["text/xml; charset=utf-8"]},"body":{"encoding":"ASCII-8BIT","string":"<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n<tags>\n\t<tag count=\"1\" tag=\"ical\" />\n\t<tag count=\"1\" tag=\"leadership\" />\n\t<tag count=\"1\" tag=\"date\" />\n\t<tag count=\"1\" tag=\"oreilly\" />\n\t<tag count=\"1\" tag=\"form\" />\n\t<tag count=\"1\" tag=\"raid\" />\n\t<tag count=\"1\" tag=\"scripts\" />\n\t<tag count=\"1\" tag=\"inexpensive\" />\n\t<tag count=\"1\" tag=\"rootkit\" />\n\t<tag count=\"1\" tag=\"printing\" />\n\t<tag count=\"1\" tag=\"Ubuntu\" />\n\t<tag count=\"1\" tag=\"hash\" />\n\t<tag count=\"1\" tag=\"samba\" />\n\t<tag count=\"1\" tag=\"playlists\" />\n\t<tag count=\"1\" tag=\"cover\" />\n\t<tag count=\"1\" tag=\"screenprinting\" />\n\t<tag count=\"1\" tag=\"exercise\" />\n\t<tag count=\"1\" tag=\"idisk\" />\n\t<tag count=\"1\" tag=\"nasa\" />\n\t<tag count=\"1\" tag=\"model\" />\n\t<tag count=\"1\" tag=\"remote\" />\n\t<tag count=\"1\" tag=\"walls\" />\n\t<tag count=\"1\" tag=\"translation\" />\n\t<tag count=\"1\" tag=\"urban\" />\n\t<tag count=\"1\" tag=\"redhat\" />\n\t<tag count=\"1\" tag=\"electricity\" />\n\t<tag count=\"1\" tag=\"vm\" />\n\t<tag count=\"1\" tag=\"cross_stitch\" />\n\t<tag count=\"1\" tag=\"functional\" />\n\t<tag count=\"1\" tag=\"diamond\" />\n\t<tag count=\"1\" tag=\"drum&amp;bass\" />\n\t<tag count=\"1\" tag=\"tooltip\" />\n\t<tag count=\"1\" tag=\"rulers\" />\n\t<tag count=\"1\" tag=\"quiz\" />\n\t<tag count=\"1\" tag=\"microphone\" />\n\t<tag count=\"1\" tag=\"inspiration\" />\n\t<tag count=\"1\" tag=\"charger\" />\n\t<tag count=\"1\" tag=\"rake\" />\n\t<tag count=\"1\" tag=\"notification\" />\n\t<tag count=\"1\" tag=\"fingerstyle\" />\n\t<tag count=\"1\" tag=\"telephony\" />\n\t<tag count=\"1\" tag=\"tetris\" />\n\t<tag count=\"1\" tag=\"refunds\" />\n\t<tag count=\"1\" tag=\"codinghorror\" />\n\t<tag count=\"1\" tag=\"map\" />\n\t<tag count=\"1\" tag=\"livecd\" />\n\t<tag count=\"1\" tag=\"fasterfox\" />\n\t<tag count=\"1\" tag=\"crossstitch\" />\n\t<tag count=\"1\" tag=\"bayarea\" />\n\t<tag count=\"1\" tag=\"top10\" />\n\t<tag count=\"1\" tag=\"people\" />\n\t<tag count=\"1\" tag=\"top\" />\n\t<tag count=\"1\" tag=\"SMB\" />\n\t<tag count=\"1\" tag=\"ADHD\" />\n\t<tag count=\"1\" tag=\"Textile\" />\n\t<tag count=\"1\" tag=\"local\" />\n\t<tag count=\"1\" tag=\"brazil\" />\n\t<tag count=\"1\" tag=\"sink\" />\n\t<tag count=\"1\" tag=\"crichton\" />\n\t<tag count=\"1\" tag=\"bibliography\" />\n\t<tag count=\"1\" tag=\"error\" />\n\t<tag count=\"1\" tag=\"influence\" />\n\t<tag count=\"1\" tag=\"icecast\" />\n\t<tag count=\"1\" tag=\"running\" />\n\t<tag count=\"1\" tag=\"ntfs\" />\n\t<tag count=\"1\" tag=\"eclipse\" />\n\t<tag count=\"1\" tag=\"xen\" />\n\t<tag count=\"1\" tag=\"screen\" />\n\t<tag count=\"1\" tag=\"hiphop\" />\n\t<tag count=\"1\" tag=\"reader\" />\n\t<tag count=\"1\" tag=\"tsa\" />\n\t<tag count=\"1\" tag=\"pipe\" />\n\t<tag count=\"1\" tag=\"chandler\" />\n\t<tag count=\"1\" tag=\"graphicsmagick\" />\n\t<tag count=\"1\" tag=\"htpasswd\" />\n\t<tag count=\"1\" tag=\"helper\" />\n\t<tag count=\"1\" tag=\"embroidery\" />\n\t<tag count=\"1\" tag=\"atom\" />\n\t<tag count=\"1\" tag=\"webdav\" />\n\t<tag count=\"1\" tag=\"pronunciation\" />\n\t<tag count=\"1\" tag=\"nunit\" />\n\t<tag count=\"1\" tag=\"ide\" />\n\t<tag count=\"1\" tag=\"widgets\" />\n\t<tag count=\"1\" tag=\"chart\" />\n\t<tag count=\"1\" tag=\"teleconferencing\" />\n\t<tag count=\"1\" tag=\"alexa\" />\n\t<tag count=\"1\" tag=\"Skype\" />\n\t<tag count=\"1\" tag=\"incense\" />\n\t<tag count=\"1\" tag=\"oracle\" />\n\t<tag count=\"1\" tag=\"pharmacy\" />\n\t<tag count=\"1\" tag=\"roast\" />\n\t<tag count=\"1\" tag=\"CD\" />\n\t<tag count=\"1\" tag=\"ids\" />\n\t<tag count=\"1\" tag=\"bibtex\" />\n\t<tag count=\"1\" tag=\"flow\" />\n\t<tag count=\"1\" tag=\"tuning\" />\n\t<tag count=\"1\" tag=\"rjs\" />\n\t<tag count=\"1\" tag=\"boot\" />\n\t<tag count=\"1\" tag=\"seo\" />\n\t<tag count=\"1\" tag=\"compilers\" />\n\t<tag count=\"1\" tag=\"thrifty\" />\n\t<tag count=\"1\" tag=\"automation\" />\n\t<tag count=\"1\" tag=\"headset\" />\n\t<tag count=\"1\" tag=\"BAPI\" />\n\t<tag count=\"1\" tag=\"knowledge\" />\n\t<tag count=\"1\" tag=\"Idioms\" />\n\t<tag count=\"1\" tag=\"logo\" />\n\t<tag count=\"1\" tag=\"DMS\" />\n\t<tag count=\"1\" tag=\"pareto\" />\n\t<tag count=\"1\" tag=\"creativecommons\" />\n\t<tag count=\"1\" tag=\"vision\" />\n\t<tag count=\"1\" tag=\"unit+tests\" />\n\t<tag count=\"1\" tag=\"bbc\" />\n\t<tag count=\"1\" tag=\"matrix\" />\n\t<tag count=\"1\" tag=\"os\" />\n\t<tag count=\"1\" tag=\"carnegie\" />\n\t<tag count=\"1\" tag=\"drugs\" />\n\t<tag count=\"1\" tag=\"coredata\" />\n\t<tag count=\"1\" tag=\"c\" />\n\t<tag count=\"1\" tag=\"pam\" />\n\t<tag count=\"1\" tag=\"amavis\" />\n\t<tag count=\"1\" tag=\"zeldman\" />\n\t<tag count=\"1\" tag=\"Debugging\" />\n\t<tag count=\"1\" tag=\"ebs\" />\n\t<tag count=\"1\" tag=\"programmer\" />\n\t<tag count=\"1\" tag=\"rubik\" />\n\t<tag count=\"1\" tag=\"motivation\" />\n\t<tag count=\"1\" tag=\"regularexpression\" />\n\t<tag count=\"1\" tag=\"cad\" />\n\t<tag count=\"1\" tag=\"ssl\" />\n\t<tag count=\"1\" tag=\"ipc\" />\n\t<tag count=\"1\" tag=\"linksys\" />\n\t<tag count=\"1\" tag=\"yojimbo\" />\n\t<tag count=\"1\" tag=\"button\" />\n\t<tag count=\"1\" tag=\"Subnet\" />\n\t<tag count=\"1\" tag=\"speedreading\" />\n\t<tag count=\"1\" tag=\"dashboard\" />\n\t<tag count=\"1\" tag=\"openssl\" />\n\t<tag count=\"1\" tag=\"mount\" />\n\t<tag count=\"1\" tag=\"saft\" />\n\t<tag count=\"1\" tag=\"rounding\" />\n\t<tag count=\"1\" tag=\"graphviz\" />\n\t<tag count=\"1\" tag=\"xss\" />\n\t<tag count=\"1\" tag=\"lame\" />\n\t<tag count=\"1\" tag=\"rmagick\" />\n\t<tag count=\"1\" tag=\"skylab\" />\n\t<tag count=\"1\" tag=\"reflection\" />\n\t<tag count=\"1\" tag=\"sheetmusic\" />\n\t<tag count=\"1\" tag=\"encoder\" />\n\t<tag count=\"1\" tag=\"patobryan\" />\n\t<tag count=\"1\" tag=\"film\" />\n\t<tag count=\"1\" tag=\"clay\" />\n\t<tag count=\"1\" tag=\"school\" />\n\t<tag count=\"1\" tag=\"dictionaries\" />\n\t<tag count=\"1\" tag=\"house\" />\n\t<tag count=\"1\" tag=\"homebrew\" />\n\t<tag count=\"1\" tag=\"lightbox\" />\n\t<tag count=\"1\" tag=\"potatoes\" />\n\t<tag count=\"1\" tag=\"cia\" />\n\t<tag count=\"1\" tag=\"graphic-design\" />\n\t<tag count=\"1\" tag=\"camera\" />\n\t<tag count=\"1\" tag=\"macbreak\" />\n\t<tag count=\"1\" tag=\"glass\" />\n\t<tag count=\"1\" tag=\"socialskills\" />\n\t<tag count=\"1\" tag=\"Proverbs\" />\n\t<tag count=\"1\" tag=\"cc\" />\n\t<tag count=\"1\" tag=\"shutdown\" />\n\t<tag count=\"1\" tag=\"menubar\" />\n\t<tag count=\"1\" tag=\"WEF\" />\n\t<tag count=\"1\" tag=\"socket\" />\n\t<tag count=\"1\" tag=\"process\" />\n\t<tag count=\"1\" tag=\"ports\" />\n\t<tag count=\"1\" tag=\"paint\" />\n\t<tag count=\"1\" tag=\"illustrator\" />\n\t<tag count=\"1\" tag=\"spirituality\" />\n\t<tag count=\"1\" tag=\"graph\" />\n\t<tag count=\"1\" tag=\"podcasts\" />\n\t<tag count=\"1\" tag=\"macbook\" />\n\t<tag count=\"1\" tag=\"strategy\" />\n\t<tag count=\"1\" tag=\"pizza\" />\n\t<tag count=\"1\" tag=\"commands\" />\n\t<tag count=\"1\" tag=\"magicmouse\" />\n\t<tag count=\"1\" tag=\"Cross-Platform\" />\n\t<tag count=\"1\" tag=\"script\" />\n\t<tag count=\"1\" tag=\"MIDI\" />\n\t<tag count=\"1\" tag=\"Brewing\" />\n\t<tag count=\"1\" tag=\"space\" />\n\t<tag count=\"1\" tag=\"sessions\" />\n\t<tag count=\"1\" tag=\"insomnia\" />\n\t<tag count=\"1\" tag=\"videos\" />\n\t<tag count=\"1\" tag=\"vector+graphics\" />\n\t<tag count=\"1\" tag=\"sleep\" />\n\t<tag count=\"1\" tag=\"competency\" />\n\t<tag count=\"1\" tag=\"singer+songwriter\" />\n\t<tag count=\"1\" tag=\"xmlhttprequest\" />\n\t<tag count=\"1\" tag=\"document_management\" />\n\t<tag count=\"1\" tag=\"parallel\" />\n\t<tag count=\"1\" tag=\"davos\" />\n\t<tag count=\"1\" tag=\"robots.txt\" />\n\t<tag count=\"1\" tag=\"alfresco\" />\n\t<tag count=\"1\" tag=\"power\" />\n\t<tag count=\"1\" tag=\"calculus\" />\n\t<tag count=\"1\" tag=\"presentation\" />\n\t<tag count=\"1\" tag=\"symbol\" />\n\t<tag count=\"1\" tag=\"c/c++\" />\n\t<tag count=\"1\" tag=\"patch\" />\n\t<tag count=\"1\" tag=\"ECM\" />\n\t<tag count=\"1\" tag=\"rest\" />\n\t<tag count=\"1\" tag=\"vs2005\" />\n\t<tag count=\"1\" tag=\"texture\" />\n\t<tag count=\"1\" tag=\"area51\" />\n\t<tag count=\"1\" tag=\"passwords\" />\n\t<tag count=\"1\" tag=\"draw\" />\n\t<tag count=\"1\" tag=\"java\" />\n\t<tag count=\"1\" tag=\"slideshow\" />\n\t<tag count=\"1\" tag=\"grammar\" />\n\t<tag count=\"1\" tag=\"activemessaging\" />\n\t<tag count=\"1\" tag=\"habits\" />\n\t<tag count=\"1\" tag=\"humour\" />\n\t<tag count=\"1\" tag=\"sip\" />\n\t<tag count=\"1\" tag=\"REXML\" />\n\t<tag count=\"1\" tag=\"display\" />\n\t<tag count=\"1\" tag=\"frugal\" />\n\t<tag count=\"1\" tag=\"viewer\" />\n\t<tag count=\"1\" tag=\"syntax\" />\n\t<tag count=\"1\" tag=\"kde\" />\n\t<tag count=\"1\" tag=\"iphone\" />\n\t<tag count=\"1\" tag=\"multitouch\" />\n\t<tag count=\"1\" tag=\"multitail\" />\n\t<tag count=\"1\" tag=\"autism\" />\n\t<tag count=\"1\" tag=\"xcode\" />\n\t<tag count=\"1\" tag=\"active+directory\" />\n\t<tag count=\"1\" tag=\"mind\" />\n\t<tag count=\"1\" tag=\"creative\" />\n\t<tag count=\"1\" tag=\"eos\" />\n\t<tag count=\"1\" tag=\"colors\" />\n\t<tag count=\"1\" tag=\"beautifier\" />\n\t<tag count=\"1\" tag=\"oneliners\" />\n\t<tag count=\"1\" tag=\"oneliner\" />\n\t<tag count=\"1\" tag=\"photoshop\" />\n\t<tag count=\"1\" tag=\"saving\" />\n\t<tag count=\"1\" tag=\"Virtualization\" />\n\t<tag count=\"1\" tag=\"vnc\" />\n\t<tag count=\"1\" tag=\"phone\" />\n\t<tag count=\"1\" tag=\"googlemaps\" />\n\t<tag count=\"1\" tag=\"NetNewsWire\" />\n\t<tag count=\"1\" tag=\"bzip2\" />\n\t<tag count=\"1\" tag=\"audiobook\" />\n\t<tag count=\"1\" tag=\"recommendation\" />\n\t<tag count=\"1\" tag=\"asterisk\" />\n\t<tag count=\"1\" tag=\"emigrate\" />\n\t<tag count=\"1\" tag=\"international\" />\n\t<tag count=\"1\" tag=\"eff\" />\n\t<tag count=\"1\" tag=\"ideas\" />\n\t<tag count=\"1\" tag=\"mit\" />\n\t<tag count=\"1\" tag=\"etymology\" />\n\t<tag count=\"1\" tag=\"manual\" />\n\t<tag count=\"1\" tag=\"content\" />\n\t<tag count=\"1\" tag=\"string\" />\n\t<tag count=\"1\" tag=\"children\" />\n\t<tag count=\"1\" tag=\"shell-scripting\" />\n\t<tag count=\"1\" tag=\"typeface\" />\n\t<tag count=\"1\" tag=\"recipies\" />\n\t<tag count=\"1\" tag=\"engineering\" />\n\t<tag count=\"1\" tag=\"list\" />\n\t<tag count=\"1\" tag=\"scheme\" />\n\t<tag count=\"1\" tag=\"pathway\" />\n\t<tag count=\"1\" tag=\"jewish\" />\n\t<tag count=\"1\" tag=\"wrt54g\" />\n\t<tag count=\"1\" tag=\"shortcut\" />\n\t<tag count=\"1\" tag=\"conversion\" />\n\t<tag count=\"1\" tag=\"usb\" />\n\t<tag count=\"1\" tag=\"dads\" />\n\t<tag count=\"1\" tag=\"physics\" />\n\t<tag count=\"1\" tag=\"latency\" />\n\t<tag count=\"1\" tag=\"rubycocoa\" />\n\t<tag count=\"1\" tag=\"continuous+integration\" />\n\t<tag count=\"1\" tag=\"mysticism\" />\n\t<tag count=\"1\" tag=\"e-learning\" />\n\t<tag count=\"1\" tag=\"saprfc\" />\n\t<tag count=\"1\" tag=\"corners\" />\n\t<tag count=\"1\" tag=\"scripting\" />\n\t<tag count=\"1\" tag=\"formatting\" />\n\t<tag count=\"1\" tag=\"sweat_lodge\" />\n\t<tag count=\"1\" tag=\"logos\" />\n\t<tag count=\"1\" tag=\"translator\" />\n\t<tag count=\"1\" tag=\"easteregg\" />\n\t<tag count=\"1\" tag=\"detox\" />\n\t<tag count=\"1\" tag=\"gzip\" />\n\t<tag count=\"1\" tag=\"happiness\" />\n\t<tag count=\"1\" tag=\"iptables\" />\n\t<tag count=\"1\" tag=\"textures\" />\n\t<tag count=\"1\" tag=\"cms\" />\n\t<tag count=\"1\" tag=\"singleton\" />\n\t<tag count=\"1\" tag=\"id3\" />\n\t<tag count=\"1\" tag=\"theme\" />\n\t<tag count=\"1\" tag=\"jsan\" />\n\t<tag count=\"1\" tag=\"omnigraffle\" />\n\t<tag count=\"1\" tag=\"mental\" />\n\t<tag count=\"1\" tag=\"reliable-msg\" />\n\t<tag count=\"1\" tag=\"distributed\" />\n\t<tag count=\"1\" tag=\"excercise\" />\n\t<tag count=\"1\" tag=\"MusicLabels\" />\n\t<tag count=\"1\" tag=\"literature\" />\n\t<tag count=\"1\" tag=\"characters\" />\n\t<tag count=\"1\" tag=\"hardening\" />\n\t<tag count=\"1\" tag=\"overseas\" />\n\t<tag count=\"1\" tag=\"knitting\" />\n\t<tag count=\"1\" tag=\"trackpad\" />\n\t<tag count=\"1\" tag=\"algebra\" />\n\t<tag count=\"1\" tag=\"drawing\" />\n\t<tag count=\"1\" tag=\"pricing\" />\n\t<tag count=\"1\" tag=\"snippets\" />\n\t<tag count=\"1\" tag=\"owasp\" />\n\t<tag count=\"1\" tag=\"opacity\" />\n\t<tag count=\"1\" tag=\"kabbalah\" />\n\t<tag count=\"1\" tag=\"pinball\" />\n\t<tag count=\"1\" tag=\"P2P\" />\n\t<tag count=\"1\" tag=\"conference\" />\n\t<tag count=\"1\" tag=\"transparency\" />\n\t<tag count=\"1\" tag=\"buddha\" />\n\t<tag count=\"1\" tag=\"sync\" />\n\t<tag count=\"1\" tag=\"eclectic\" />\n\t<tag count=\"1\" tag=\"80-20\" />\n\t<tag count=\"1\" tag=\"voice\" />\n\t<tag count=\"1\" tag=\"ascii\" />\n\t<tag count=\"1\" tag=\"highlighting\" />\n\t<tag count=\"1\" tag=\"events\" />\n\t<tag count=\"1\" tag=\"drm\" />\n\t<tag count=\"1\" tag=\"bundle\" />\n\t<tag count=\"1\" tag=\"electric\" />\n\t<tag count=\"1\" tag=\"PolymerClay\" />\n\t<tag count=\"1\" tag=\"vegan\" />\n\t<tag count=\"1\" tag=\"plumbing\" />\n\t<tag count=\"1\" tag=\"bash_completion\" />\n\t<tag count=\"1\" tag=\"tail\" />\n\t<tag count=\"1\" tag=\"sketchpad\" />\n\t<tag count=\"1\" tag=\"debugger\" />\n\t<tag count=\"1\" tag=\"maths\" />\n\t<tag count=\"1\" tag=\"dharma\" />\n\t<tag count=\"1\" tag=\"freebsd\" />\n\t<tag count=\"1\" tag=\"carpal_tunnel\" />\n\t<tag count=\"1\" tag=\"languages\" />\n\t<tag count=\"1\" tag=\"TiVo\" />\n\t<tag count=\"1\" tag=\"store\" />\n\t<tag count=\"1\" tag=\"fork\" />\n\t<tag count=\"1\" tag=\"customer\" />\n\t<tag count=\"1\" tag=\"launchd\" />\n\t<tag count=\"1\" tag=\"svg\" />\n\t<tag count=\"1\" tag=\"assistive+device\" />\n\t<tag count=\"1\" tag=\"skills\" />\n\t<tag count=\"1\" tag=\"firmware\" />\n\t<tag count=\"1\" tag=\"mod_rewrite\" />\n\t<tag count=\"1\" tag=\"netlabel\" />\n\t<tag count=\"1\" tag=\"impeach\" />\n\t<tag count=\"1\" tag=\"furniture\" />\n\t<tag count=\"1\" tag=\"remix\" />\n\t<tag count=\"1\" tag=\"bioinformatics\" />\n\t<tag count=\"1\" tag=\"html5\" />\n\t<tag count=\"1\" tag=\"plan9\" />\n\t<tag count=\"1\" tag=\"pim\" />\n\t<tag count=\"1\" tag=\"Canon\" />\n\t<tag count=\"1\" tag=\"fckeditor\" />\n\t<tag count=\"1\" tag=\"live\" />\n\t<tag count=\"1\" tag=\"speech\" />\n\t<tag count=\"1\" tag=\"jobs\" />\n\t<tag count=\"1\" tag=\"avi\" />\n\t<tag count=\"1\" tag=\"sqlite\" />\n\t<tag count=\"1\" tag=\"soap\" />\n\t<tag count=\"1\" tag=\"world\" />\n\t<tag count=\"1\" tag=\"bush\" />\n\t<tag count=\"1\" tag=\"logs\" />\n\t<tag count=\"1\" tag=\"rails3\" />\n\t<tag count=\"1\" tag=\"helvetica\" />\n\t<tag count=\"1\" tag=\"calibre\" />\n\t<tag count=\"1\" tag=\"advice\" />\n\t<tag count=\"1\" tag=\"ext2\" />\n\t<tag count=\"1\" tag=\"typesetting\" />\n\t<tag count=\"1\" tag=\"deals\" />\n\t<tag count=\"1\" tag=\"distro\" />\n\t<tag count=\"1\" tag=\"ec2\" />\n\t<tag count=\"1\" tag=\"information\" />\n\t<tag count=\"1\" tag=\"netcat\" />\n\t<tag count=\"1\" tag=\"typo\" />\n\t<tag count=\"1\" tag=\"builder\" />\n\t<tag count=\"1\" tag=\"entrepreneur\" />\n\t<tag count=\"1\" tag=\"kidsruby\" />\n\t<tag count=\"1\" tag=\"RailsConf\" />\n\t<tag count=\"1\" tag=\"gov20\" />\n\t<tag count=\"1\" tag=\"larc\" />\n\t<tag count=\"1\" tag=\"lazytwitter\" />\n\t<tag count=\"1\" tag=\"lolruby\" />\n\t<tag count=\"1\" tag=\"mwrc\" />\n\t<tag count=\"1\" tag=\"nerdpride\" />\n\t<tag count=\"1\" tag=\"z_3d\" />\n\t<tag count=\"1\" tag=\"protip\" />\n\t<tag count=\"1\" tag=\"pci\" />\n\t<tag count=\"1\" tag=\"git\" />\n\t<tag count=\"1\" tag=\"scala\" />\n\t<tag count=\"1\" tag=\"z_laptop\" />\n\t<tag count=\"1\" tag=\"junk\" />\n\t<tag count=\"2\" tag=\"install\" />\n\t<tag count=\"2\" tag=\"marketing\" />\n\t<tag count=\"2\" tag=\"FUSE\" />\n\t<tag count=\"2\" tag=\"interview\" />\n\t<tag count=\"2\" tag=\"R-Project\" />\n\t<tag count=\"2\" tag=\"tweaks\" />\n\t<tag count=\"2\" tag=\"mq\" />\n\t<tag count=\"2\" tag=\"rescue\" />\n\t<tag count=\"2\" tag=\"accessibility\" />\n\t<tag count=\"2\" tag=\"copyright\" />\n\t<tag count=\"2\" tag=\"privacy\" />\n\t<tag count=\"2\" tag=\"links\" />\n\t<tag count=\"2\" tag=\"zip\" />\n\t<tag count=\"2\" tag=\"maps\" />\n\t<tag count=\"2\" tag=\"grid\" />\n\t<tag count=\"2\" tag=\"nature\" />\n\t<tag count=\"2\" tag=\"R\" />\n\t<tag count=\"2\" tag=\"AOL\" />\n\t<tag count=\"2\" tag=\"electronica\" />\n\t<tag count=\"2\" tag=\"designpatterns\" />\n\t<tag count=\"2\" tag=\"openoffice\" />\n\t<tag count=\"2\" tag=\"family\" />\n\t<tag count=\"2\" tag=\"bluetooth\" />\n\t<tag count=\"2\" tag=\"smtp\" />\n\t<tag count=\"2\" tag=\"python\" />\n\t<tag count=\"2\" tag=\"cocktails\" />\n\t<tag count=\"2\" tag=\"AI\" />\n\t<tag count=\"2\" tag=\"whois\" />\n\t<tag count=\"2\" tag=\"beadboard\" />\n\t<tag count=\"2\" tag=\"growl\" />\n\t<tag count=\"2\" tag=\"pfc\" />\n\t<tag count=\"2\" tag=\"Validation\" />\n\t<tag count=\"2\" tag=\"cmd\" />\n\t<tag count=\"2\" tag=\"SAP\" />\n\t<tag count=\"2\" tag=\"iso\" />\n\t<tag count=\"2\" tag=\"applescript\" />\n\t<tag count=\"2\" tag=\"playlist\" />\n\t<tag count=\"2\" tag=\"dj\" />\n\t<tag count=\"2\" tag=\"socialsoftware\" />\n\t<tag count=\"2\" tag=\"password\" />\n\t<tag count=\"2\" tag=\"cars\" />\n\t<tag count=\"2\" tag=\"cheap\" />\n\t<tag count=\"2\" tag=\"color\" />\n\t<tag count=\"2\" tag=\"drums\" />\n\t<tag count=\"2\" tag=\"album\" />\n\t<tag count=\"2\" tag=\"messaging\" />\n\t<tag count=\"2\" tag=\"update\" />\n\t<tag count=\"2\" tag=\"law\" />\n\t<tag count=\"2\" tag=\"vegetarian\" />\n\t<tag count=\"2\" tag=\"debug\" />\n\t<tag count=\"2\" tag=\"zlib\" />\n\t<tag count=\"2\" tag=\"SoftwareEngineering\" />\n\t<tag count=\"2\" tag=\"composers\" />\n\t<tag count=\"2\" tag=\"aggregator\" />\n\t<tag count=\"2\" tag=\"iphoto\" />\n\t<tag count=\"2\" tag=\"building\" />\n\t<tag count=\"2\" tag=\"papers\" />\n\t<tag count=\"2\" tag=\"sketch\" />\n\t<tag count=\"2\" tag=\"capistrano\" />\n\t<tag count=\"2\" tag=\"jazz\" />\n\t<tag count=\"2\" tag=\"analytics\" />\n\t<tag count=\"2\" tag=\"Intelligence\" />\n\t<tag count=\"2\" tag=\"launcher\" />\n\t<tag count=\"2\" tag=\"antispam\" />\n\t<tag count=\"2\" tag=\"tool\" />\n\t<tag count=\"2\" tag=\"movies\" />\n\t<tag count=\"2\" tag=\"biology\" />\n\t<tag count=\"2\" tag=\"text\" />\n\t<tag count=\"2\" tag=\"dspam\" />\n\t<tag count=\"2\" tag=\"job\" />\n\t<tag count=\"2\" tag=\"cron\" />\n\t<tag count=\"2\" tag=\"rss\" />\n\t<tag count=\"2\" tag=\"Torrents\" />\n\t<tag count=\"2\" tag=\"movie\" />\n\t<tag count=\"2\" tag=\"rock\" />\n\t<tag count=\"2\" tag=\"organic\" />\n\t<tag count=\"2\" tag=\"themes\" />\n\t<tag count=\"2\" tag=\"treatment\" />\n\t<tag count=\"2\" tag=\"excel\" />\n\t<tag count=\"2\" tag=\"label\" />\n\t<tag count=\"2\" tag=\"religion\" />\n\t<tag count=\"2\" tag=\"screencast\" />\n\t<tag count=\"2\" tag=\"rrdtool\" />\n\t<tag count=\"2\" tag=\"hybrid\" />\n\t<tag count=\"2\" tag=\"voip\" />\n\t<tag count=\"2\" tag=\"vpn\" />\n\t<tag count=\"2\" tag=\"Graphing\" />\n\t<tag count=\"2\" tag=\"imagemagick\" />\n\t<tag count=\"2\" tag=\"data\" />\n\t<tag count=\"2\" tag=\"etiquette\" />\n\t<tag count=\"2\" tag=\"wifi\" />\n\t<tag count=\"2\" tag=\"paypal\" />\n\t<tag count=\"2\" tag=\"foxpro\" />\n\t<tag count=\"2\" tag=\"parenting\" />\n\t<tag count=\"2\" tag=\"tv\" />\n\t<tag count=\"2\" tag=\"rsi\" />\n\t<tag count=\"2\" tag=\"torrent\" />\n\t<tag count=\"2\" tag=\"restaurants\" />\n\t<tag count=\"2\" tag=\"centos\" />\n\t<tag count=\"2\" tag=\"vi\" />\n\t<tag count=\"2\" tag=\"canvas\" />\n\t<tag count=\"2\" tag=\"graphicdesign\" />\n\t<tag count=\"2\" tag=\"scriptaculous\" />\n\t<tag count=\"2\" tag=\"skill\" />\n\t<tag count=\"2\" tag=\"json\" />\n\t<tag count=\"2\" tag=\"body\" />\n\t<tag count=\"2\" tag=\"work\" />\n\t<tag count=\"2\" tag=\"branding\" />\n\t<tag count=\"2\" tag=\"timer\" />\n\t<tag count=\"2\" tag=\"tiger\" />\n\t<tag count=\"2\" tag=\"irb\" />\n\t<tag count=\"2\" tag=\"Sudoku\" />\n\t<tag count=\"2\" tag=\"spellcheck\" />\n\t<tag count=\"2\" tag=\"BitTorrent\" />\n\t<tag count=\"2\" tag=\"mod_fcgid\" />\n\t<tag count=\"2\" tag=\"snort\" />\n\t<tag count=\"2\" tag=\"files\" />\n\t<tag count=\"2\" tag=\"trance\" />\n\t<tag count=\"2\" tag=\"OT\" />\n\t<tag count=\"2\" tag=\"objective-c\" />\n\t<tag count=\"2\" tag=\"pukka\" />\n\t<tag count=\"2\" tag=\"rhel\" />\n\t<tag count=\"2\" tag=\"philosophy\" />\n\t<tag count=\"2\" tag=\"economics\" />\n\t<tag count=\"2\" tag=\"deployment\" />\n\t<tag count=\"2\" tag=\"money\" />\n\t<tag count=\"2\" tag=\"emacs\" />\n\t<tag count=\"2\" tag=\"postgresql\" />\n\t<tag count=\"2\" tag=\"HTTP\" />\n\t<tag count=\"2\" tag=\"refactoring\" />\n\t<tag count=\"2\" tag=\"benchmark\" />\n\t<tag count=\"2\" tag=\"prius\" />\n\t<tag count=\"2\" tag=\"fractals\" />\n\t<tag count=\"2\" tag=\"editors\" />\n\t<tag count=\"2\" tag=\"services\" />\n\t<tag count=\"2\" tag=\"gallery\" />\n\t<tag count=\"2\" tag=\"piano\" />\n\t<tag count=\"2\" tag=\"sharing\" />\n\t<tag count=\"2\" tag=\"dns\" />\n\t<tag count=\"2\" tag=\"bsd\" />\n\t<tag count=\"2\" tag=\"bookmarklet\" />\n\t<tag count=\"2\" tag=\"help\" />\n\t<tag count=\"2\" tag=\"Cryptography\" />\n\t<tag count=\"2\" tag=\"ror\" />\n\t<tag count=\"2\" tag=\"rvm\" />\n\t<tag count=\"2\" tag=\"z_.mac\" />\n\t<tag count=\"3\" tag=\"podcasting\" />\n\t<tag count=\"3\" tag=\"techno\" />\n\t<tag count=\"3\" tag=\"svn\" />\n\t<tag count=\"3\" tag=\"virtual\" />\n\t<tag count=\"3\" tag=\"crypto\" />\n\t<tag count=\"3\" tag=\"magazine\" />\n\t<tag count=\"3\" tag=\"generators\" />\n\t<tag count=\"3\" tag=\"documentation\" />\n\t<tag count=\"3\" tag=\"textbooks\" />\n\t<tag count=\"3\" tag=\"test\" />\n\t<tag count=\"3\" tag=\"articles\" />\n\t<tag count=\"3\" tag=\"audiobooks\" />\n\t<tag count=\"3\" tag=\"regularexpressions\" />\n\t<tag count=\"3\" tag=\"photo\" />\n\t<tag count=\"3\" tag=\"shortcuts\" />\n\t<tag count=\"3\" tag=\"analysis\" />\n\t<tag count=\"3\" tag=\"subversion\" />\n\t<tag count=\"3\" tag=\"home+improvement\" />\n\t<tag count=\"3\" tag=\"perl\" />\n\t<tag count=\"3\" tag=\"reading\" />\n\t<tag count=\"3\" tag=\"icons\" />\n\t<tag count=\"3\" tag=\"template\" />\n\t<tag count=\"3\" tag=\"maintenance\" />\n\t<tag count=\"3\" tag=\"upload\" />\n\t<tag count=\"3\" tag=\"netmon\" />\n\t<tag count=\"3\" tag=\"virtual+desktop\" />\n\t<tag count=\"3\" tag=\"wiki\" />\n\t<tag count=\"3\" tag=\"compression\" />\n\t<tag count=\"3\" tag=\"computer_science\" />\n\t<tag count=\"3\" tag=\"archives\" />\n\t<tag count=\"3\" tag=\"mongrel\" />\n\t<tag count=\"3\" tag=\"logging\" />\n\t<tag count=\"3\" tag=\"print\" />\n\t<tag count=\"3\" tag=\"career\" />\n\t<tag count=\"3\" tag=\"for:jmcdonald\" />\n\t<tag count=\"3\" tag=\"collaboration\" />\n\t<tag count=\"3\" tag=\"amazon\" />\n\t<tag count=\"3\" tag=\"animation\" />\n\t<tag count=\"3\" tag=\"snippet\" />\n\t<tag count=\"3\" tag=\"kids\" />\n\t<tag count=\"3\" tag=\"songs\" />\n\t<tag count=\"3\" tag=\"ebook\" />\n\t<tag count=\"3\" tag=\"mashup\" />\n\t<tag count=\"3\" tag=\"generator\" />\n\t<tag count=\"3\" tag=\"tex\" />\n\t<tag count=\"3\" tag=\"chords\" />\n\t<tag count=\"3\" tag=\"lighttpd\" />\n\t<tag count=\"3\" tag=\"tags\" />\n\t<tag count=\"3\" tag=\"recording\" />\n\t<tag count=\"3\" tag=\"media\" />\n\t<tag count=\"3\" tag=\"gui\" />\n\t<tag count=\"3\" tag=\"linguistics\" />\n\t<tag count=\"3\" tag=\"keyboard\" />\n\t<tag count=\"3\" tag=\"cluster\" />\n\t<tag count=\"3\" tag=\"effects\" />\n\t<tag count=\"3\" tag=\"electronics\" />\n\t<tag count=\"4\" tag=\"medicine\" />\n\t<tag count=\"4\" tag=\"electronic\" />\n\t<tag count=\"4\" tag=\"encryption\" />\n\t<tag count=\"4\" tag=\"admin\" />\n\t<tag count=\"4\" tag=\"tech\" />\n\t<tag count=\"4\" tag=\"spamassassin\" />\n\t<tag count=\"4\" tag=\"graphs\" />\n\t<tag count=\"4\" tag=\"dictionary\" />\n\t<tag count=\"4\" tag=\"shopping\" />\n\t<tag count=\"4\" tag=\"organization\" />\n\t<tag count=\"4\" tag=\"Database\" />\n\t<tag count=\"4\" tag=\"fractal\" />\n\t<tag count=\"4\" tag=\"government\" />\n\t<tag count=\"4\" tag=\"proxy\" />\n\t<tag count=\"4\" tag=\"complexity\" />\n\t<tag count=\"4\" tag=\"file\" />\n\t<tag count=\"4\" tag=\"sound\" />\n\t<tag count=\"4\" tag=\"freelance\" />\n\t<tag count=\"4\" tag=\"optimization\" />\n\t<tag count=\"4\" tag=\"markup\" />\n\t<tag count=\"4\" tag=\"lisp\" />\n\t<tag count=\"4\" tag=\"architecture\" />\n\t<tag count=\"4\" tag=\"DOM\" />\n\t<tag count=\"4\" tag=\"sustainability\" />\n\t<tag count=\"4\" tag=\"browser\" />\n\t<tag count=\"4\" tag=\"delicious\" />\n\t<tag count=\"4\" tag=\"medical\" />\n\t<tag count=\"4\" tag=\"lectures\" />\n\t<tag count=\"4\" tag=\"vim\" />\n\t<tag count=\"4\" tag=\"reviews\" />\n\t<tag count=\"4\" tag=\"drinks\" />\n\t<tag count=\"4\" tag=\"beer\" />\n\t<tag count=\"4\" tag=\"sql\" />\n\t<tag count=\"4\" tag=\"funny\" />\n\t<tag count=\"4\" tag=\"emigration\" />\n\t<tag count=\"4\" tag=\"restaurant\" />\n\t<tag count=\"4\" tag=\"words\" />\n\t<tag count=\"4\" tag=\"menu\" />\n\t<tag count=\"4\" tag=\"hacker\" />\n\t<tag count=\"4\" tag=\"English\" />\n\t<tag count=\"4\" tag=\"toread\" />\n\t<tag count=\"4\" tag=\"forms\" />\n\t<tag count=\"4\" tag=\"agile+development\" />\n\t<tag count=\"4\" tag=\"lessons\" />\n\t<tag count=\"4\" tag=\"immigration\" />\n\t<tag count=\"4\" tag=\"DotNet\" />\n\t<tag count=\"4\" tag=\"travel\" />\n\t<tag count=\"4\" tag=\"startup\" />\n\t<tag count=\"4\" tag=\"ssh\" />\n\t<tag count=\"4\" tag=\"oop\" />\n\t<tag count=\"5\" tag=\"citizenship\" />\n\t<tag count=\"5\" tag=\"cli\" />\n\t<tag count=\"5\" tag=\"filesystem\" />\n\t<tag count=\"5\" tag=\"entrepreneurship\" />\n\t<tag count=\"5\" tag=\"alcohol\" />\n\t<tag count=\"5\" tag=\"interface\" />\n\t<tag count=\"5\" tag=\"graphic\" />\n\t<tag count=\"5\" tag=\"theory\" />\n\t<tag count=\"5\" tag=\"statistics\" />\n\t<tag count=\"5\" tag=\"history\" />\n\t<tag count=\"5\" tag=\"photography\" />\n\t<tag count=\"5\" tag=\"framework\" />\n\t<tag count=\"5\" tag=\"ecology\" />\n\t<tag count=\"5\" tag=\"firewall\" />\n\t<tag count=\"5\" tag=\"VisualStudio\" />\n\t<tag count=\"5\" tag=\"font\" />\n\t<tag count=\"5\" tag=\"php\" />\n\t<tag count=\"5\" tag=\"Application\" />\n\t<tag count=\"5\" tag=\"ebooks\" />\n\t<tag count=\"5\" tag=\"tagging\" />\n\t<tag count=\"5\" tag=\"mysql\" />\n\t<tag count=\"5\" tag=\"wine\" />\n\t<tag count=\"5\" tag=\"repair\" />\n\t<tag count=\"5\" tag=\"nutrition\" />\n\t<tag count=\"5\" tag=\"fastCGI\" />\n\t<tag count=\"5\" tag=\"mail\" />\n\t<tag count=\"5\" tag=\"fb\" />\n\t<tag count=\"6\" tag=\"email\" />\n\t<tag count=\"6\" tag=\"guitar\" />\n\t<tag count=\"6\" tag=\"terminal\" />\n\t<tag count=\"6\" tag=\"crafts\" />\n\t<tag count=\"6\" tag=\"webapps\" />\n\t<tag count=\"6\" tag=\"canada\" />\n\t<tag count=\"6\" tag=\"monitoring\" />\n\t<tag count=\"6\" tag=\"visualization\" />\n\t<tag count=\"6\" tag=\"tricks\" />\n\t<tag count=\"6\" tag=\"online\" />\n\t<tag count=\"6\" tag=\"flash\" />\n\t<tag count=\"6\" tag=\"cocoa\" />\n\t<tag count=\"6\" tag=\"green\" />\n\t<tag count=\"6\" tag=\"Layout\" />\n\t<tag count=\"6\" tag=\"Safari\" />\n\t<tag count=\"6\" tag=\"libraries\" />\n\t<tag count=\"6\" tag=\"fonts\" />\n\t<tag count=\"6\" tag=\"troubleshooting\" />\n\t<tag count=\"6\" tag=\"spam\" />\n\t<tag count=\"6\" tag=\"diet\" />\n\t<tag count=\"6\" tag=\"image\" />\n\t<tag count=\"6\" tag=\"desktop\" />\n\t<tag count=\"6\" tag=\"cookbook\" />\n\t<tag count=\"6\" tag=\"fitness\" />\n\t<tag count=\"6\" tag=\"podcast\" />\n\t<tag count=\"6\" tag=\"extensions\" />\n\t<tag count=\"6\" tag=\"stats\" />\n\t<tag count=\"6\" tag=\"news\" />\n\t<tag count=\"6\" tag=\"LaTeX\" />\n\t<tag count=\"6\" tag=\"community\" />\n\t<tag count=\"6\" tag=\"mathematics\" />\n\t<tag count=\"6\" tag=\"eco\" />\n\t<tag count=\"6\" tag=\"photos\" />\n\t<tag count=\"6\" tag=\"streaming\" />\n\t<tag count=\"6\" tag=\"textmate\" />\n\t<tag count=\"7\" tag=\"calendar\" />\n\t<tag count=\"7\" tag=\"winxp\" />\n\t<tag count=\"7\" tag=\"algorithm\" />\n\t<tag count=\"7\" tag=\"c#\" />\n\t<tag count=\"7\" tag=\"game\" />\n\t<tag count=\"7\" tag=\"typography\" />\n\t<tag count=\"7\" tag=\"politics\" />\n\t<tag count=\"7\" tag=\"home\" />\n\t<tag count=\"7\" tag=\"templates\" />\n\t<tag count=\"7\" tag=\"monitor\" />\n\t<tag count=\"7\" tag=\"usability\" />\n\t<tag count=\"7\" tag=\"classical\" />\n\t<tag count=\"7\" tag=\"applications\" />\n\t<tag count=\"7\" tag=\"academic\" />\n\t<tag count=\"7\" tag=\"Archive\" />\n\t<tag count=\"7\" tag=\"hardware\" />\n\t<tag count=\"7\" tag=\"Search\" />\n\t<tag count=\"7\" tag=\"environment\" />\n\t<tag count=\"7\" tag=\"csharp\" />\n\t<tag count=\"7\" tag=\"culture\" />\n\t<tag count=\"7\" tag=\"plugins\" />\n\t<tag count=\"7\" tag=\"recommendations\" />\n\t<tag count=\"7\" tag=\"iTunes\" />\n\t<tag count=\"7\" tag=\"api\" />\n\t<tag count=\"8\" tag=\"del.icio.us\" />\n\t<tag count=\"8\" tag=\"algorithms\" />\n\t<tag count=\"8\" tag=\"cool\" />\n\t<tag count=\"8\" tag=\"video\" />\n\t<tag count=\"8\" tag=\"quicksilver\" />\n\t<tag count=\"8\" tag=\"performance\" />\n\t<tag count=\"8\" tag=\"download\" />\n\t<tag count=\"8\" tag=\"games\" />\n\t<tag count=\"8\" tag=\"science\" />\n\t<tag count=\"8\" tag=\"hack\" />\n\t<tag count=\"8\" tag=\"tutorials\" />\n\t<tag count=\"8\" tag=\"hosting\" />\n\t<tag count=\"8\" tag=\"puzzles\" />\n\t<tag count=\"8\" tag=\"expat\" />\n\t<tag count=\"8\" tag=\"images\" />\n\t<tag count=\"8\" tag=\"bash\" />\n\t<tag count=\"9\" tag=\"ipod\" />\n\t<tag count=\"9\" tag=\"recovery\" />\n\t<tag count=\"9\" tag=\"humor\" />\n\t<tag count=\"9\" tag=\"regexp\" />\n\t<tag count=\"9\" tag=\"storage\" />\n\t<tag count=\"9\" tag=\"projects\" />\n\t<tag count=\"9\" tag=\"hacking\" />\n\t<tag count=\"9\" tag=\"radio\" />\n\t<tag count=\"9\" tag=\"learning\" />\n\t<tag count=\"9\" tag=\"resources\" />\n\t<tag count=\"9\" tag=\"regex\" />\n\t<tag count=\"9\" tag=\"computers\" />\n\t<tag count=\"9\" tag=\"backup\" />\n\t<tag count=\"9\" tag=\"downloads\" />\n\t<tag count=\"9\" tag=\"guide\" />\n\t<tag count=\"9\" tag=\"apps\" />\n\t<tag count=\"9\" tag=\"Extension\" />\n\t<tag count=\"9\" tag=\"language\" />\n\t<tag count=\"9\" tag=\"patterns\" />\n\t<tag count=\"9\" tag=\"Useful\" />\n\t<tag count=\"10\" tag=\"technology\" />\n\t<tag count=\"10\" tag=\"editor\" />\n\t<tag count=\"10\" tag=\"google\" />\n\t<tag count=\"11\" tag=\"utility\" />\n\t<tag count=\"11\" tag=\"DHTML\" />\n\t<tag count=\"11\" tag=\"plugin\" />\n\t<tag count=\"11\" tag=\"research\" />\n\t<tag count=\"11\" tag=\"webapp\" />\n\t<tag count=\"11\" tag=\"CheatSheet\" />\n\t<tag count=\"11\" tag=\"prototype\" />\n\t<tag count=\"11\" tag=\"social\" />\n\t<tag count=\"11\" tag=\"macos\" />\n\t<tag count=\"12\" tag=\"blogs\" />\n\t<tag count=\"12\" tag=\"windowsxp\" />\n\t<tag count=\"12\" tag=\"microsoft\" />\n\t<tag count=\"12\" tag=\"GTD\" />\n\t<tag count=\"12\" tag=\"math\" />\n\t<tag count=\"12\" tag=\"ui\" />\n\t<tag count=\"12\" tag=\"management\" />\n\t<tag count=\"12\" tag=\"XP\" />\n\t<tag count=\"13\" tag=\"fun\" />\n\t<tag count=\"13\" tag=\"recipe\" />\n\t<tag count=\"13\" tag=\"tdd\" />\n\t<tag count=\"13\" tag=\"agile\" />\n\t<tag count=\"14\" tag=\"system\" />\n\t<tag count=\"14\" tag=\"apache\" />\n\t<tag count=\"14\" tag=\"administration\" />\n\t<tag count=\"14\" tag=\"hacks\" />\n\t<tag count=\"14\" tag=\"shell\" />\n\t<tag count=\"14\" tag=\"book\" />\n\t<tag count=\"14\" tag=\"xml\" />\n\t<tag count=\"14\" tag=\"z_.NET\" />\n\t<tag count=\"15\" tag=\"geek\" />\n\t<tag count=\"15\" tag=\"art\" />\n\t<tag count=\"15\" tag=\"diy\" />\n\t<tag count=\"16\" tag=\"recipes\" />\n\t<tag count=\"16\" tag=\"books\" />\n\t<tag count=\"16\" tag=\"cooking\" />\n\t<tag count=\"17\" tag=\"business\" />\n\t<tag count=\"18\" tag=\"education\" />\n\t<tag count=\"18\" tag=\"health\" />\n\t<tag count=\"18\" tag=\"internet\" />\n\t<tag count=\"18\" tag=\"graphics\" />\n\t<tag count=\"19\" tag=\"lifehacks\" />\n\t<tag count=\"19\" tag=\"food\" />\n\t<tag count=\"19\" tag=\"computer\" />\n\t<tag count=\"19\" tag=\"server\" />\n\t<tag count=\"20\" tag=\"article\" />\n\t<tag count=\"20\" tag=\"testing\" />\n\t<tag count=\"23\" tag=\"networking\" />\n\t<tag count=\"23\" tag=\"html\" />\n\t<tag count=\"24\" tag=\"xul\" />\n\t<tag count=\"25\" tag=\"firefox\" />\n\t<tag count=\"25\" tag=\"mozilla\" />\n\t<tag count=\"26\" tag=\"network\" />\n\t<tag count=\"27\" tag=\"library\" />\n\t<tag count=\"29\" tag=\"ajax\" />\n\t<tag count=\"29\" tag=\"mp3\" />\n\t<tag count=\"30\" tag=\"web2.0\" />\n\t<tag count=\"31\" tag=\"opensource\" />\n\t<tag count=\"32\" tag=\"security\" />\n\t<tag count=\"32\" tag=\"unix\" />\n\t<tag count=\"35\" tag=\"productivity\" />\n\t<tag count=\"36\" tag=\"freeware\" />\n\t<tag count=\"36\" tag=\"xhtml\" />\n\t<tag count=\"37\" tag=\"blog\" />\n\t<tag count=\"40\" tag=\"tutorial\" />\n\t<tag count=\"42\" tag=\"Utilities\" />\n\t<tag count=\"43\" tag=\"css\" />\n\t<tag count=\"44\" tag=\"audio\" />\n\t<tag count=\"45\" tag=\"macosx\" />\n\t<tag count=\"45\" tag=\"apple\" />\n\t<tag count=\"46\" tag=\"tips\" />\n\t<tag count=\"46\" tag=\"howto\" />\n\t<tag count=\"47\" tag=\"windows\" />\n\t<tag count=\"47\" tag=\"linux\" />\n\t<tag count=\"48\" tag=\"rubyonrails\" />\n\t<tag count=\"50\" tag=\"free\" />\n\t<tag count=\"50\" tag=\"design\" />\n\t<tag count=\"53\" tag=\"music\" />\n\t<tag count=\"57\" tag=\"coding\" />\n\t<tag count=\"62\" tag=\"webdesign\" />\n\t<tag count=\"64\" tag=\"rails\" />\n\t<tag count=\"65\" tag=\"development\" />\n\t<tag count=\"68\" tag=\"javascript\" />\n\t<tag count=\"71\" tag=\"webdev\" />\n\t<tag count=\"77\" tag=\"web\" />\n\t<tag count=\"82\" tag=\"mac\" />\n\t<tag count=\"84\" tag=\"osx\" />\n\t<tag count=\"85\" tag=\"code\" />\n\t<tag count=\"85\" tag=\"sysadmin\" />\n\t<tag count=\"89\" tag=\"tools\" />\n\t<tag count=\"96\" tag=\"ruby\" />\n\t<tag count=\"106\" tag=\"reference\" />\n\t<tag count=\"122\" tag=\"software\" />\n\t<tag count=\"187\" tag=\"programming\" />\n\t<tag count=\"309\" tag=\"HUGE-ASS-ARCHIVE\" />\n\t<tag count=\"310\" tag=\"Bookmarks_Bar\" />\n</tags>\n\n\t"},"http_version":null},"recorded_at":"Sat, 07 Jul 2012 05:33:26 GMT"},{"request":{"method":"get","uri":"https://api.pinboard.in/v1/tags/delete?tag=junk","body":{"encoding":"US-ASCII","string":""},"headers":{"Authorization":["Basic [FILTERED]"]}},"response":{"status":{"code":200,"message":null},"headers":{"date":["Sat, 07 Jul 2012 05:33:26 GMT"],"server":["Apache/2.2.20 (Ubuntu)"],"set-cookie":["PHPSESSID=0ouka68pg1psfioa9si7okibm1; path=/"],"expires":["Thu, 19 Nov 1981 08:52:00 GMT"],"cache-control":["no-store, no-cache, must-revalidate, post-check=0, pre-check=0"],"pragma":["no-cache"],"vary":["Accept-Encoding"],"content-length":["77"],"connection":["close"],"content-type":["text/xml; charset=utf-8"]},"body":{"encoding":"ASCII-8BIT","string":"<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n<result>done</result>\n\t"},"http_version":null},"recorded_at":"Sat, 07 Jul 2012 05:33:26 GMT"}],"recorded_with":"VCR 2.2.2"}
@@ -1 +0,0 @@
1
- {"http_interactions":[{"request":{"method":"get","uri":"https://api.pinboard.in/v1/tags/delete?tag=xxINVALIDxxBOGUSxx","body":{"encoding":"US-ASCII","string":""},"headers":{"Authorization":["Basic [FILTERED]"]}},"response":{"status":{"code":200,"message":null},"headers":{"date":["Sat, 07 Jul 2012 05:33:25 GMT"],"server":["Apache/2.2.20 (Ubuntu)"],"set-cookie":["PHPSESSID=vvlg55ill164i7itah8lf17hf6; path=/"],"expires":["Thu, 19 Nov 1981 08:52:00 GMT"],"cache-control":["no-store, no-cache, must-revalidate, post-check=0, pre-check=0"],"pragma":["no-cache"],"vary":["Accept-Encoding"],"content-length":["77"],"connection":["close"],"content-type":["text/xml; charset=utf-8"]},"body":{"encoding":"US-ASCII","string":""},"http_version":null},"recorded_at":"Sat, 07 Jul 2012 05:33:25 GMT"}],"recorded_with":"VCR 2.2.2"}