httparty 0.17.0 → 0.17.1

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of httparty might be problematic. Click here for more details.

Files changed (60) hide show
  1. checksums.yaml +4 -4
  2. data/Changelog.md +7 -0
  3. data/Gemfile +1 -0
  4. data/httparty.gemspec +0 -1
  5. data/lib/httparty.rb +2 -18
  6. data/lib/httparty/connection_adapter.rb +10 -0
  7. data/lib/httparty/headers_processor.rb +30 -0
  8. data/lib/httparty/request.rb +4 -4
  9. data/lib/httparty/version.rb +1 -1
  10. metadata +4 -103
  11. data/features/basic_authentication.feature +0 -20
  12. data/features/command_line.feature +0 -95
  13. data/features/deals_with_http_error_codes.feature +0 -26
  14. data/features/digest_authentication.feature +0 -30
  15. data/features/handles_compressed_responses.feature +0 -27
  16. data/features/handles_multiple_formats.feature +0 -57
  17. data/features/steps/env.rb +0 -27
  18. data/features/steps/httparty_response_steps.rb +0 -56
  19. data/features/steps/httparty_steps.rb +0 -43
  20. data/features/steps/mongrel_helper.rb +0 -127
  21. data/features/steps/remote_service_steps.rb +0 -92
  22. data/features/supports_read_timeout_option.feature +0 -13
  23. data/features/supports_redirection.feature +0 -22
  24. data/features/supports_timeout_option.feature +0 -13
  25. data/spec/fixtures/delicious.xml +0 -23
  26. data/spec/fixtures/empty.xml +0 -0
  27. data/spec/fixtures/example.html +0 -10
  28. data/spec/fixtures/ssl/generate.sh +0 -29
  29. data/spec/fixtures/ssl/generated/bogushost.crt +0 -29
  30. data/spec/fixtures/ssl/generated/ca.crt +0 -31
  31. data/spec/fixtures/ssl/generated/ca.key +0 -52
  32. data/spec/fixtures/ssl/generated/selfsigned.crt +0 -29
  33. data/spec/fixtures/ssl/generated/server.crt +0 -30
  34. data/spec/fixtures/ssl/generated/server.key +0 -52
  35. data/spec/fixtures/ssl/openssl-exts.cnf +0 -9
  36. data/spec/fixtures/tiny.gif +0 -0
  37. data/spec/fixtures/twitter.csv +0 -2
  38. data/spec/fixtures/twitter.json +0 -1
  39. data/spec/fixtures/twitter.xml +0 -403
  40. data/spec/fixtures/undefined_method_add_node_for_nil.xml +0 -2
  41. data/spec/httparty/connection_adapter_spec.rb +0 -628
  42. data/spec/httparty/cookie_hash_spec.rb +0 -100
  43. data/spec/httparty/exception_spec.rb +0 -45
  44. data/spec/httparty/hash_conversions_spec.rb +0 -58
  45. data/spec/httparty/logger/apache_formatter_spec.rb +0 -40
  46. data/spec/httparty/logger/curl_formatter_spec.rb +0 -119
  47. data/spec/httparty/logger/logger_spec.rb +0 -43
  48. data/spec/httparty/logger/logstash_formatter_spec.rb +0 -44
  49. data/spec/httparty/net_digest_auth_spec.rb +0 -270
  50. data/spec/httparty/parser_spec.rb +0 -190
  51. data/spec/httparty/request/body_spec.rb +0 -165
  52. data/spec/httparty/request_spec.rb +0 -1389
  53. data/spec/httparty/response_fragment_spec.rb +0 -17
  54. data/spec/httparty/response_spec.rb +0 -374
  55. data/spec/httparty/ssl_spec.rb +0 -82
  56. data/spec/httparty_spec.rb +0 -943
  57. data/spec/spec_helper.rb +0 -57
  58. data/spec/support/ssl_test_helper.rb +0 -47
  59. data/spec/support/ssl_test_server.rb +0 -80
  60. data/spec/support/stub_response.rb +0 -50
@@ -1,13 +0,0 @@
1
- Feature: Supports the read timeout option
2
- In order to handle inappropriately slow response times
3
- As a developer
4
- I want my request to raise an exception after my specified read_timeout as elapsed
5
-
6
- Scenario: A long running response
7
- Given a remote service that returns '<h1>Some HTML</h1>'
8
- And that service is accessed at the path '/long_running_service.html'
9
- And that service takes 2 seconds to generate a response
10
- When I set my HTTParty read_timeout option to 1
11
- And I call HTTParty#get with '/long_running_service.html'
12
- Then it should raise a Timeout::Error exception
13
- And I wait for the server to recover
@@ -1,22 +0,0 @@
1
- Feature: Supports Redirection
2
-
3
- As a developer
4
- I want to work with services that may redirect me
5
- And I want it to follow a reasonable number of redirects
6
- Because sometimes web services do that
7
-
8
- Scenario: A service that redirects once
9
- Given a remote service that returns 'Service Response'
10
- And that service is accessed at the path '/landing_service.html'
11
- And the url '/redirector.html' redirects to '/landing_service.html'
12
- When I call HTTParty#get with '/redirector.html'
13
- Then the return value should match 'Service Response'
14
-
15
- # TODO: Look in to why this actually fails...
16
- Scenario: A service that redirects to a relative URL
17
-
18
- Scenario: A service that redirects infinitely
19
- Given the url '/first.html' redirects to '/second.html'
20
- And the url '/second.html' redirects to '/first.html'
21
- When I call HTTParty#get with '/first.html'
22
- Then it should raise an HTTParty::RedirectionTooDeep exception
@@ -1,13 +0,0 @@
1
- Feature: Supports the timeout option
2
- In order to handle inappropriately slow response times
3
- As a developer
4
- I want my request to raise an exception after my specified timeout as elapsed
5
-
6
- Scenario: A long running response
7
- Given a remote service that returns '<h1>Some HTML</h1>'
8
- And that service is accessed at the path '/long_running_service.html'
9
- And that service takes 2 seconds to generate a response
10
- When I set my HTTParty timeout option to 1
11
- And I call HTTParty#get with '/long_running_service.html'
12
- Then it should raise a Timeout::Error exception
13
- And I wait for the server to recover
@@ -1,23 +0,0 @@
1
- <posts user="jnunemaker" tag="ruby">
2
- <post href="http://roxml.rubyforge.org/" hash="19bba2ab667be03a19f67fb67dc56917" description="ROXML - Ruby Object to XML Mapping Library" tag="ruby xml gems mapping" time="2008-08-09T05:24:20Z" others="56" extended="ROXML is a Ruby library designed to make it easier for Ruby developers to work with XML. Using simple annotations, it enables Ruby classes to be custom-mapped to XML. ROXML takes care of the marshalling and unmarshalling of mapped attributes so that developers can focus on building first-class Ruby classes."/>
3
- <post href="http://code.google.com/p/sparrow/" hash="1df8a7cb9e8960992556518c0ea0d146" description="sparrow - Google Code" tag="ruby sparrow memcache queue" time="2008-08-06T15:07:24Z" others="115" extended="Sparrow is a really fast lightweight queue written in Ruby that speaks memcache. That means you can use Sparrow with any memcached client library (Ruby or otherwise)."/>
4
- <post href="http://code.google.com/p/query-reviewer/" hash="963187e8bf350ae42e21eee13a2bef07" description="query-reviewer - Google Code" tag="rails ruby railstips plugins database optimization" time="2008-08-04T21:50:14Z" others="180" extended="This rails plugin not only runs &quot;EXPLAIN&quot; before each of your select queries in development, but provides a small DIV in the rendered output of each page with the summary of query warnings that it analyzed."/>
5
- <post href="http://dev.zeraweb.com/introducing-functor" hash="2cdd545934bd37ae6f4829c51b3041c5" description="dev.zeraweb.com: Introducing Functor" tag="ruby methods gems railstips" time="2008-08-04T21:46:47Z" others="61" extended="Really cool ruby lib for overloading method definitions. I can think of a few places this would be handy."/>
6
- <post href="http://prawn.majesticseacreature.com/" hash="92764e019de7553b4cd38017e42e4aaa" description="prawn.majesticseacreature.com" tag="pdf ruby railstips" time="2008-08-04T21:26:20Z" others="237" extended="pure ruby pdf generation library."/>
7
- <post href="http://meme-rocket.com/2006/09/28/ruby-moduleinclude-at-odds-with-duck-typing/" hash="4ce96c7c237161819e9625737c22b462" description="Bill Burcham’s memeRocket :: Ruby Module#include at Odds with Duck Typing." tag="ruby railstips enumerable comparable" time="2008-08-03T16:09:24Z" others="3" extended="How to build your own enumerable and comparable objects in ruby. This article is old but just came across it and found it handy."/>
8
- <post href="http://bl.ogtastic.com/archives/2008/7" hash="6bebd138c037d7d7c88a7046ca03f671" description="The right way to do something you should never do" tag="juggernaut observers rails flash ruby" time="2008-08-03T03:50:58Z" others="0" extended="Example of how to use juggernaut with an observer."/>
9
- <post href="http://ncavig.com/blog/?page_id=8" hash="55450d103d6e2dd609b203ad133d751f" description="Nic’s Notions » Juggernaut Tutorials" tag="juggernaut rails ruby flash plugins server chat" time="2008-08-03T02:26:39Z" others="30" extended="Several juggernaut tutorials."/>
10
- <post href="http://blog.labnotes.org/2008/05/05/distributed-twitter-client-in-20-lines-of-code/" hash="7c2a36292db109b144036a02eb3f46b7" description="Labnotes » Distributed Twitter Client in 20 lines of code" tag="xmpp ruby jabber xmpp4r" time="2008-08-01T18:16:23Z" others="18" extended="Cool little snippet of xmpp goodness to check your buddies status messages."/>
11
- <post href="http://labs.reevoo.com/plugins/beanstalk-messaging" hash="d100c10208acbf5e954320a5577838d9" description="reevoolabs - Beanstalk Messaging" tag="railstips messaging queue rails ruby" time="2008-07-28T02:57:00Z" others="33" extended="Good write up on beanstalk"/>
12
- <post href="http://www.slideshare.net/guest807bb2/rubyfringe?src=embed" hash="c3dc3b940dbe25e39737240b4e1ab071" description="Rockstar Memcached" tag="memcached performance caching ruby rails railstips" time="2008-07-28T02:30:50Z" others="11" extended="Killer presentation on memcached by Tobi of Shopify."/>
13
- <post href="http://www.igvita.com/2008/07/22/unix-signals-for-live-debugging/" hash="288054a38d870b15bdf060ed5c6b2a2e" description="Unix Signals for Live Debugging - igvita.com" tag="ruby signals unix debugging signal railstips" time="2008-07-27T04:53:00Z" others="86" extended="I've known how to kill processes and such but never quite understood kill. Ilya Grigorik explains not only how to send those signals but how to use them in your scripts to change the way they behave on the fly. Very cool."/>
14
- <post href="http://www.rubyinside.com/redcloth-4-released-962.html" hash="b3db9b84940ce550e26a560b83eb2f66" description="RedCloth 4.0 Released: 40x Faster Textile Rendering" tag="textile ruby gems railstips" time="2008-07-27T04:42:29Z" others="20" extended="Redcloth gets some serious love. It's now much faster. Sweet!"/>
15
- <post href="http://code.google.com/p/rubycas-server/" hash="b532ea5933e4eba76c44823e17fecd31" description="rubycas-server - Google Code" tag="sso authentication cas ruby" time="2008-07-22T17:04:09Z" others="132" extended="RubyCAS-Server provides a single sign-on solution for web applications, implementing the server-end of JA-SIG's CAS protocol."/>
16
- <post href="http://reinh.com/blog/2008/07/14/a-thinking-mans-sphinx.html" hash="033d72ac54d8c722618383e0e2aa18ff" description="ReinH — A Thinking Man's Sphinx" tag="rails railstips sphinx search ruby" time="2008-07-17T19:34:59Z" others="142" extended="A guide to the two sphynx plugins: ultrasphynx and thinksphynx and why you should choose one or the other."/>
17
- <post href="http://www.rubyinside.com/ruby-xml-crisis-over-libxml-0-8-0-released-955.html" hash="70490d9786f09db5ba5f7904f88d304c" description="libxml-ruby 0.8.0 Released: Ruby Gets Fast, Reliable XML Processing At Last" tag="libxml xml ruby gems" time="2008-07-17T18:22:23Z" others="55" extended="lib xml gets an update and now it's really fast."/>
18
- <post href="http://github.com/RISCfuture/autumn/tree/master" hash="9b47db4bf59da2009642f4084e3113a2" description="autumn at master — GitHub" tag="irc ruby gems" time="2008-07-17T18:20:19Z" others="18" extended="Easy, fresh, feature-rich IRC bots in Ruby"/>
19
- <post href="http://groups.google.com/group/datamapper/browse_thread/thread/d33fbb20e41fad04" hash="4403898c92b37788f002ad6d79a66b68" description="New Finder Syntax (before 1.0) -" tag="railstips ruby datamapper" time="2008-07-05T20:42:27Z" others="1" extended="really cool idea for conditions in datamapper. even if you don't use datamapper, read this as it's sweet."/>
20
- <post href="http://codeclimber.blogspot.com/2008/06/using-ruby-for-imap-with-gmail.html" hash="33bbf2492beac5fbf1fc167014060067" description="CodeClimber: using Ruby for IMAP with Gmail" tag="email gems gmail google imap rails railstips ruby" time="2008-07-05T20:06:47Z" others="118" extended="how to check gmail using ruby's IMAP libraries. the key is to use the login method instead of the authenticate one."/>
21
- <post href="http://xullicious.blogspot.com/2008/07/updated-curb-multi-interface-patch.html" hash="f95dcc012bdc13bc26bace3ceed10656" description="Xul for thought: Updated curb multi interface patch" tag="curl ruby http" time="2008-07-03T21:52:45Z" others="1" extended="Really cool multi curl stuff to rapidly hit urls."/>
22
- </posts>
23
- <!-- fe04.api.del.ac4.yahoo.net uncompressed/chunked Sat Aug 9 00:20:11 PDT 2008 -->
File without changes
@@ -1,10 +0,0 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <title>Example HTML</title>
5
- </head>
6
-
7
- <body>
8
- <h1>Example</h1>
9
- </body>
10
- </html>
@@ -1,29 +0,0 @@
1
- #!/bin/sh
2
- set -e
3
-
4
- if [ -d "generated" ] ; then
5
- echo >&2 "error: 'generated' directory already exists. Delete it first."
6
- exit 1
7
- fi
8
-
9
- mkdir generated
10
-
11
- # Generate the CA private key and certificate
12
- openssl req -batch -subj '/CN=INSECURE Test Certificate Authority' -newkey rsa:4096 -new -x509 -days 999999 -keyout generated/ca.key -nodes -out generated/ca.crt
13
-
14
- # Create symlinks for ssl_ca_path
15
- openssl generated
16
-
17
- # Generate the server private key and self-signed certificate
18
- openssl req -batch -subj '/CN=localhost' -newkey rsa:4096 -new -x509 -days 999999 -keyout generated/server.key -nodes -out generated/selfsigned.crt
19
-
20
- # Generate certificate signing request with bogus hostname
21
- openssl req -batch -subj '/CN=bogo' -new -key generated/server.key -nodes -out generated/bogushost.csr
22
-
23
- # Sign the certificate requests
24
- openssl x509 -CA generated/ca.crt -CAkey generated/ca.key -set_serial 1 -in generated/selfsigned.crt -out generated/server.crt -clrext -extfile openssl-exts.cnf -extensions cert -days 999999
25
- openssl x509 -req -CA generated/ca.crt -CAkey generated/ca.key -set_serial 1 -in generated/bogushost.csr -out generated/bogushost.crt -clrext -extfile openssl-exts.cnf -extensions cert -days 999999
26
-
27
- # Remove certificate signing requests
28
- rm -f generated/*.csr
29
-
@@ -1,29 +0,0 @@
1
- -----BEGIN CERTIFICATE-----
2
- MIIFCjCCAvKgAwIBAgIBATANBgkqhkiG9w0BAQsFADAuMSwwKgYDVQQDDCNJTlNF
3
- Q1VSRSBUZXN0IENlcnRpZmljYXRlIEF1dGhvcml0eTAgFw0xOTAzMjAyMDI5NTFa
4
- GA80NzU3MDIxMzIwMjk1MVowDzENMAsGA1UEAwwEYm9nbzCCAiIwDQYJKoZIhvcN
5
- AQEBBQADggIPADCCAgoCggIBALavqYkWGfPALQaE23pt55NY/7zGeM7PTA7UthnI
6
- NjLdXU8wHETAJYCLnE8IXLPZVNUfTIi05Y80IdNIXhdK2ZoC+OAqefXCxA/QCBRc
7
- ocFkQVLN0Upv9x28dI/h49/mXtg//zxfkD5bbOuSy6dlTjvPdn6AfiVhTqIhGszB
8
- DKMOLL4NLfq8LS7Usj0KZipscWlj20j5SbwWFKqzzkxm9Kr5qvWH3wFlqSx5e5bz
9
- tH+CEn+Jem1D3tbru2W0uS/ty59xQZJ3Ga+WfrPKSmqUmEj1GveZIbIjkmlnpXT3
10
- vgb6HUSNRglmGQ1SDOOj3qLfoQG9T4rvMS1m4Dco8araEEZJsNZpqouvA+dSluRj
11
- gpfz7BwtsfgF7zenYCtp/QSOU+wVBI8rwM9LE65PMWtehLo2aVUbRZZ55gwmlebO
12
- 2GB6A+ZQk7k2Bvp3U8ob4MZzbjT96aa4uVm8LoaYF9jV4gyfKZ4CB7FC/aYkOhzZ
13
- X6dkV2Y98DfixK5ewmEoKs44q5PQdRwQSp3qMISPu9TaE/2ylRjcBi2FO2dtDnHq
14
- kY+944D1x9OujeFG5qak7s+AlU2bGRwoYjRo9es6vGlIfws1ttkLOsU8HGizMXkt
15
- sZKDja+lS1vnYf790MUS4lI0xZSL3IVs+ihwDJ4/74sf6nZEmerd5S8leZQ5zyaP
16
- BpoNAgMBAAGjUDBOMAwGA1UdEwEB/wQCMAAwHQYDVR0OBBYEFH5EfRhO2HNbUhsB
17
- WRM+F5O1dkYbMB8GA1UdIwQYMBaAFALj11Spg/cQ5epRzUB+cNSHRZ4sMA0GCSqG
18
- SIb3DQEBCwUAA4ICAQDKZ6ifsFWV4xk9uC8vPpP4+Tn1FT1fGIqlfPmUFGxzhdR3
19
- 94p8MAiM2CR93zBJJAwMC8lPYjpDUACGzfGAmt5hIKs72c1E5zvOxw+54EieoKe9
20
- 1isKhJMTtfVqUsga7foZj8XoBv8VscFZOWBFc96vfkwg5vXkl/v8qk227ILKs2U+
21
- Unp1iWT4uY5zofZvwFYKJd3JMAIQ7bkzuOtHJ2r7sCYoHG3B5aVPsA8uNbYC61ri
22
- 5PjAl5eSrluy5tnnbhJCrjtwJI/LF1Tq+le2MEJRt7z/n3rfbvcAlmM+4XOAWAKn
23
- fM5nbT5qfct65HIBaDjX2Kdd4eOSzUD8/XpPmUXyj7ZlQf0WdKKA1QoSLvOdhHW8
24
- sZlWbFBwfXEU199Zd3EF6f3N3yLIAnAGjs8JEITHFma9TRJDXMF4/2Chg5/iI2f9
25
- sQLVvv2zomstVCoOXFsDmVQmdxVO69wW2KFvucFT8DiJIRnL5x1ZIoG5aylHFdaV
26
- LAi6lIluj7ETZwP6tKKOzLHipx7Jr/CafpIcYBzgjODoBgW246v9P2VJtIi7mHus
27
- Cw4HkEzJSm4CZm36OIcMayvFYz0FBts61/GvXGFnglCWRvFZ+n795hoUM4XAuXZA
28
- 0fxMEH/ZCbILy63kqjGaaOaTk2+Yu2DSRccgKVH7IuxV9xE7AgO0JNTGCS5HNg==
29
- -----END CERTIFICATE-----
@@ -1,31 +0,0 @@
1
- -----BEGIN CERTIFICATE-----
2
- MIIFPzCCAyegAwIBAgIUIV37QRfu4LcX78hw64FG5rAnZG8wDQYJKoZIhvcNAQEL
3
- BQAwLjEsMCoGA1UEAwwjSU5TRUNVUkUgVGVzdCBDZXJ0aWZpY2F0ZSBBdXRob3Jp
4
- dHkwIBcNMTkwMzIwMjAyOTI4WhgPNDc1NzAyMTMyMDI5MjhaMC4xLDAqBgNVBAMM
5
- I0lOU0VDVVJFIFRlc3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5MIICIjANBgkqhkiG
6
- 9w0BAQEFAAOCAg8AMIICCgKCAgEA/LOBASLxwrE1i3lhpS3yigbdcSZIoyEBqIF/
7
- yMuWqVKr/l0CDPwlM/iwF0/sToBbFtx0bkKCq7ztURgw1ItYUar+mP+DL8Ku0Fxz
8
- ZVWL3EM1E2vduqJlvbpE6F5I2OU0UC0enSX5xg34vkHSQVGM2VJXNBM6a+0aYxeP
9
- o2KjfFOXnsFNVvlMpg2GNNuHwaUXoOhd26pp35QDsyyAPVtiRfU3idB+Pg+Hp3mI
10
- FJLHZyRXpVmw3hNlhl+Iga/H//x5n99Scr1CQyl8Z8EE5QKpPa9znjsPJNifSFud
11
- a1rBGRDizMfPfn+imW5zXSSFf/2tJnpzP9kaZT5hwXe4HLZbHaoYssOJdXBYDfx9
12
- qdw4yrBKt14z5ZFDjCu7SelDnLtX1aZ/+V2RrkNHge/G54MrKdnAg2CbxeWdrir2
13
- OxlCngzeU0aDuNJczH83054Em/uu3a7xJipuDDOYZe6HTSXHNJgIUtmZhvu07PlO
14
- 3tBLY/VxMhgzUvCVYCH05VoZgkmy21TRFu8mNn/+7HiHt5QGTKEqGdlFGJ4gcPFH
15
- bq2/dNb45hPr6d1iNC4UM5ERTMpU2rvNQQhQwPiS2fzXhE8BwLxfB94T6hnJpDhT
16
- u8tExckzRLfIgvexorSQFvYj2Lj5YjPdIHJq/e/XVSkp6h6H93T7EHycLlTP5HZ2
17
- le6+d4ECAwEAAaNTMFEwHQYDVR0OBBYEFALj11Spg/cQ5epRzUB+cNSHRZ4sMB8G
18
- A1UdIwQYMBaAFALj11Spg/cQ5epRzUB+cNSHRZ4sMA8GA1UdEwEB/wQFMAMBAf8w
19
- DQYJKoZIhvcNAQELBQADggIBAG5PduOpr9ZZbR+tcyQUR1kxoc+vZMYQEi8fQyv9
20
- G8sL+/DRXj8fD0S/4aK+rSXuFMbQpL1njLIUxE2z2cCn6zOsXx1IY9rN5ryLSJad
21
- L4QXrPokNBi+HEGba7NvY98swD8PblUyeJqfi59pFj7nz4EcVhltVvgbYBMZUIPc
22
- IZBhyB7l9QaX5OZMGO1rJy8jxg8ng0vAliz+HQQavu8rNito90vpGvlXr1NQs11H
23
- SO4+lQMb8uuU4wqto+74gkLUNLsnAfAFWpIEV2JG+0SnVVbI2TFjvFiu7P/TTGxQ
24
- MRrzEVQAXRSIBC4JDXMBAeJRc8AUEK/RYg0BGmvkh3aZUIlkAmCFk1OqyuEYoEl+
25
- 2DsH26Glk978W4glHQi3PgKKa7NSvsHSd4BPGG6Vjs7jBh/LcSnT3iH5pHKkI/Tt
26
- sFWUKQ4Yz8DdUR02f890hOdlHG+Hz8DY33fS/Z8WoidMOJM+LHEqT9R4RAJi+puK
27
- 6Z8OTBCCJYMEgPx08swJbe9r7Q98n77ud+qyKPa/5jNJG3JYGSzsqhsyJXzCaQCl
28
- v1qVrzQ+qidO+tcousDMzNZ+AsdnLOGZ+UvKdx+l3kItj4AkIu2fkJb8sC/UP7ar
29
- EswtH8vJb8w03L8K/44Ql0cTDzHNyBJ5q/8xL/2M/L572Y8wmUcVsoPPw6+Js7l/
30
- pSY3
31
- -----END CERTIFICATE-----
@@ -1,52 +0,0 @@
1
- -----BEGIN PRIVATE KEY-----
2
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- W58FiYumaIGf7jfXBz4oUW6YF2Tlm5SYUNCeF7Tnbdz/7vebodWENRMy1qhRB89x
21
- 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
- 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
- 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
- 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
- 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
- fScCxauWkEMx9n6+Mw/TMCG8VEFDc7VWyuuPfQV7vt2vCLbz0gIFlLEIOSSquWet
27
- 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
- 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
- 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
- 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
- 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
- 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
- d+8mUKBzfO7fIksTBkDrSGVLr5oQv/Fqe+8HSdT0hQkCI7Bo7x0OmrTliQwLTphL
34
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
51
- iOi/KEjMxb+mQi4jBIKJq/nRXjglUg==
52
- -----END PRIVATE KEY-----
@@ -1,29 +0,0 @@
1
- -----BEGIN CERTIFICATE-----
2
- MIIFCzCCAvOgAwIBAgIUI1eh28OnE/T/HBS9/6g9f4q3p/0wDQYJKoZIhvcNAQEL
3
- BQAwFDESMBAGA1UEAwwJbG9jYWxob3N0MCAXDTE5MDMyMDIwMjkzN1oYDzQ3NTcw
4
- MjEzMjAyOTM3WjAUMRIwEAYDVQQDDAlsb2NhbGhvc3QwggIiMA0GCSqGSIb3DQEB
5
- AQUAA4ICDwAwggIKAoICAQC2r6mJFhnzwC0GhNt6beeTWP+8xnjOz0wO1LYZyDYy
6
- 3V1PMBxEwCWAi5xPCFyz2VTVH0yItOWPNCHTSF4XStmaAvjgKnn1wsQP0AgUXKHB
7
- ZEFSzdFKb/cdvHSP4ePf5l7YP/88X5A+W2zrksunZU47z3Z+gH4lYU6iIRrMwQyj
8
- Diy+DS36vC0u1LI9CmYqbHFpY9tI+Um8FhSqs85MZvSq+ar1h98BZakseXuW87R/
9
- ghJ/iXptQ97W67tltLkv7cufcUGSdxmvln6zykpqlJhI9Rr3mSGyI5JpZ6V0974G
10
- +h1EjUYJZhkNUgzjo96i36EBvU+K7zEtZuA3KPGq2hBGSbDWaaqLrwPnUpbkY4KX
11
- 8+wcLbH4Be83p2Araf0EjlPsFQSPK8DPSxOuTzFrXoS6NmlVG0WWeeYMJpXmzthg
12
- egPmUJO5Ngb6d1PKG+DGc240/emmuLlZvC6GmBfY1eIMnymeAgexQv2mJDoc2V+n
13
- ZFdmPfA34sSuXsJhKCrOOKuT0HUcEEqd6jCEj7vU2hP9spUY3AYthTtnbQ5x6pGP
14
- veOA9cfTro3hRuampO7PgJVNmxkcKGI0aPXrOrxpSH8LNbbZCzrFPBxoszF5LbGS
15
- g42vpUtb52H+/dDFEuJSNMWUi9yFbPoocAyeP++LH+p2RJnq3eUvJXmUOc8mjwaa
16
- DQIDAQABo1MwUTAdBgNVHQ4EFgQUfkR9GE7Yc1tSGwFZEz4Xk7V2RhswHwYDVR0j
17
- BBgwFoAUfkR9GE7Yc1tSGwFZEz4Xk7V2RhswDwYDVR0TAQH/BAUwAwEB/zANBgkq
18
- hkiG9w0BAQsFAAOCAgEAKMO0HD503riWKRaikCFoA4n7LMUWaTdvZR/CZ/ZX0HJC
19
- 1PwBwk67+jLfjDa82cPH2yoxrK4PG21hO/d2+mwgDUh4jzHuJyPAMO45Hhq9zr8K
20
- SOQ+CmS7UwJZtLqVAwrxEUjRFpKeBEenNAtkrsTsv/JIp3iyu2FqVAq5mh1X/gDH
21
- CsByht2QaDBpZuTXhD0S6miFg21VT2aG1G55pUljOb/LjqEqxqWDZonsOMj8buTo
22
- NtAOCjxKIKKJfIz7hFDy+9Kecy/rmidQnRiNBm1dOjN9gk23FPu9EOBriL1jigYJ
23
- 3ws6WlgCQhhsTE/mCPyfxHA+8+GdaCc/L4qSNnxzlqN9wuxCpKQvrT2kTXIcjqVB
24
- QZz/Ii8Y2ZQR9paY/xCov/mri97uXrE4L2A1CodjcO7UCvswXNHrxgkOgmknb5WC
25
- jwbPCSpiYqnjtPvXWj2wygDX3456zZ2J7H7aEUAmOJfaL/xZpxJmejHtYedYINPZ
26
- /Zsk1bJTTuStXCvCgIiHIb9ILD7mq2LUDAh+RxANtqW2OAUzvqD/Xkg6zl6utQwJ
27
- UbIN1h2o0hl3qHZztVTaHRaBLgaPObhe2kFV9TioAbnJ1t04s4Xjw6ZFT3xhaySi
28
- mt5SBtT6qTkMohfYzZOe5+TPIMw87a0J3NwQNLl8kvRnyg00gBY4VU+l6MVTzYs=
29
- -----END CERTIFICATE-----
@@ -1,30 +0,0 @@
1
- -----BEGIN CERTIFICATE-----
2
- MIIFDzCCAvegAwIBAgIBATANBgkqhkiG9w0BAQsFADAuMSwwKgYDVQQDDCNJTlNF
3
- Q1VSRSBUZXN0IENlcnRpZmljYXRlIEF1dGhvcml0eTAgFw0xOTAzMjAyMDI5NTFa
4
- GA80NzU3MDIxMzIwMjk1MVowFDESMBAGA1UEAwwJbG9jYWxob3N0MIICIjANBgkq
5
- hkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAtq+piRYZ88AtBoTbem3nk1j/vMZ4zs9M
6
- DtS2Gcg2Mt1dTzAcRMAlgIucTwhcs9lU1R9MiLTljzQh00heF0rZmgL44Cp59cLE
7
- D9AIFFyhwWRBUs3RSm/3Hbx0j+Hj3+Ze2D//PF+QPlts65LLp2VOO892foB+JWFO
8
- oiEazMEMow4svg0t+rwtLtSyPQpmKmxxaWPbSPlJvBYUqrPOTGb0qvmq9YffAWWp
9
- LHl7lvO0f4ISf4l6bUPe1uu7ZbS5L+3Ln3FBkncZr5Z+s8pKapSYSPUa95khsiOS
10
- aWeldPe+BvodRI1GCWYZDVIM46Peot+hAb1Piu8xLWbgNyjxqtoQRkmw1mmqi68D
11
- 51KW5GOCl/PsHC2x+AXvN6dgK2n9BI5T7BUEjyvAz0sTrk8xa16EujZpVRtFlnnm
12
- DCaV5s7YYHoD5lCTuTYG+ndTyhvgxnNuNP3ppri5WbwuhpgX2NXiDJ8pngIHsUL9
13
- piQ6HNlfp2RXZj3wN+LErl7CYSgqzjirk9B1HBBKneowhI+71NoT/bKVGNwGLYU7
14
- Z20OceqRj73jgPXH066N4UbmpqTuz4CVTZsZHChiNGj16zq8aUh/CzW22Qs6xTwc
15
- aLMxeS2xkoONr6VLW+dh/v3QxRLiUjTFlIvchWz6KHAMnj/vix/qdkSZ6t3lLyV5
16
- lDnPJo8Gmg0CAwEAAaNQME4wDAYDVR0TAQH/BAIwADAdBgNVHQ4EFgQUfkR9GE7Y
17
- c1tSGwFZEz4Xk7V2RhswHwYDVR0jBBgwFoAUAuPXVKmD9xDl6lHNQH5w1IdFniww
18
- DQYJKoZIhvcNAQELBQADggIBAKlXVHoSPWaCh5nDbfe5fqfBxk4D0UV0a4t9tynG
19
- Lp3JkMZKwv5nY97l2b2WRPuYQVk9Dg9HISB+DB3ID9kMfxul3Nf/E4lBrF+VQkqO
20
- pw0VexiZt4XzWhzx5ZxKDKarmIa/WZms9AuGCa3kwtCopwTrq70AL6aIeJg93FJo
21
- qkisyvSX7EUg2i9vgV/QGth37WiJpcrcdUQFfXqjaID2gk+EfC6fNQP3eA5eTj9T
22
- Nn9Jssnkhu4EhVS+SiDKdI5F/xyAqZAyrkphZAztUtrcqUs3CPLFjI3c3bpU1LPF
23
- 9yCBajuLoubEtaTrkJGeney1CgEW3G2nca69LfCuJbwlIEKiAyw0t8/rBu4MeJy+
24
- G6PO7py0xyOxFHQ4nmilEbeleSJfd2JssjUvDQAdS1K+MnQVWNk+aoF3fFjgBB4a
25
- MR7A6RYZ9fMjzJhgdA2Ucc5pO9BN/bIttkF4x7AHeV8WUrdCMC466fAdq4W4Tazh
26
- uMsQBqt7J9M28K2PICp3qUEMfY53tQZX39ablTSe/ZULTfjTG+36VPs6JLBCu9TV
27
- yPL0or3XqiFMUVxW2AN3uAW1LrklUavvJxGtq0h3DEA0e6KgFVWyP1GH9z2AMuuJ
28
- r2sqQdWajjDnX7A+irqMoXxpq5ZjMBZ+AZFB5VOcffVdr71p69EhG8snY33DjmUe
29
- kIdU
30
- -----END CERTIFICATE-----
@@ -1,52 +0,0 @@
1
- -----BEGIN PRIVATE KEY-----
2
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- mBfY1eIMnymeAgexQv2mJDoc2V+nZFdmPfA34sSuXsJhKCrOOKuT0HUcEEqd6jCE
11
- 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
- OrxpSH8LNbbZCzrFPBxoszF5LbGSg42vpUtb52H+/dDFEuJSNMWUi9yFbPoocAye
13
- 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
- +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
- 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
- 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
- la8Qa+oR7DOJxH//lTjIj/x1BDPHT3gxjUFc6n3s82tGOVA70XjmG++9nmJMEYUm
18
- 9Qm4Iifo3CQEzd4hBxyktn3Zc6UGK6baUY59HZnTiev8VYJ4eLGMU+QfEypU9woh
19
- jF7fYgV0pmplA5uvyu1UHc2bqmQJNkyiSKf+kQn+Ooxg3qZ6PP4jMh/a3ma2Aq9b
20
- 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
- 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
- XPlNpnPDeFsVY36gtchQSCv4jWVBoTo31zdp49lywB7jeBLokePjVE9Xpp1RFxLm
23
- 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
- 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
- kCtmvPEDiFYhIUwIF1rs2wP87Gw8V2U/apu2wB5m1AwMNCAFOjL7zWjaXoxvYsnL
26
- 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
- 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
- 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
- 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
- P1aIi0UkwcXrvw/Xi8rZJinRqozOyjnXAi1Z7pi29OR+swWwaBSYP2SNBnVIrq6P
31
- wZdlIALdNbEU2lVcilzh5DiorIvbwW/a24V2RYeNEA+tWll9IMvLGclDJ1qQPFOE
32
- 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
- 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
- mAqtpGT2hcz44tTsfUNKWSZpYexf1WQfsZUUwshCLQc2QSVaCjY/DcpCrERoqxho
35
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- rOv/VMlT8C6hcA3SbFLHblRsNHeC3aVdYb8SlnnA9ND8O3orbWLeyGO6aH2WHdCt
46
- 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
- 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
- dCcdmHiWzFXob4yTKRcwNku44JoxWRA/pzSft/H5ha4UTwWxBPaIiDvvhsNX6GRU
49
- xqN8ZD5d9FH3Q4KJa5NI0j90gW6YbD8wnzSWcbOF1AqosjaZ/om9aT3eIYe6bhEX
50
- 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
51
- ISDbj3Gvk5Gx42y1LbTSnVg8SHm4Vw==
52
- -----END PRIVATE KEY-----
@@ -1,9 +0,0 @@
1
- [ca]
2
- basicConstraints=critical,CA:true
3
- subjectKeyIdentifier=hash
4
- authorityKeyIdentifier=keyid:always,issuer:always
5
-
6
- [cert]
7
- basicConstraints=critical,CA:false
8
- subjectKeyIdentifier=hash
9
- authorityKeyIdentifier=keyid,issuer
Binary file
@@ -1,2 +0,0 @@
1
- "name","url","id","description","protected","screen_name","followers_count","profile_image_url","location"
2
- "Magic 8 Bot",,"17656026","ask me a question","false","magic8bot","90","http://s3.amazonaws.com/twitter_production/profile_images/65565851/8ball_large_normal.jpg",
@@ -1 +0,0 @@
1
- [{"user":{"followers_count":1,"description":null,"url":null,"profile_image_url":"http:\/\/static.twitter.com\/images\/default_profile_normal.png","protected":false,"location":"Opera Plaza, California","screen_name":"Pyk","name":"Pyk","id":"7694602"},"text":"@lapilofu If you need a faster transfer, target disk mode should work too :)","truncated":false,"favorited":false,"in_reply_to_user_id":6128642,"created_at":"Sat Dec 06 21:29:14 +0000 2008","source":"twitterrific","in_reply_to_status_id":1042497164,"id":"1042500587"},{"user":{"followers_count":278,"description":"しがないプログラマ\/とりあえず宮子は俺の嫁\u2026いや、娘だ!\/Delphi&amp;Pythonプログラマ修行中\/bot製作にハマりつつある。三つほど製作&amp;構想中\/[eof]","url":"http:\/\/logiq.orz.hm\/","profile_image_url":"http:\/\/s3.amazonaws.com\/twitter_production\/profile_images\/59588711\/l_ワ_l↑_normal.png","protected":false,"location":"ひだまり荘202号室","screen_name":"feiz","name":"azkn3","id":"14310520"},"text":"@y_benjo ちょー遅レスですがただのはだいろすぎる・・・ ( ll ワ ll )","truncated":false,"favorited":false,"in_reply_to_user_id":8428752,"created_at":"Sat Dec 06 21:29:14 +0000 2008","source":"twit","in_reply_to_status_id":1042479758,"id":"1042500586"},{"user":{"followers_count":1233,"description":"&quot;to understand one life you must swallow the world.&quot; I run refine+focus: a marketing agency working w\/ brands, media and VCs. http:\/\/tinyurl.com\/63mrn","url":"http:\/\/www.quiverandquill.com","profile_image_url":"http:\/\/s3.amazonaws.com\/twitter_production\/profile_images\/53684650\/539059005_2a3b462d20_normal.jpg","protected":false,"location":"Cambridge, MA ","screen_name":"quiverandquill","name":"zach Braiker","id":"6845872"},"text":"@18percentgrey I didn't see Damon on Palin. i'll look on youtube. thx .Z","truncated":false,"favorited":false,"in_reply_to_user_id":10529932,"created_at":"Sat Dec 06 21:29:12 +0000 2008","source":"web","in_reply_to_status_id":1042499331,"id":"1042500584"},{"user":{"followers_count":780,"description":"Mein Blog ist unter http:\/\/blog.helmschrott.de zu finden. Unter http:\/\/blogalm.de kannst Du Deinen Blog eintragen!","url":"http:\/\/helmschrott.de\/blog","profile_image_url":"http:\/\/s3.amazonaws.com\/twitter_production\/profile_images\/60997686\/avatar-250_normal.jpg","protected":false,"location":"Münchner Straße","screen_name":"helmi","name":"Frank Helmschrott","id":"867641"},"text":"@gigold auch mist oder?ich glaub ich fangs jetzt dann einfach mal an - wird schon vernünftige update-prozesse geben.","truncated":false,"favorited":false,"in_reply_to_user_id":959931,"created_at":"Sat Dec 06 21:29:11 +0000 2008","source":"twhirl","in_reply_to_status_id":1042500095,"id":"1042500583"},{"user":{"followers_count":63,"description":"Liberation from Misconceptions","url":"http:\/\/sexorcism.blogspot.com","profile_image_url":"http:\/\/s3.amazonaws.com\/twitter_production\/profile_images\/63897302\/having-sex-on-bed_normal.jpg","protected":false,"location":"USA","screen_name":"Sexorcism","name":"Sexorcism","id":"16929435"},"text":"@thursdays_child someecards might.","truncated":false,"favorited":false,"in_reply_to_user_id":14484963,"created_at":"Sat Dec 06 21:29:13 +0000 2008","source":"twittergadget","in_reply_to_status_id":1042499777,"id":"1042500581"},{"user":{"followers_count":106,"description":"Researcher. Maître de Conférences - Sémiologue - Spécialiste des médias audiovisuels. Analyste des médias, de la télévision et de la presse people (gossip). ","url":"http:\/\/semioblog.over-blog.org\/","profile_image_url":"http:\/\/s3.amazonaws.com\/twitter_production\/profile_images\/57988482\/Thomas_et_Vic_pour_promo_2_058_normal.JPG","protected":false,"location":"France","screen_name":"semioblog","name":"Virginie Spies","id":"10078802"},"text":"@richardvonstern on reparle de tout cela bientôt, si vous voulez vraiment m'aider","truncated":false,"favorited":false,"in_reply_to_user_id":15835317,"created_at":"Sat Dec 06 21:29:13 +0000 2008","source":"twitterrific","in_reply_to_status_id":1042357537,"id":"1042500580"},{"user":{"followers_count":26,"description":"","url":"","profile_image_url":"http:\/\/s3.amazonaws.com\/twitter_production\/profile_images\/63461084\/November2ndpics_125_normal.jpg","protected":false,"location":"Louisville, Ky","screen_name":"scrapaunt","name":"scrapaunt","id":"16660671"},"text":"@NKOTB4LIFE Hope your neck feels better after your nap.","truncated":false,"favorited":false,"in_reply_to_user_id":16041403,"created_at":"Sat Dec 06 21:29:10 +0000 2008","source":"web","in_reply_to_status_id":1042450159,"id":"1042500579"},{"user":{"followers_count":245,"description":"Maui HI Real Estate Salesperson specializing in off the grid lifestyle","url":"http:\/\/www.eastmaui.com","profile_image_url":"http:\/\/s3.amazonaws.com\/twitter_production\/profile_images\/59558480\/face2_normal.jpg","protected":false,"location":"north shore maui hawaii","screen_name":"mauihunter","name":"Georgina M. Hunter ","id":"16161708"},"text":"@BeeRealty http:\/\/twitpic.com\/qpog - It's a good safe place to lay - no dogs up there.","truncated":false,"favorited":false,"in_reply_to_user_id":15781063,"created_at":"Sat Dec 06 21:29:13 +0000 2008","source":"twitpic","in_reply_to_status_id":1042497815,"id":"1042500578"},{"user":{"followers_count":95,"description":"","url":"","profile_image_url":"http:\/\/s3.amazonaws.com\/twitter_production\/profile_images\/66581657\/nose-pick_normal.jpg","protected":false,"location":"zoetermeer","screen_name":"GsKlukkluk","name":"Klukkluk","id":"14218588"},"text":"twit \/off zalige nacht!","truncated":false,"favorited":false,"in_reply_to_user_id":null,"created_at":"Sat Dec 06 21:29:14 +0000 2008","source":"web","in_reply_to_status_id":null,"id":"1042500577"},{"user":{"followers_count":33,"description":"Living in denial that I live in a podunk town, I spend my time in search of good music in LA. Pure city-dweller and puma. That's about it.","url":"","profile_image_url":"http:\/\/s3.amazonaws.com\/twitter_production\/profile_images\/56024131\/Photo_145_normal.jpg","protected":false,"location":"Santa Barbara, CA","screen_name":"pumainthemvmt","name":"Valerie","id":"15266837"},"text":"I love my parents with all my heart, but sometimes they make me want to scratch my eyes out.","truncated":false,"favorited":false,"in_reply_to_user_id":null,"created_at":"Sat Dec 06 21:29:10 +0000 2008","source":"sms","in_reply_to_status_id":null,"id":"1042500576"},{"user":{"followers_count":99,"description":"大学生ですよ。Ad[es]er。趣味で辭書とか編輯してゐます。JavaScriptでゲーム書きたいけど時間ねえ。","url":"http:\/\/greengablez.net\/diary\/","profile_image_url":"http:\/\/s3.amazonaws.com\/twitter_production\/profile_images\/60269370\/zonu_1_normal.gif","protected":false,"location":"Sapporo, Hokkaido, Japan","screen_name":"tadsan","name":"船越次男","id":"11637282"},"text":"リトル・プリンセスとだけ書かれたら小公女を連想するだろ、常識的に考へて。","truncated":false,"favorited":false,"in_reply_to_user_id":null,"created_at":"Sat Dec 06 21:29:11 +0000 2008","source":"tiitan","in_reply_to_status_id":null,"id":"1042500575"},{"user":{"followers_count":68,"description":"I love all things beer. What goes better with beer than Porn, nothig I tell ya nothing.","url":"","profile_image_url":"http:\/\/s3.amazonaws.com\/twitter_production\/profile_images\/66479069\/Picture_9_normal.jpg","protected":false,"location":"Durant","screen_name":"Jeffporn","name":"Jeffporn","id":"14065262"},"text":"At Lefthand having milk stout on cask - Photo: http:\/\/bkite.com\/02PeH","truncated":false,"favorited":false,"in_reply_to_user_id":null,"created_at":"Sat Dec 06 21:29:10 +0000 2008","source":"brightkite","in_reply_to_status_id":null,"id":"1042500574"},{"user":{"followers_count":7,"description":"","url":"http:\/\/www.PeteKinser.com","profile_image_url":"http:\/\/s3.amazonaws.com\/twitter_production\/profile_images\/65572489\/PeteKinser-close_normal.jpg","protected":false,"location":"Denver, CO","screen_name":"pkinser","name":"pkinser","id":"15570525"},"text":"Snooze is where it's at for brunch if you're ever in Denver. Yum.","truncated":false,"favorited":false,"in_reply_to_user_id":null,"created_at":"Sat Dec 06 21:29:11 +0000 2008","source":"fring","in_reply_to_status_id":null,"id":"1042500572"},{"user":{"followers_count":75,"description":"I am a gamer and this is my gaming account, check out my other Twitter account for non-gaming tweets.","url":"http:\/\/twitter.com\/Nailhead","profile_image_url":"http:\/\/s3.amazonaws.com\/twitter_production\/profile_images\/56881055\/nailhead_184x184_normal.jpg","protected":false,"location":"Huntsville, AL","screen_name":"Nailhead_Gamer","name":"Eric Fullerton","id":"15487663"},"text":"Completed the epic quest line for the Death Knight. Now what? Outlands? I wish to skip Outlands please, thanks.","truncated":false,"favorited":false,"in_reply_to_user_id":null,"created_at":"Sat Dec 06 21:29:13 +0000 2008","source":"twitterfox","in_reply_to_status_id":null,"id":"1042500571"},{"user":{"followers_count":111,"description":"","url":"http:\/\/www.ns-tech.com\/blog\/geldred.nsf","profile_image_url":"http:\/\/s3.amazonaws.com\/twitter_production\/profile_images\/63865052\/brak2_normal.JPG","protected":false,"location":"Cleveland OH","screen_name":"geldred","name":"geldred","id":"14093394"},"text":"I'm at Target Store - Avon OH (35830 Detroit Rd, Avon, OH 44011, USA) - http:\/\/bkite.com\/02PeI","truncated":false,"favorited":false,"in_reply_to_user_id":null,"created_at":"Sat Dec 06 21:29:13 +0000 2008","source":"brightkite","in_reply_to_status_id":null,"id":"1042500570"},{"user":{"followers_count":16,"description":"Soundtrack Composer\/Musician\/Producer","url":"http:\/\/www.reverbnation\/musicbystratos","profile_image_url":"http:\/\/s3.amazonaws.com\/twitter_production\/profile_images\/63311865\/logo-stratos_normal.png","protected":false,"location":"Grove City, Ohio 43123","screen_name":"Stratos","name":"Bryan K Borgman","id":"756062"},"text":"is reminded how beautiful the world can be when it's blanketed by clean white snow.","truncated":false,"favorited":false,"in_reply_to_user_id":null,"created_at":"Sat Dec 06 21:29:13 +0000 2008","source":"web","in_reply_to_status_id":null,"id":"1042500569"},{"user":{"followers_count":7,"description":null,"url":null,"profile_image_url":"http:\/\/static.twitter.com\/images\/default_profile_normal.png","protected":false,"location":null,"screen_name":"garrettromine","name":"garrettromine","id":"16120885"},"text":"Go Julio","truncated":false,"favorited":false,"in_reply_to_user_id":null,"created_at":"Sat Dec 06 21:29:10 +0000 2008","source":"sms","in_reply_to_status_id":null,"id":"1042500568"},{"user":{"followers_count":111,"description":"WHAT IS HAPPNING IN THE WORLD??? SEE DIFFERENT NEWS STORIES FROM MANY SOURCES.","url":"http:\/\/henrynews.wetpaint.com","profile_image_url":"http:\/\/s3.amazonaws.com\/twitter_production\/profile_images\/65118112\/2008-election-map-nytimes_normal.png","protected":false,"location":"","screen_name":"HenryNews","name":"HenryNews","id":"17398510"},"text":"Svindal completes double at Beaver Creek: Read full story for latest details. http:\/\/tinyurl.com\/6qugub","truncated":false,"favorited":false,"in_reply_to_user_id":null,"created_at":"Sat Dec 06 21:29:13 +0000 2008","source":"twitterfeed","in_reply_to_status_id":null,"id":"1042500567"},{"user":{"followers_count":34,"description":"I am a man of many bio's, scott bio's!","url":"http:\/\/flickr.com\/photos\/giantcandy","profile_image_url":"http:\/\/s3.amazonaws.com\/twitter_production\/profile_images\/25680382\/Icon_for_Twitter_normal.jpg","protected":false,"location":"Loves Park, IL, USA","screen_name":"Pychobj2001","name":"William Boehm Jr","id":"809103"},"text":"I have a 3rd break light and the license plate lights are out...just replacing 1 plate light...abide by law just enough","truncated":false,"favorited":false,"in_reply_to_user_id":null,"created_at":"Sat Dec 06 21:29:10 +0000 2008","source":"twidroid","in_reply_to_status_id":null,"id":"1042500566"},{"user":{"followers_count":61,"description":"Wife. Designer. Green Enthusiast. New Homeowner. Pet Owner. Internet Addict.","url":"http:\/\/confessionsofadesignjunkie.blogspot.com\/","profile_image_url":"http:\/\/s3.amazonaws.com\/twitter_production\/profile_images\/66044439\/n27310459_33432814_6743-1_normal.jpg","protected":false,"location":"Indiana","screen_name":"smquaseb","name":"Stacy","id":"15530992"},"text":"@Indygardener We still had a few people shoveling in our neighborhood - I didn't think it was enough to shovel, but keeps the kids busy.","truncated":false,"favorited":false,"in_reply_to_user_id":12811482,"created_at":"Sat Dec 06 21:29:13 +0000 2008","source":"web","in_reply_to_status_id":1042488558,"id":"1042500565"}]
@@ -1,403 +0,0 @@
1
- <statuses type="array">
2
- <status>
3
- <created_at>Sun Dec 07 00:36:16 +0000 2008</created_at>
4
- <id>1042729116</id>
5
- <text>@sebbo Outlook not so good</text>
6
- <source>web</source>
7
- <truncated>false</truncated>
8
- <in_reply_to_status_id>1042716367</in_reply_to_status_id>
9
- <in_reply_to_user_id>2989541</in_reply_to_user_id>
10
- <favorited>false</favorited>
11
- <user>
12
- <id>17656026</id>
13
- <name>Magic 8 Bot</name>
14
- <screen_name>magic8bot</screen_name>
15
- <description>ask me a question</description>
16
- <location></location>
17
- <profile_image_url>http://s3.amazonaws.com/twitter_production/profile_images/65565851/8ball_large_normal.jpg</profile_image_url>
18
- <url></url>
19
- <protected>false</protected>
20
- <followers_count>90</followers_count>
21
- </user>
22
- </status><status>
23
- <created_at>Sun Dec 07 00:36:14 +0000 2008</created_at>
24
- <id>1042729115</id>
25
- <text>Azdel Slade :friends from midian city http://bloghud.com/id/27312</text>
26
- <source>web</source>
27
- <truncated>false</truncated>
28
- <in_reply_to_status_id />
29
- <in_reply_to_user_id />
30
- <favorited>false</favorited>
31
- <user>
32
- <id>801094</id>
33
- <name>BlogHUD</name>
34
- <screen_name>bloghud</screen_name>
35
- <description />
36
- <location />
37
- <profile_image_url>http://s3.amazonaws.com/twitter_production/profile_images/25235272/bloghud_twitter_normal.jpg</profile_image_url>
38
- <url />
39
- <protected>false</protected>
40
- <followers_count>313</followers_count>
41
- </user>
42
- </status><status>
43
- <created_at>Sun Dec 07 00:36:14 +0000 2008</created_at>
44
- <id>1042729114</id>
45
- <text>Reading: &quot;The Reckoning - Debt Watchdogs - Tamed or Caught Napping? - Series - NYTimes.com&quot; ( http://tinyurl.com/5754s6 )</text>
46
- <source>twitthat</source>
47
- <truncated>false</truncated>
48
- <in_reply_to_status_id />
49
- <in_reply_to_user_id />
50
- <favorited>false</favorited>
51
- <user>
52
- <id>3512101</id>
53
- <name>bill</name>
54
- <screen_name>niubi</screen_name>
55
- <description>in beijing learning socialism 2 prepare 4 return 2 us</description>
56
- <location>beijing</location>
57
- <profile_image_url>http://s3.amazonaws.com/twitter_production/profile_images/53292616/realtwitterers_normal.jpg</profile_image_url>
58
- <url></url>
59
- <protected>false</protected>
60
- <followers_count>710</followers_count>
61
- </user>
62
- </status><status>
63
- <created_at>Sun Dec 07 00:36:14 +0000 2008</created_at>
64
- <id>1042729113</id>
65
- <text>Fianlly done and headed home!</text>
66
- <source>sms</source>
67
- <truncated>false</truncated>
68
- <in_reply_to_status_id />
69
- <in_reply_to_user_id />
70
- <favorited>false</favorited>
71
- <user>
72
- <id>13186842</id>
73
- <name>Okthirddayfan</name>
74
- <screen_name>Okthirddayfan</screen_name>
75
- <description></description>
76
- <location>Oklahoma!</location>
77
- <profile_image_url>http://s3.amazonaws.com/twitter_production/profile_images/61414367/mecropped_normal.jpg</profile_image_url>
78
- <url>http://thirddaypix.blogspot.com/</url>
79
- <protected>false</protected>
80
- <followers_count>68</followers_count>
81
- </user>
82
- </status><status>
83
- <created_at>Sun Dec 07 00:36:16 +0000 2008</created_at>
84
- <id>1042729112</id>
85
- <text>Adobe Flashplayer 10 and Debug versions: http://www.adobe.com/support/flashplayer/downloads.html</text>
86
- <source>toro</source>
87
- <truncated>false</truncated>
88
- <in_reply_to_status_id />
89
- <in_reply_to_user_id />
90
- <favorited>false</favorited>
91
- <user>
92
- <id>15243380</id>
93
- <name>cbrueggenolte</name>
94
- <screen_name>cbrueggenolte</screen_name>
95
- <description>27, Male, Mac Geek, Developer Java &amp;amp; Flex &amp;amp; Air</description>
96
- <location>Aachen</location>
97
- <profile_image_url>http://s3.amazonaws.com/twitter_production/profile_images/55929263/214508011845f026bfd407c_normal.jpg</profile_image_url>
98
- <url>http://my.opera.com/carstenbrueggenolte</url>
99
- <protected>false</protected>
100
- <followers_count>16</followers_count>
101
- </user>
102
- </status><status>
103
- <created_at>Sun Dec 07 00:36:14 +0000 2008</created_at>
104
- <id>1042729111</id>
105
- <text>Done and done.</text>
106
- <source>twitterrific</source>
107
- <truncated>false</truncated>
108
- <in_reply_to_status_id />
109
- <in_reply_to_user_id />
110
- <favorited>false</favorited>
111
- <user>
112
- <id>10978752</id>
113
- <name>Sergey Safonov</name>
114
- <screen_name>iron_Lung</screen_name>
115
- <description>I have my fingers in many pies.</description>
116
- <location>Moscow</location>
117
- <profile_image_url>http://s3.amazonaws.com/twitter_production/profile_images/57841057/eat38_normal.gif</profile_image_url>
118
- <url>http://www.flickr.com/photos/iron_Lung</url>
119
- <protected>false</protected>
120
- <followers_count>11</followers_count>
121
- </user>
122
- </status><status>
123
- <created_at>Sun Dec 07 00:36:14 +0000 2008</created_at>
124
- <id>1042729110</id>
125
- <text>Veja a tabela de preços do Acquaplay da Tecnisa aqui:http://tinyurl.com/acquaplaypreco</text>
126
- <source>web</source>
127
- <truncated>false</truncated>
128
- <in_reply_to_status_id />
129
- <in_reply_to_user_id />
130
- <favorited>false</favorited>
131
- <user>
132
- <id>13735402</id>
133
- <name>Tecnisa S.A</name>
134
- <screen_name>Tecnisa</screen_name>
135
- <description>Mais construtora por m2</description>
136
- <location>Faria Lima, 3144 - SP</location>
137
- <profile_image_url>http://s3.amazonaws.com/twitter_production/profile_images/56572222/logo_normal.jpg</profile_image_url>
138
- <url>http://www.tecnisa.com.br</url>
139
- <protected>false</protected>
140
- <followers_count>77</followers_count>
141
- </user>
142
- </status><status>
143
- <created_at>Sun Dec 07 00:36:16 +0000 2008</created_at>
144
- <id>1042729108</id>
145
- <text>devin harris has the flu. always have the memory of jordan scoring 50 on the knicks at the garden with the flu</text>
146
- <source>web</source>
147
- <truncated>false</truncated>
148
- <in_reply_to_status_id />
149
- <in_reply_to_user_id />
150
- <favorited>false</favorited>
151
- <user>
152
- <id>17930773</id>
153
- <name>24 Seconds to Shoot</name>
154
- <screen_name>NBA24sts</screen_name>
155
- <description>NBA handicapping insight and analysis.</description>
156
- <location>las vegas</location>
157
- <profile_image_url>http://s3.amazonaws.com/twitter_production/profile_images/66593862/fresno_normal.jpg</profile_image_url>
158
- <url></url>
159
- <protected>false</protected>
160
- <followers_count>1</followers_count>
161
- </user>
162
- </status><status>
163
- <created_at>Sun Dec 07 00:36:16 +0000 2008</created_at>
164
- <id>1042729105</id>
165
- <text>At Brandon and Shannon's holiday party..</text>
166
- <source>twitterberry</source>
167
- <truncated>false</truncated>
168
- <in_reply_to_status_id />
169
- <in_reply_to_user_id />
170
- <favorited>false</favorited>
171
- <user>
172
- <id>5388602</id>
173
- <name>Mike J. (Telligent)</name>
174
- <screen_name>mjamrst</screen_name>
175
- <description>Video Game Account Manager</description>
176
- <location>Palo Alto, CA</location>
177
- <profile_image_url>http://s3.amazonaws.com/twitter_production/profile_images/66375174/Thanksgiving_11272008-048_normal.jpg</profile_image_url>
178
- <url>http://www.telligent.com</url>
179
- <protected>false</protected>
180
- <followers_count>225</followers_count>
181
- </user>
182
- </status><status>
183
- <created_at>Sun Dec 07 00:36:13 +0000 2008</created_at>
184
- <id>1042729104</id>
185
- <text>Xinhua: Forty percent of Australian PM office' staff quit : CANBERRA, Dec. 7 (Xinhua) -- Only.. http://tinyurl.com/5gwotd</text>
186
- <source>twitterfeed</source>
187
- <truncated>false</truncated>
188
- <in_reply_to_status_id />
189
- <in_reply_to_user_id />
190
- <favorited>false</favorited>
191
- <user>
192
- <id>11566502</id>
193
- <name>Headline News</name>
194
- <screen_name>headlinenews</screen_name>
195
- <description></description>
196
- <location></location>
197
- <profile_image_url>http://s3.amazonaws.com/twitter_production/profile_images/41784602/1890_wires_normal.jpg</profile_image_url>
198
- <url></url>
199
- <protected>false</protected>
200
- <followers_count>575</followers_count>
201
- </user>
202
- </status><status>
203
- <created_at>Sun Dec 07 00:36:13 +0000 2008</created_at>
204
- <id>1042729101</id>
205
- <text>@hilarycassman soo funnny</text>
206
- <source>sms</source>
207
- <truncated>false</truncated>
208
- <in_reply_to_status_id>1042725825</in_reply_to_status_id>
209
- <in_reply_to_user_id>17644455</in_reply_to_user_id>
210
- <favorited>false</favorited>
211
- <user>
212
- <id>17887548</id>
213
- <name>katieballss</name>
214
- <screen_name>katieballss</screen_name>
215
- <description></description>
216
- <location></location>
217
- <profile_image_url>http://s3.amazonaws.com/twitter_production/profile_images/66523737/th_Photo87_normal.jpg</profile_image_url>
218
- <url>http://www.myspace.com/xxpeachxx101</url>
219
- <protected>false</protected>
220
- <followers_count>23</followers_count>
221
- </user>
222
- </status><status>
223
- <created_at>Sun Dec 07 00:36:13 +0000 2008</created_at>
224
- <id>1042729100</id>
225
- <text>d'ora in poi, oltre al ferragosto, odiera' anche il natale e tutto il mese che ci gira intorno.. =.=''</text>
226
- <source>mobile</source>
227
- <truncated>false</truncated>
228
- <in_reply_to_status_id />
229
- <in_reply_to_user_id />
230
- <favorited>false</favorited>
231
- <user>
232
- <id>9719482</id>
233
- <name>trotto</name>
234
- <screen_name>trotto</screen_name>
235
- <description>sociologo di formazione... uno dei tanti attivisti! :)</description>
236
- <location>Fano - Italy</location>
237
- <profile_image_url>http://s3.amazonaws.com/twitter_production/profile_images/55603933/mybob-calimetux-1526_normal.png</profile_image_url>
238
- <url>http://trotto1308.netsons.org/wordpress/</url>
239
- <protected>false</protected>
240
- <followers_count>98</followers_count>
241
- </user>
242
- </status><status>
243
- <created_at>Sun Dec 07 00:36:13 +0000 2008</created_at>
244
- <id>1042729099</id>
245
- <text>Came across an ad on another site with a redneck looking santa... said &quot;Bust Santa's zit and win a free ipod.&quot; Umm... disturbing much?</text>
246
- <source>web</source>
247
- <truncated>false</truncated>
248
- <in_reply_to_status_id />
249
- <in_reply_to_user_id />
250
- <favorited>false</favorited>
251
- <user>
252
- <id>9937182</id>
253
- <name>froggybluesock</name>
254
- <screen_name>froggybluesock</screen_name>
255
- <description></description>
256
- <location>Indiana</location>
257
- <profile_image_url>http://s3.amazonaws.com/twitter_production/profile_images/35393032/about_me_normal.jpg</profile_image_url>
258
- <url>http://www.footprintsonthemoon.com</url>
259
- <protected>false</protected>
260
- <followers_count>82</followers_count>
261
- </user>
262
- </status><status>
263
- <created_at>Sun Dec 07 00:36:17 +0000 2008</created_at>
264
- <id>1042729098</id>
265
- <text>nothing</text>
266
- <source>web</source>
267
- <truncated>false</truncated>
268
- <in_reply_to_status_id />
269
- <in_reply_to_user_id />
270
- <favorited>false</favorited>
271
- <user>
272
- <id>17932339</id>
273
- <name>treblehook</name>
274
- <screen_name>treblehook</screen_name>
275
- <description />
276
- <location />
277
- <profile_image_url>http://static.twitter.com/images/default_profile_normal.png</profile_image_url>
278
- <url />
279
- <protected>false</protected>
280
- <followers_count>0</followers_count>
281
- </user>
282
- </status><status>
283
- <created_at>Sun Dec 07 00:36:13 +0000 2008</created_at>
284
- <id>1042729095</id>
285
- <text>Setting up my new Windows Live profile</text>
286
- <source>web</source>
287
- <truncated>false</truncated>
288
- <in_reply_to_status_id />
289
- <in_reply_to_user_id />
290
- <favorited>false</favorited>
291
- <user>
292
- <id>17906075</id>
293
- <name>Mark_Layton</name>
294
- <screen_name>Mark_Layton</screen_name>
295
- <description />
296
- <location />
297
- <profile_image_url>http://static.twitter.com/images/default_profile_normal.png</profile_image_url>
298
- <url />
299
- <protected>false</protected>
300
- <followers_count>2</followers_count>
301
- </user>
302
- </status><status>
303
- <created_at>Sun Dec 07 00:36:13 +0000 2008</created_at>
304
- <id>1042729092</id>
305
- <text>me voy a sobar, a ver si mañana estoy mejor, wenas noches a tod@s</text>
306
- <source>web</source>
307
- <truncated>false</truncated>
308
- <in_reply_to_status_id />
309
- <in_reply_to_user_id />
310
- <favorited>false</favorited>
311
- <user>
312
- <id>14062655</id>
313
- <name>tmaniak</name>
314
- <screen_name>tmaniak</screen_name>
315
- <description></description>
316
- <location></location>
317
- <profile_image_url>http://s3.amazonaws.com/twitter_production/profile_images/51680481/BF-109_normal.jpg</profile_image_url>
318
- <url>http://dhost.info/tmaniak</url>
319
- <protected>false</protected>
320
- <followers_count>10</followers_count>
321
- </user>
322
- </status><status>
323
- <created_at>Sun Dec 07 00:36:14 +0000 2008</created_at>
324
- <id>1042729090</id>
325
- <text>バイト延長戦入りましたー 店長が遅刻ってどうなんだ。しかも何回も</text>
326
- <source>natsuliphone</source>
327
- <truncated>false</truncated>
328
- <in_reply_to_status_id />
329
- <in_reply_to_user_id />
330
- <favorited>false</favorited>
331
- <user>
332
- <id>15618846</id>
333
- <name>kabayaki</name>
334
- <screen_name>kabayaki</screen_name>
335
- <description>FPS(L4D、TF2、CS:S、BF)、TPS、RCG、マンガ、アニメ、デジモノが好きなとある学生</description>
336
- <location>tokyo</location>
337
- <profile_image_url>http://s3.amazonaws.com/twitter_production/profile_images/57305902/184_normal.jpg</profile_image_url>
338
- <url>http://kabayakiya.blog43.fc2.com/</url>
339
- <protected>false</protected>
340
- <followers_count>20</followers_count>
341
- </user>
342
- </status><status>
343
- <created_at>Sun Dec 07 00:36:13 +0000 2008</created_at>
344
- <id>1042729089</id>
345
- <text>just drove to southern california and joy of children hugging grandparents made it all worthwhile. heading to imedia in la quinta tomorrow.</text>
346
- <source>web</source>
347
- <truncated>false</truncated>
348
- <in_reply_to_status_id />
349
- <in_reply_to_user_id />
350
- <favorited>false</favorited>
351
- <user>
352
- <id>1630261</id>
353
- <name>mark silva</name>
354
- <screen_name>marksilva</screen_name>
355
- <description>digital media http://realbranding.com Principal, Managing Director</description>
356
- <location>often san francisco</location>
357
- <profile_image_url>http://s3.amazonaws.com/twitter_production/profile_images/29807902/silvasimpson3th_normal.jpg</profile_image_url>
358
- <url>http://marksilva.com</url>
359
- <protected>false</protected>
360
- <followers_count>497</followers_count>
361
- </user>
362
- </status><status>
363
- <created_at>Sun Dec 07 00:36:14 +0000 2008</created_at>
364
- <id>1042729088</id>
365
- <text>@wholefoods would love to have a juicebar in one of your cambridge or boston locations</text>
366
- <source>web</source>
367
- <truncated>false</truncated>
368
- <in_reply_to_status_id>1041125103</in_reply_to_status_id>
369
- <in_reply_to_user_id>15131310</in_reply_to_user_id>
370
- <favorited>false</favorited>
371
- <user>
372
- <id>15856582</id>
373
- <name>Maura McGovern</name>
374
- <screen_name>mmcgovern</screen_name>
375
- <description>photographer with a day job in venture capital; obsessed with design blogs, long walks, yoga, social networking, people watching. tea and music are essential!</description>
376
- <location>Boston</location>
377
- <profile_image_url>http://s3.amazonaws.com/twitter_production/profile_images/66110383/DSCN1740_normal.JPG</profile_image_url>
378
- <url>http://lefteyephotography.blogspot.com</url>
379
- <protected>false</protected>
380
- <followers_count>244</followers_count>
381
- </user>
382
- </status><status>
383
- <created_at>Sun Dec 07 00:36:15 +0000 2008</created_at>
384
- <id>1042729087</id>
385
- <text>Going over the Advent lists.</text>
386
- <source>web</source>
387
- <truncated>false</truncated>
388
- <in_reply_to_status_id />
389
- <in_reply_to_user_id />
390
- <favorited>false</favorited>
391
- <user>
392
- <id>17122107</id>
393
- <name>gsusan</name>
394
- <screen_name>gsusan</screen_name>
395
- <description>US American writer/sister/daughter/aunt/woman from New England living in SoCal.</description>
396
- <location>San Diego, CA USA</location>
397
- <profile_image_url>http://s3.amazonaws.com/twitter_production/profile_images/63951854/susan_ocracoke_normal.jpg</profile_image_url>
398
- <url></url>
399
- <protected>false</protected>
400
- <followers_count>6</followers_count>
401
- </user>
402
- </status>
403
- </statuses>