From b7f67ec0a645e861ffcd16012274ec580fd3c113 Mon Sep 17 00:00:00 2001 From: Jaiden Mispy <^_^@mispy.me> Date: Thu, 16 Oct 2014 03:02:39 -0700 Subject: [PATCH] Memory optimization --- .rspec | 1 + lib/twitter_ebooks.rb | 2 - lib/twitter_ebooks/model.rb | 59 +- lib/twitter_ebooks/nlp.rb | 2 +- spec/data/0xabad1dea.json | 203945 +++++++++++++++++++++++++++++++++ spec/data/0xabad1dea.model | Bin 1503684 -> 0 bytes spec/model_spec.rb | 12 +- twitter_ebooks.gemspec | 7 +- 8 files changed, 203990 insertions(+), 38 deletions(-) create mode 100644 .rspec create mode 100644 spec/data/0xabad1dea.json delete mode 100644 spec/data/0xabad1dea.model diff --git a/.rspec b/.rspec new file mode 100644 index 0000000..4e1e0d2 --- /dev/null +++ b/.rspec @@ -0,0 +1 @@ +--color diff --git a/lib/twitter_ebooks.rb b/lib/twitter_ebooks.rb index 7334bac..830fbcc 100644 --- a/lib/twitter_ebooks.rb +++ b/lib/twitter_ebooks.rb @@ -1,5 +1,3 @@ -gem 'minitest' - $debug = false def log(*args) diff --git a/lib/twitter_ebooks/model.rb b/lib/twitter_ebooks/model.rb index dd01834..0ed3ad5 100644 --- a/lib/twitter_ebooks/model.rb +++ b/lib/twitter_ebooks/model.rb @@ -18,14 +18,28 @@ module Ebooks Marshal.load(File.open(path, 'rb') { |f| f.read }) end + def mass_tokenize(text) + sentences = NLP.sentences(text) + tokens = [] + + sentences.each do |s| + tokens << NLP.tokenize(s).reject do |t| + # Don't include usernames/urls as tokens + t.include?('@') || t.include?('http') + end + end + + tokens + end + def consume(path) content = File.read(path, :encoding => 'utf-8') @hash = Digest::MD5.hexdigest(content) if path.split('.')[-1] == "json" log "Reading json corpus from #{path}" - lines = JSON.parse(content, symbolize_names: true).map do |tweet| - tweet[:text] + lines = JSON.parse(content).map do |tweet| + tweet['text'] end elsif path.split('.')[-1] == "csv" log "Reading CSV corpus from #{path}" @@ -42,44 +56,31 @@ module Ebooks log "Removing commented lines and sorting mentions" - keeping = [] + statements = [] mentions = [] lines.each do |l| next if l.start_with?('#') # Remove commented lines next if l.include?('RT') || l.include?('MT') # Remove soft retweets if l.include?('@') - mentions << l + statements << NLP.normalize(l) else - keeping << l - end - end - text = NLP.normalize(keeping.join("\n")) # Normalize weird characters - mention_text = NLP.normalize(mentions.join("\n")) - - log "Segmenting text into sentences" - - statements = NLP.sentences(text) - mentions = NLP.sentences(mention_text) - - log "Tokenizing #{statements.length} statements and #{mentions.length} mentions" - @sentences = [] - @mentions = [] - - statements.each do |s| - @sentences << NLP.tokenize(s).reject do |t| - t.include?('@') || t.include?('http') + mentions << NLP.normalize(l) end end - mentions.each do |s| - @mentions << NLP.tokenize(s).reject do |t| - t.include?('@') || t.include?('http') - end - end + text = statements.join("\n") + mention_text = mentions.join("\n") - log "Ranking keywords" - @keywords = NLP.keywords(@sentences) + lines = nil; statements = nil; mentions = nil # Allow garbage collection + + log "Tokenizing #{text.count('\n')} statements and #{mention_text.count('\n')} mentions" + + @sentences = mass_tokenize(text) + @mentions = mass_tokenize(mention_text) + + #log "Ranking keywords" + #@keywords = NLP.keywords(@sentences) self end diff --git a/lib/twitter_ebooks/nlp.rb b/lib/twitter_ebooks/nlp.rb index b3262e7..11ad8a5 100644 --- a/lib/twitter_ebooks/nlp.rb +++ b/lib/twitter_ebooks/nlp.rb @@ -43,7 +43,7 @@ module Ebooks end ### Utility functions - + # We don't really want to deal with all this weird unicode punctuation def self.normalize(text) htmlentities.decode text.gsub('“', '"').gsub('”', '"').gsub('’', "'").gsub('…', '...') diff --git a/spec/data/0xabad1dea.json b/spec/data/0xabad1dea.json new file mode 100644 index 0000000..2353301 --- /dev/null +++ b/spec/data/0xabad1dea.json @@ -0,0 +1,203945 @@ +[ + { + "created_at": "Sun Jun 01 04:58:05 +0000 2014", + "id": 472965285310251008, + "id_str": "472965285310251008", + "text": "@zhuowei @m1sp the hair isn’t shaded in this, if it looks that way then it’s just sketchiness (can only see a bit of bangs anyway)", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472965010742734848, + "in_reply_to_status_id_str": "472965010742734848", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Jun 01 04:56:43 +0000 2014", + "id": 472964938663604225, + "id_str": "472964938663604225", + "text": "@zhuowei @m1sp Luzcrezo In A Dress", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472964735017578496, + "in_reply_to_status_id_str": "472964735017578496", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "es" + }, + { + "created_at": "Sun Jun 01 04:56:06 +0000 2014", + "id": 472964785533767680, + "id_str": "472964785533767680", + "text": "@grp @comex I ship it", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472964564930154496, + "in_reply_to_status_id_str": "472964564930154496", + "in_reply_to_user_id": 69459178, + "in_reply_to_user_id_str": "69459178", + "in_reply_to_screen_name": "grp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Jun 01 04:50:32 +0000 2014", + "id": 472963382828888064, + "id_str": "472963382828888064", + "text": "@m1sp http://t.co/3gCNhAWpJq", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Sun Jun 01 04:24:12 +0000 2014", + "id": 472956756705165312, + "id_str": "472956756705165312", + "text": "@iain_chalmers but that would seem to defeat the point of *finding* an image’s location, unless the journalists completely misinterpreted", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472953945443155970, + "in_reply_to_status_id_str": "472953945443155970", + "in_reply_to_user_id": 14657520, + "in_reply_to_user_id_str": "14657520", + "in_reply_to_screen_name": "iain_chalmers", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Jun 01 04:23:03 +0000 2014", + "id": 472956466367041536, + "id_str": "472956466367041536", + "text": "@m1sp yes exactly grahh.", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472953802102804482, + "in_reply_to_status_id_str": "472953802102804482", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Jun 01 03:59:49 +0000 2014", + "id": 472950621725663234, + "id_str": "472950621725663234", + "text": "@m1sp I just keep failing to capture all the relevant stuff about the relations of all the Cute Teens In The Occident", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472949066318356480, + "in_reply_to_status_id_str": "472949066318356480", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Jun 01 03:59:05 +0000 2014", + "id": 472950435150823424, + "id_str": "472950435150823424", + "text": "@m1sp also oh my gods STILL not happy with Barsamin’s first chapter in RitS ugh why is this so hard", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472949066318356480, + "in_reply_to_status_id_str": "472949066318356480", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Jun 01 03:57:08 +0000 2014", + "id": 472949945302278144, + "id_str": "472949945302278144", + "text": "@BasedBauer I guess it’s a couple? And whether it’s just the ecchi board or the whole site varies? IDK I don’t know any Russians in Russia", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472947622848655360, + "in_reply_to_status_id_str": "472947622848655360", + "in_reply_to_user_id": 2521129615, + "in_reply_to_user_id_str": "2521129615", + "in_reply_to_screen_name": "BasedBauer", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Jun 01 03:44:32 +0000 2014", + "id": 472946773548625920, + "id_str": "472946773548625920", + "text": "@Shufflejoy do they pay for the overtime at least?", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472937437409595392, + "in_reply_to_status_id_str": "472937437409595392", + "in_reply_to_user_id": 1567524811, + "in_reply_to_user_id_str": "1567524811", + "in_reply_to_screen_name": "Shufflejoy", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Jun 01 03:28:52 +0000 2014", + "id": 472942829480968192, + "id_str": "472942829480968192", + "text": "Allegedly some ISP in Russia is trying to block 4chan. As a lover of popcorn and fireworks, I welcome this development.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 17, + "favorite_count": 32, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Jun 01 03:10:34 +0000 2014", + "id": 472938225770958848, + "id_str": "472938225770958848", + "text": "@kevin_bowen @puellavulnerata or the journalists could have totally screwed up and in actuality it just matches exif co-ords to a map...", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 472937732000325633, + "in_reply_to_status_id_str": "472937732000325633", + "in_reply_to_user_id": 141087607, + "in_reply_to_user_id_str": "141087607", + "in_reply_to_screen_name": "kevin_bowen", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Jun 01 03:09:40 +0000 2014", + "id": 472937999588941825, + "id_str": "472937999588941825", + "text": "@kevin_bowen @puellavulnerata perhaps it's a really fuzzy thing that matches colors and stuff to narrow down possible locations?", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 472937732000325633, + "in_reply_to_status_id_str": "472937732000325633", + "in_reply_to_user_id": 141087607, + "in_reply_to_user_id_str": "141087607", + "in_reply_to_screen_name": "kevin_bowen", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Jun 01 03:08:49 +0000 2014", + "id": 472937784152686592, + "id_str": "472937784152686592", + "text": "@Kufat the wording \"to determine location\" would suggest that the location wasn't handed to them free with the jpg", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 472935670369878016, + "in_reply_to_status_id_str": "472935670369878016", + "in_reply_to_user_id": 207691003, + "in_reply_to_user_id_str": "207691003", + "in_reply_to_screen_name": "Kufat", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Jun 01 03:06:06 +0000 2014", + "id": 472937100112064513, + "id_str": "472937100112064513", + "text": "@m1sp my new chip so far... it sounds less Russianesque as square waves than it did on piano though. http://t.co/kTeZE8fl7s", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sun Jun 01 02:58:15 +0000 2014", + "id": 472935125576335360, + "id_str": "472935125576335360", + "text": "“Oh btw NSA can correlate a normal photograph of the outdoors with top-down satellite imagery” I wonder how it works; crowdsourced stuff?", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 10, + "favorite_count": 11, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Jun 01 02:53:27 +0000 2014", + "id": 472933917843288065, + "id_str": "472933917843288065", + "text": "Way to cram the interesting stuff in the last paragraph after going on and on about the NSA’s selfie scraping http://t.co/4CXHNCiMKp", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 9, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sun Jun 01 02:45:54 +0000 2014", + "id": 472932020243668992, + "id_str": "472932020243668992", + "text": "@m1sp @zauspar don’t kid yourself, our digital baby is a supervillain in the making", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472923674303950848, + "in_reply_to_status_id_str": "472923674303950848", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Jun 01 02:41:58 +0000 2014", + "id": 472931027136966656, + "id_str": "472931027136966656", + "text": "@thegrugq I’m just saying… I don’t think I understand the aphorisms of a grugq a decade younger.", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472930824052957184, + "in_reply_to_status_id_str": "472930824052957184", + "in_reply_to_user_id": 18983429, + "in_reply_to_user_id_str": "18983429", + "in_reply_to_screen_name": "thegrugq", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Jun 01 02:40:49 +0000 2014", + "id": 472930738149789696, + "id_str": "472930738149789696", + "text": "@papierhache @Shufflejoy exhibit A in “literal psychopath, no really, you couldn’t make this any easier to diagnose”", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472912713749106688, + "in_reply_to_status_id_str": "472912713749106688", + "in_reply_to_user_id": 616942788, + "in_reply_to_user_id_str": "616942788", + "in_reply_to_screen_name": "papierhache", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Jun 01 02:37:45 +0000 2014", + "id": 472929967651950592, + "id_str": "472929967651950592", + "text": "@thegrugq 👊👊👊 it’s all in the 👏?", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472909639424540672, + "in_reply_to_status_id_str": "472909639424540672", + "in_reply_to_user_id": 18983429, + "in_reply_to_user_id_str": "18983429", + "in_reply_to_screen_name": "thegrugq", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Jun 01 02:32:07 +0000 2014", + "id": 472928551273246721, + "id_str": "472928551273246721", + "text": "@DarthNull fry-squint.jpg\n\nNot sure if literal\n\nOr Mario Kart", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472895926932353024, + "in_reply_to_status_id_str": "472895926932353024", + "in_reply_to_user_id": 12287142, + "in_reply_to_user_id_str": "12287142", + "in_reply_to_screen_name": "DarthNull", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 31 22:30:15 +0000 2014", + "id": 472867681624784896, + "id_str": "472867681624784896", + "text": "@christinelove cc @m1sp it will be hilarious when the apocalypse is his fault", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472861217300553728, + "in_reply_to_status_id_str": "472861217300553728", + "in_reply_to_user_id": 14852199, + "in_reply_to_user_id_str": "14852199", + "in_reply_to_screen_name": "christinelove", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 3, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 31 22:29:08 +0000 2014", + "id": 472867400447442945, + "id_str": "472867400447442945", + "text": "@zhuowei hopper is a sight cheaper than Ida… and a lot less paperwork.", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472860611366232065, + "in_reply_to_status_id_str": "472860611366232065", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 31 22:24:23 +0000 2014", + "id": 472866205314064384, + "id_str": "472866205314064384", + "text": "@Kufat there is something seriously wrong with your company.", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472852167536435200, + "in_reply_to_status_id_str": "472852167536435200", + "in_reply_to_user_id": 207691003, + "in_reply_to_user_id_str": "207691003", + "in_reply_to_screen_name": "Kufat", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 31 22:16:45 +0000 2014", + "id": 472864283148435456, + "id_str": "472864283148435456", + "text": "@hemantmehta I’m so sorry. The last time I attended one I almost lost my cool mid-ceremony for all the overt misogyny.", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472842493575561217, + "in_reply_to_status_id_str": "472842493575561217", + "in_reply_to_user_id": 23034673, + "in_reply_to_user_id_str": "23034673", + "in_reply_to_screen_name": "hemantmehta", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 31 21:33:01 +0000 2014", + "id": 472853276715909120, + "id_str": "472853276715909120", + "text": "@mellohey http://t.co/KPoh07E7TI", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 472851379137306624, + "in_reply_to_status_id_str": "472851379137306624", + "in_reply_to_user_id": 82624330, + "in_reply_to_user_id_str": "82624330", + "in_reply_to_screen_name": "mellohey", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Sat May 31 20:30:56 +0000 2014", + "id": 472837655932456960, + "id_str": "472837655932456960", + "text": "Google Docs wants me to correct \"holograms and lasers\" to \"holograms & lasers.\" Hologram & Laser, Space Attorneys", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 10, + "favorite_count": 33, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 31 19:43:25 +0000 2014", + "id": 472825697787187200, + "id_str": "472825697787187200", + "text": "@Xaosopher but on the timescales apparent, civilizations would rise and fall in the shadow of the stormless giant", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472824519493550080, + "in_reply_to_status_id_str": "472824519493550080", + "in_reply_to_user_id": 68878049, + "in_reply_to_user_id_str": "68878049", + "in_reply_to_screen_name": "Xaosopher", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 31 19:42:19 +0000 2014", + "id": 472825421802004480, + "id_str": "472825421802004480", + "text": "@eevee I’m p sure literal entire theses have been written on the emotional outrage of the public around refining the definition of planet", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472823828255477761, + "in_reply_to_status_id_str": "472823828255477761", + "in_reply_to_user_id": 14412937, + "in_reply_to_user_id_str": "14412937", + "in_reply_to_screen_name": "eevee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 31 19:36:30 +0000 2014", + "id": 472823957737848832, + "id_str": "472823957737848832", + "text": "@eevee no we didn’t, we acknowledged its chibi status", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472823828255477761, + "in_reply_to_status_id_str": "472823828255477761", + "in_reply_to_user_id": 14412937, + "in_reply_to_user_id_str": "14412937", + "in_reply_to_screen_name": "eevee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 5, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 31 19:34:46 +0000 2014", + "id": 472823518238113793, + "id_str": "472823518238113793", + "text": "It’s really weird to think that the Great Red Spot could go on shrinking and the defining characteristic of a planet would just… go away", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 7, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 31 19:24:27 +0000 2014", + "id": 472820923318669312, + "id_str": "472820923318669312", + "text": "@eevee sites like buzzfeed and cracked have been known to pull out the serious journalism firepower where their demographic is concerned", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472820500276588544, + "in_reply_to_status_id_str": "472820500276588544", + "in_reply_to_user_id": 14412937, + "in_reply_to_user_id_str": "14412937", + "in_reply_to_screen_name": "eevee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 31 19:22:06 +0000 2014", + "id": 472820333838602240, + "id_str": "472820333838602240", + "text": ".@eevee cue certain factions suddenly realizing there are in fact a LOT of transgender people: “America can’t afford that!”", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472818913734971392, + "in_reply_to_status_id_str": "472818913734971392", + "in_reply_to_user_id": 14412937, + "in_reply_to_user_id_str": "14412937", + "in_reply_to_screen_name": "eevee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 31 19:14:16 +0000 2014", + "id": 472818362092126210, + "id_str": "472818362092126210", + "text": "@octal hey wait… @ra6bit “owes” me one of those… :p", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472818207674208256, + "in_reply_to_status_id_str": "472818207674208256", + "in_reply_to_user_id": 814667, + "in_reply_to_user_id_str": "814667", + "in_reply_to_screen_name": "octal", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 31 19:12:42 +0000 2014", + "id": 472817968699965443, + "id_str": "472817968699965443", + "text": "LOL I had forgotten that the “smartwatch art from the 80s” that’s been going around was in fact an 80s April Fool’s https://t.co/R8eyF3wNvq", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "quoted_status_id": 195220813081878528, + "quoted_status_id_str": "195220813081878528", + "retweet_count": 1, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sat May 31 19:06:14 +0000 2014", + "id": 472816338118135808, + "id_str": "472816338118135808", + "text": "@WhiteMageSlave if only someone who had any idea how to design a UI worked for Nintendo", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472815814341451776, + "in_reply_to_status_id_str": "472815814341451776", + "in_reply_to_user_id": 90791634, + "in_reply_to_user_id_str": "90791634", + "in_reply_to_screen_name": "WhiteMageSlave", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 31 19:02:46 +0000 2014", + "id": 472815466709540864, + "id_str": "472815466709540864", + "text": "@WhiteMageSlave bought a disc, lady at the gamestop said there was a free game redeem thingie with club Nintendo but that’s all I know", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472815299205808128, + "in_reply_to_status_id_str": "472815299205808128", + "in_reply_to_user_id": 90791634, + "in_reply_to_user_id_str": "90791634", + "in_reply_to_screen_name": "WhiteMageSlave", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 31 19:00:41 +0000 2014", + "id": 472814942870335488, + "id_str": "472814942870335488", + "text": "@WhiteMageSlave I genuinely haven't the slightest idea how one is supposed to redeem that", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 472814820362682368, + "in_reply_to_status_id_str": "472814820362682368", + "in_reply_to_user_id": 90791634, + "in_reply_to_user_id_str": "90791634", + "in_reply_to_screen_name": "WhiteMageSlave", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 31 19:00:19 +0000 2014", + "id": 472814849790316544, + "id_str": "472814849790316544", + "text": "@pent0thal I promise more hacking happens when I'm not sick :)", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 472810904070152192, + "in_reply_to_status_id_str": "472810904070152192", + "in_reply_to_user_id": 2393814149, + "in_reply_to_user_id_str": "2393814149", + "in_reply_to_screen_name": "pent0thal", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 31 18:58:56 +0000 2014", + "id": 472814500299948032, + "id_str": "472814500299948032", + "text": "this track is crazy fun with all the air you can get (there's the 100% organic antifreeze sign at the end) https://t.co/Ro7LfgiUTR", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sat May 31 18:33:20 +0000 2014", + "id": 472808057928687616, + "id_str": "472808057928687616", + "text": "@greerga I’m pretty sure alcohol is organic! But generally one only advertises organicness of… things one eats", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472807704118198272, + "in_reply_to_status_id_str": "472807704118198272", + "in_reply_to_user_id": 313743868, + "in_reply_to_user_id_str": "313743868", + "in_reply_to_screen_name": "greerga", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 31 18:25:25 +0000 2014", + "id": 472806067387531264, + "id_str": "472806067387531264", + "text": "@zedshaw conveyance of intention fail on their end: they want two strings delimited by space", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472804864762707968, + "in_reply_to_status_id_str": "472804864762707968", + "in_reply_to_user_id": 15029296, + "in_reply_to_user_id_str": "15029296", + "in_reply_to_screen_name": "zedshaw", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 31 18:22:36 +0000 2014", + "id": 472805358943993857, + "id_str": "472805358943993857", + "text": "One of the little advertising signs in Mario Kart 8 is for “100% organic antifreeze” >.>", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 16, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 31 17:19:23 +0000 2014", + "id": 472789447764107265, + "id_str": "472789447764107265", + "text": "@zedshaw @darkuncle @dakami okay, sure, which brings us back to my original comment, that it's a generational gap, to which you said \"no\"", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 472789221971738625, + "in_reply_to_status_id_str": "472789221971738625", + "in_reply_to_user_id": 15029296, + "in_reply_to_user_id_str": "15029296", + "in_reply_to_screen_name": "zedshaw", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 31 15:41:59 +0000 2014", + "id": 472764936439861248, + "id_str": "472764936439861248", + "text": "@McGrewSecurity pfff haha sure you’ll learn to be an A+ ace hacker that way", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472764783847292929, + "in_reply_to_status_id_str": "472764783847292929", + "in_reply_to_user_id": 13275122, + "in_reply_to_user_id_str": "13275122", + "in_reply_to_screen_name": "McGrewSecurity", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 31 15:40:44 +0000 2014", + "id": 472764624971247617, + "id_str": "472764624971247617", + "text": "@McGrewSecurity oh man context ?", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472748770740817922, + "in_reply_to_status_id_str": "472748770740817922", + "in_reply_to_user_id": 13275122, + "in_reply_to_user_id_str": "13275122", + "in_reply_to_screen_name": "McGrewSecurity", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "ht" + }, + { + "created_at": "Sat May 31 15:38:38 +0000 2014", + "id": 472764097332019201, + "id_str": "472764097332019201", + "text": "@Uncouth_Peasant @zauspar getting operating systems to ship dyslexic-friendly fonts that aren’t also novelty fonts would be better (IMO).", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472716111318761472, + "in_reply_to_status_id_str": "472716111318761472", + "in_reply_to_user_id": 390793941, + "in_reply_to_user_id_str": "390793941", + "in_reply_to_screen_name": "Uncouth_Peasant", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 31 15:34:36 +0000 2014", + "id": 472763082268508160, + "id_str": "472763082268508160", + "text": "@m1sp @Talen_Lee my prince <3", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472731502166286336, + "in_reply_to_status_id_str": "472731502166286336", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 31 15:19:01 +0000 2014", + "id": 472759159814115328, + "id_str": "472759159814115328", + "text": "@zedshaw with all respect, that there is a *generation* gap if I ever saw one.", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472634782958895104, + "in_reply_to_status_id_str": "472634782958895104", + "in_reply_to_user_id": 15029296, + "in_reply_to_user_id_str": "15029296", + "in_reply_to_screen_name": "zedshaw", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 31 15:14:12 +0000 2014", + "id": 472757947266007041, + "id_str": "472757947266007041", + "text": "@ra6bit a little slice of FREEDOM.", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472757767049334784, + "in_reply_to_status_id_str": "472757767049334784", + "in_reply_to_user_id": 537333195, + "in_reply_to_user_id_str": "537333195", + "in_reply_to_screen_name": "ra6bit", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 31 15:12:00 +0000 2014", + "id": 472757390832447488, + "id_str": "472757390832447488", + "text": "@ra6bit now I’m imagining everyone but New Hampshire assenting and how awkward that would be", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472756469583323136, + "in_reply_to_status_id_str": "472756469583323136", + "in_reply_to_user_id": 537333195, + "in_reply_to_user_id_str": "537333195", + "in_reply_to_screen_name": "ra6bit", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 31 15:02:00 +0000 2014", + "id": 472754874812489728, + "id_str": "472754874812489728", + "text": "@_cypherpunks_ @puellavulnerata oh yes. ˙ ͜ʟ˙", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472604985768038401, + "in_reply_to_status_id_str": "472604985768038401", + "in_reply_to_user_id": 47968683, + "in_reply_to_user_id_str": "47968683", + "in_reply_to_screen_name": "_cypherpunks_", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 31 14:57:02 +0000 2014", + "id": 472753626906386432, + "id_str": "472753626906386432", + "text": "I dreamed that Canada politely asked New England if we would like to be annexed and we were like okay (New Hampshire would not be like okay)", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 5, + "favorite_count": 12, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 31 14:52:30 +0000 2014", + "id": 472752485837602816, + "id_str": "472752485837602816", + "text": "@Talen_Lee I thought the promo poster was photoshopped but… apparently it isn’t?", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472595651990003712, + "in_reply_to_status_id_str": "472595651990003712", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 31 14:49:24 +0000 2014", + "id": 472751706946928640, + "id_str": "472751706946928640", + "text": "@zhuowei @m1sp …wow.", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472651863112691712, + "in_reply_to_status_id_str": "472651863112691712", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": true, + "retweeted": false, + "lang": "tl" + }, + { + "created_at": "Sat May 31 03:45:47 +0000 2014", + "id": 472584699554959361, + "id_str": "472584699554959361", + "text": "@Kufat who exactly published that map is somewhat peripheral to what on earth happened to that map", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472584463096877056, + "in_reply_to_status_id_str": "472584463096877056", + "in_reply_to_user_id": 207691003, + "in_reply_to_user_id_str": "207691003", + "in_reply_to_screen_name": "Kufat", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 31 03:41:11 +0000 2014", + "id": 472583544204976128, + "id_str": "472583544204976128", + "text": "@m1sp problem: I’m writing a song that sounds very Russian, which means I need to make up a Russianesque character to match. Oh bother!", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 31 03:35:11 +0000 2014", + "id": 472582031889924096, + "id_str": "472582031889924096", + "text": "@ShadowTodd also I’m very bothered at how many people can tell the answer but apparently can’t tell the map is fundamentally wrong", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472578141538770945, + "in_reply_to_status_id_str": "472578141538770945", + "in_reply_to_user_id": 168769498, + "in_reply_to_user_id_str": "168769498", + "in_reply_to_screen_name": "ShadowTodd", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 31 03:33:23 +0000 2014", + "id": 472581578535628800, + "id_str": "472581578535628800", + "text": ".@ShadowTodd Mongols, the Terror of the Paleozoic", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472578141538770945, + "in_reply_to_status_id_str": "472578141538770945", + "in_reply_to_user_id": 168769498, + "in_reply_to_user_id_str": "168769498", + "in_reply_to_screen_name": "ShadowTodd", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 31 03:32:48 +0000 2014", + "id": 472581434000310273, + "id_str": "472581434000310273", + "text": "RT @ShadowTodd: This is the weirdest fucking map I've ever seen, allegedly it's from the fucking SATs. http://t.co/YpoGhTd4PZ", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sat May 31 03:19:43 +0000 2014", + "id": 472578141538770945, + "id_str": "472578141538770945", + "text": "This is the weirdest fucking map I've ever seen, allegedly it's from the fucking SATs. http://t.co/YpoGhTd4PZ", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 168769498, + "id_str": "168769498" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 15, + "favorite_count": 19, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ], + "media": [ + { + "id": 472578139801931776, + "id_str": "472578139801931776", + "indices": [ + 87, + 109 + ], + "media_url": "http://pbs.twimg.com/media/Bo7vUHeCUAA11IV.jpg", + "media_url_https": "https://pbs.twimg.com/media/Bo7vUHeCUAA11IV.jpg", + "url": "http://t.co/YpoGhTd4PZ", + "display_url": "pic.twitter.com/YpoGhTd4PZ", + "expanded_url": "http://twitter.com/ShadowTodd/status/472578141538770945/photo/1", + "type": "photo", + "sizes": { + "large": { + "w": 1024, + "h": 765, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 253, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 447, + "resize": "fit" + } + } + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 15, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sat May 31 03:30:03 +0000 2014", + "id": 472580740161753089, + "id_str": "472580740161753089", + "text": "@zhuowei that reminds me, I never did make a character for a few of those names", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472573220634124290, + "in_reply_to_status_id_str": "472573220634124290", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 31 03:03:20 +0000 2014", + "id": 472574016113614848, + "id_str": "472574016113614848", + "text": "@zhuowei that's the only conclusion I can draw. This is from 7th or 8th grade... I went through... a phase...", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 472573429921501185, + "in_reply_to_status_id_str": "472573429921501185", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 31 02:08:06 +0000 2014", + "id": 472560118673203201, + "id_str": "472560118673203201", + "text": "@vogon I’d ask if you saw the relevant Penny Arcade, but,", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472559561938071552, + "in_reply_to_status_id_str": "472559561938071552", + "in_reply_to_user_id": 6326912, + "in_reply_to_user_id_str": "6326912", + "in_reply_to_screen_name": "vogon", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 31 01:56:03 +0000 2014", + "id": 472557085071540224, + "id_str": "472557085071540224", + "text": "@Talen_Lee it’s incredibly rare for me to block someone I *know*! Smartwatch keeps spontaneously devolving into dumbwatch", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472556849376419840, + "in_reply_to_status_id_str": "472556849376419840", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 31 01:54:49 +0000 2014", + "id": 472556774797877248, + "id_str": "472556774797877248", + "text": "@Talen_Lee good it finally worked. With luck it won’t break AGAIN", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472556682749300736, + "in_reply_to_status_id_str": "472556682749300736", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 31 01:54:11 +0000 2014", + "id": 472556614789369856, + "id_str": "472556614789369856", + "text": "@Talen_Lee tweet at me I’m testing something", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472556320831188992, + "in_reply_to_status_id_str": "472556320831188992", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 31 01:39:28 +0000 2014", + "id": 472552910174560256, + "id_str": "472552910174560256", + "text": "@tpw_rules 💹 gotta drive emoji usage 🆙", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 472552459156873216, + "in_reply_to_status_id_str": "472552459156873216", + "in_reply_to_user_id": 175232978, + "in_reply_to_user_id_str": "175232978", + "in_reply_to_screen_name": "tpw_rules", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 31 01:10:04 +0000 2014", + "id": 472545512051064832, + "id_str": "472545512051064832", + "text": "Annoying people flood Twitch chat channels on Friday night like clockwork. “You can stay up until ten” clockwork, I imagine 🕙", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 5, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 31 00:44:52 +0000 2014", + "id": 472539172570681344, + "id_str": "472539172570681344", + "text": "@dozykraut oh the last time I posted it was months ago. Redditor cheated the repost filter by linking to a subheading… :)", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472538987715108864, + "in_reply_to_status_id_str": "472538987715108864", + "in_reply_to_user_id": 23579460, + "in_reply_to_user_id_str": "23579460", + "in_reply_to_screen_name": "dozykraut", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 31 00:42:01 +0000 2014", + "id": 472538455986429952, + "id_str": "472538455986429952", + "text": "@dozykraut me posting that a third time for the retweets would be just cheap ;)", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472538029568319488, + "in_reply_to_status_id_str": "472538029568319488", + "in_reply_to_user_id": 23579460, + "in_reply_to_user_id_str": "23579460", + "in_reply_to_screen_name": "dozykraut", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 31 00:32:12 +0000 2014", + "id": 472535983381303296, + "id_str": "472535983381303296", + "text": "This is the most important gaming article ever written http://t.co/a9tWq2VeYV", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 17, + "favorite_count": 15, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri May 30 23:33:11 +0000 2014", + "id": 472521133330554880, + "id_str": "472521133330554880", + "text": "@WhiteMageSlave \\o/", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 472520372047204353, + "in_reply_to_status_id_str": "472520372047204353", + "in_reply_to_user_id": 90791634, + "in_reply_to_user_id_str": "90791634", + "in_reply_to_screen_name": "WhiteMageSlave", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Fri May 30 23:24:08 +0000 2014", + "id": 472518852782616576, + "id_str": "472518852782616576", + "text": "@zhuowei all teachers are impressed by superior abadidea numerology", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472518547797598208, + "in_reply_to_status_id_str": "472518547797598208", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 30 23:21:31 +0000 2014", + "id": 472518195396739072, + "id_str": "472518195396739072", + "text": "@zhuowei inferior numerology!", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472517713789599745, + "in_reply_to_status_id_str": "472517713789599745", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "it" + }, + { + "created_at": "Fri May 30 21:14:21 +0000 2014", + "id": 472486194811768832, + "id_str": "472486194811768832", + "text": "All Baby Daisy All The Time http://t.co/TE8YxryBWX", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri May 30 20:01:12 +0000 2014", + "id": 472467785487220736, + "id_str": "472467785487220736", + "text": "Hi I’m Baby Daisy! Anticipate me abusing this feature… http://t.co/JFXaHtZsZM", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri May 30 19:54:31 +0000 2014", + "id": 472466102795386880, + "id_str": "472466102795386880", + "text": "RT @sergeybratus: @Dymaxion @casparbowden @csoghoian @travisgoodspeed We are in the only technical discipline that is getting laws before t…", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Fri May 30 17:09:31 +0000 2014", + "id": 472424580812767234, + "id_str": "472424580812767234", + "text": "@Dymaxion @casparbowden @csoghoian @travisgoodspeed We are in the only technical discipline that is getting laws before textbooks.", + "source": "Twitter for Mac", + "truncated": false, + "in_reply_to_status_id": 472423824982822912, + "in_reply_to_status_id_str": "472423824982822912", + "in_reply_to_user_id": 14415338, + "in_reply_to_user_id_str": "14415338", + "in_reply_to_screen_name": "Dymaxion", + "user": { + "id": 354406010, + "id_str": "354406010" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 1, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "Dymaxion", + "name": "Eleanor Saitta", + "id": 14415338, + "id_str": "14415338", + "indices": [ + 0, + 9 + ] + }, + { + "screen_name": "CasparBowden", + "name": "Caspar Bowden", + "id": 328115384, + "id_str": "328115384", + "indices": [ + 10, + 23 + ] + }, + { + "screen_name": "csoghoian", + "name": "Christopher Soghoian", + "id": 14669471, + "id_str": "14669471", + "indices": [ + 24, + 34 + ] + }, + { + "screen_name": "travisgoodspeed", + "name": "Travis Goodspeed", + "id": 81458523, + "id_str": "81458523", + "indices": [ + 35, + 51 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 3, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 30 19:49:22 +0000 2014", + "id": 472464808516648960, + "id_str": "472464808516648960", + "text": "RT @blowdart: Measles, once officially eradicated in the US is now at a 20 year peak. Thanks Jenny McCarthy et al.", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Fri May 30 19:48:15 +0000 2014", + "id": 472464524600020993, + "id_str": "472464524600020993", + "text": "Measles, once officially eradicated in the US is now at a 20 year peak. Thanks Jenny McCarthy et al.", + "source": "Twitter for Windows", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 1847381, + "id_str": "1847381" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 76, + "favorite_count": 24, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 76, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 30 19:48:06 +0000 2014", + "id": 472464489330524160, + "id_str": "472464489330524160", + "text": "@rich0H doesn’t take THAT long to do thirty-two races in a row", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472463414766219264, + "in_reply_to_status_id_str": "472463414766219264", + "in_reply_to_user_id": 359853655, + "in_reply_to_user_id_str": "359853655", + "in_reply_to_screen_name": "rich0H", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 30 19:40:05 +0000 2014", + "id": 472462471052029952, + "id_str": "472462471052029952", + "text": "Well that’s cute — the Mario Kart 8 credits put all the imaginary brand logos at the end like movie producer logos", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 7, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 30 19:14:27 +0000 2014", + "id": 472456021164982272, + "id_str": "472456021164982272", + "text": "@eevee calculating results… releasing results into the wild… bye results!", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472454892057948160, + "in_reply_to_status_id_str": "472454892057948160", + "in_reply_to_user_id": 14412937, + "in_reply_to_user_id_str": "14412937", + "in_reply_to_screen_name": "eevee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 30 18:58:32 +0000 2014", + "id": 472452015415902208, + "id_str": "472452015415902208", + "text": "@psiwindftw I’m complaining that Mario Kart looks absolutely ridiculous because someone kept saying “we can fit one more light effect”", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472451727900160000, + "in_reply_to_status_id_str": "472451727900160000", + "in_reply_to_user_id": 169280464, + "in_reply_to_user_id_str": "169280464", + "in_reply_to_screen_name": "psiwindftw", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 30 18:56:04 +0000 2014", + "id": 472451392930455552, + "id_str": "472451392930455552", + "text": "I’ve concluded that the Wii-U video card is really good at real-time lighting effects and literally nothing else", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 10, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 30 18:47:27 +0000 2014", + "id": 472449226639941632, + "id_str": "472449226639941632", + "text": "@dangoodin001 according to him it stands for Dire", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472448531978932225, + "in_reply_to_status_id_str": "472448531978932225", + "in_reply_to_user_id": 14150736, + "in_reply_to_user_id_str": "14150736", + "in_reply_to_screen_name": "dangoodin001", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 30 18:34:23 +0000 2014", + "id": 472445936421961729, + "id_str": "472445936421961729", + "text": "@Xaosopher barely. He blacked out at a techno show…", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472445808596381697, + "in_reply_to_status_id_str": "472445808596381697", + "in_reply_to_user_id": 68878049, + "in_reply_to_user_id_str": "68878049", + "in_reply_to_screen_name": "Xaosopher", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 30 18:32:27 +0000 2014", + "id": 472445450864168961, + "id_str": "472445450864168961", + "text": "@Xaosopher he’ll also be in Vegas for one night apparently", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472445012282593280, + "in_reply_to_status_id_str": "472445012282593280", + "in_reply_to_user_id": 68878049, + "in_reply_to_user_id_str": "68878049", + "in_reply_to_screen_name": "Xaosopher", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 30 18:31:03 +0000 2014", + "id": 472445098165141504, + "id_str": "472445098165141504", + "text": "@Xaosopher >>> dummy", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472445012282593280, + "in_reply_to_status_id_str": "472445012282593280", + "in_reply_to_user_id": 68878049, + "in_reply_to_user_id_str": "68878049", + "in_reply_to_screen_name": "Xaosopher", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 30 18:28:37 +0000 2014", + "id": 472444485192806402, + "id_str": "472444485192806402", + "text": "Now to cry because I’m scared my dummy husband is going to get lost or hurt or robbed or captured by terrorists on his trip to California", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 30 18:16:46 +0000 2014", + "id": 472441503407960064, + "id_str": "472441503407960064", + "text": "RT @winocm: DisARMing the iOS kernel - http://t.co/AdE5e7HmaR", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Fri May 30 17:05:05 +0000 2014", + "id": 472423465275121664, + "id_str": "472423465275121664", + "text": "DisARMing the iOS kernel - http://t.co/AdE5e7HmaR", + "source": "Tweetbot for Mac", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 428413732, + "id_str": "428413732" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 83, + "favorite_count": 118, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/AdE5e7HmaR", + "expanded_url": "http://winocm.com/technical/2014/05/30/disarming-the-ios-kernel/", + "display_url": "winocm.com/technical/2014…", + "indices": [ + 27, + 49 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "in" + }, + "retweet_count": 83, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "in" + }, + { + "created_at": "Fri May 30 18:02:41 +0000 2014", + "id": 472437957391945730, + "id_str": "472437957391945730", + "text": "What one of the unlockable characters is Metal Peach because Metal Mario wasn’t enough of a cop-out for inflating roster count", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 6, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 30 17:22:52 +0000 2014", + "id": 472427938064121856, + "id_str": "472427938064121856", + "text": "DH points out the Toads on the Mario Kart online screen are not tethered to anything in outer space, about to go the way of the kerbal", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 30 16:13:32 +0000 2014", + "id": 472410491944321025, + "id_str": "472410491944321025", + "text": "Major criticism: Mario Kart 8 has gone way overboard on specular and glow effects. Kills the cartoon aesthetic.", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 30 15:46:30 +0000 2014", + "id": 472403688141885440, + "id_str": "472403688141885440", + "text": "@ELLIOTTCABLE @m1sp check your major American city privilege", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472395304550301696, + "in_reply_to_status_id_str": "472395304550301696", + "in_reply_to_user_id": 771681, + "in_reply_to_user_id_str": "771681", + "in_reply_to_screen_name": "ELLIOTTCABLE", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 4, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 30 15:45:35 +0000 2014", + "id": 472403456544628739, + "id_str": "472403456544628739", + "text": "I can’t believe it. The Wii-U just took less than half an hour to apply an update. What went wro— oh haha that was just stage one", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 9, + "favorite_count": 12, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 30 15:00:51 +0000 2014", + "id": 472392197606629376, + "id_str": "472392197606629376", + "text": ".@Talen_Lee yeah the catch is that if you feel sick enough to stay home as an adult you’re often too sick to play video games anyway :(", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472391991762751488, + "in_reply_to_status_id_str": "472391991762751488", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 5, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 30 14:59:26 +0000 2014", + "id": 472391842353659905, + "id_str": "472391842353659905", + "text": "The most important thing about being an adult is that you can say “well *I* know I’m not lying to stay home sick, so I can play video games”", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 5, + "favorite_count": 17, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 30 14:47:11 +0000 2014", + "id": 472388760731402240, + "id_str": "472388760731402240", + "text": "@McGrewSecurity there’s a key difference, I think, in the audience understanding how to even", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472388409018028032, + "in_reply_to_status_id_str": "472388409018028032", + "in_reply_to_user_id": 13275122, + "in_reply_to_user_id_str": "13275122", + "in_reply_to_screen_name": "McGrewSecurity", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 30 14:41:45 +0000 2014", + "id": 472387393677295619, + "id_str": "472387393677295619", + "text": "@cmatthewbrooks I don’t think I know how to *not* tweet about an experience", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472386944832266241, + "in_reply_to_status_id_str": "472386944832266241", + "in_reply_to_user_id": 48436285, + "in_reply_to_user_id_str": "48436285", + "in_reply_to_screen_name": "cmatthewbrooks", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 30 14:30:57 +0000 2014", + "id": 472384675122778112, + "id_str": "472384675122778112", + "text": "@Dragoneral_ I didn’t say I’d stop eating!", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472384568553508864, + "in_reply_to_status_id_str": "472384568553508864", + "in_reply_to_user_id": 118106622, + "in_reply_to_user_id_str": "118106622", + "in_reply_to_screen_name": "Dragoneral_", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 30 14:29:31 +0000 2014", + "id": 472384312684580864, + "id_str": "472384312684580864", + "text": "@m1sp idk I kinda got this thing going about violent retribution from deities being problematic", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472378502000279552, + "in_reply_to_status_id_str": "472378502000279552", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 30 14:26:25 +0000 2014", + "id": 472383534427283456, + "id_str": "472383534427283456", + "text": "I want to try soylent, but my anti-hipster friends will make fun of me \n\nAlso still kinda hung up on the name", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 6, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 30 14:24:31 +0000 2014", + "id": 472383053437108224, + "id_str": "472383053437108224", + "text": "@homakov obviously those jobs should go to the native-born Americans who can’t afford to go to college to learn those skills", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472374873797320704, + "in_reply_to_status_id_str": "472374873797320704", + "in_reply_to_user_id": 86890115, + "in_reply_to_user_id_str": "86890115", + "in_reply_to_screen_name": "homakov", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 30 14:17:39 +0000 2014", + "id": 472381326075887616, + "id_str": "472381326075887616", + "text": "What an excellent photograph (by one Jack Kurtz) out of Bangkok. http://t.co/TKlmmwrLE3", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 28, + "favorite_count": 24, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri May 30 13:58:11 +0000 2014", + "id": 472376426688442368, + "id_str": "472376426688442368", + "text": "@m1sp I had a nightmare about being trapped in a car with three men, one of whom was frightening me, and the other two wouldn’t stop him :(", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 30 13:30:00 +0000 2014", + "id": 472369335097647104, + "id_str": "472369335097647104", + "text": "@techpractical I think she does both", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472336610777108480, + "in_reply_to_status_id_str": "472336610777108480", + "in_reply_to_user_id": 26243623, + "in_reply_to_user_id_str": "26243623", + "in_reply_to_screen_name": "techpractical", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 30 04:14:37 +0000 2014", + "id": 472229567072313344, + "id_str": "472229567072313344", + "text": "@FioraAeterna @m1sp male version http://t.co/BNSQsyLYlI", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472222698140348416, + "in_reply_to_status_id_str": "472222698140348416", + "in_reply_to_user_id": 2468699718, + "in_reply_to_user_id_str": "2468699718", + "in_reply_to_screen_name": "FioraAeterna", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "it" + }, + { + "created_at": "Fri May 30 03:59:03 +0000 2014", + "id": 472225651781820416, + "id_str": "472225651781820416", + "text": "@FioraAeterna @m1sp suddenly high definition http://t.co/JKL08sxPsR", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472222698140348416, + "in_reply_to_status_id_str": "472222698140348416", + "in_reply_to_user_id": 2468699718, + "in_reply_to_user_id_str": "2468699718", + "in_reply_to_screen_name": "FioraAeterna", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri May 30 03:45:21 +0000 2014", + "id": 472222202104786944, + "id_str": "472222202104786944", + "text": "@m1sp @FioraAeterna http://t.co/SbjknPLjIB", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472221603053334528, + "in_reply_to_status_id_str": "472221603053334528", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Fri May 30 03:44:56 +0000 2014", + "id": 472222100984320000, + "id_str": "472222100984320000", + "text": "@m1sp @FioraAeterna and full lips but you have to know my art style I guess. And her face shape changes slightly", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472221603053334528, + "in_reply_to_status_id_str": "472221603053334528", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 30 03:37:14 +0000 2014", + "id": 472220162834591745, + "id_str": "472220162834591745", + "text": "@m1sp @FioraAeterna my subjective opinion http://t.co/IzfDI9ZpBM", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472218212587675648, + "in_reply_to_status_id_str": "472218212587675648", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri May 30 03:28:33 +0000 2014", + "id": 472217975509225473, + "id_str": "472217975509225473", + "text": "@snare haha we’re not going to license our stuff to Australia anyway", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472216626247368704, + "in_reply_to_status_id_str": "472216626247368704", + "in_reply_to_user_id": 41244757, + "in_reply_to_user_id_str": "41244757", + "in_reply_to_screen_name": "snare", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 30 03:18:01 +0000 2014", + "id": 472215324310642688, + "id_str": "472215324310642688", + "text": "@Shufflejoy @Talen_Lee works with pizza etc", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472215241560825856, + "in_reply_to_status_id_str": "472215241560825856", + "in_reply_to_user_id": 1567524811, + "in_reply_to_user_id_str": "1567524811", + "in_reply_to_screen_name": "Shufflejoy", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 30 03:17:17 +0000 2014", + "id": 472215141413826560, + "id_str": "472215141413826560", + "text": "@Shufflejoy @Talen_Lee keeps things from drying out", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472215075177377792, + "in_reply_to_status_id_str": "472215075177377792", + "in_reply_to_user_id": 1567524811, + "in_reply_to_user_id_str": "1567524811", + "in_reply_to_screen_name": "Shufflejoy", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 30 03:01:08 +0000 2014", + "id": 472211074817609729, + "id_str": "472211074817609729", + "text": "Sure, I put a key generated in JavaScript in escrow through JavaScript \n\nBut keybase works on my iPad, so I’ve got that going for me", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 6, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 30 02:51:46 +0000 2014", + "id": 472208717879197696, + "id_str": "472208717879197696", + "text": "@CliffsEsport @matthew_d_green @kennwhite @runasand http://t.co/Xq9LnpmFs2", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472207964032733184, + "in_reply_to_status_id_str": "472207964032733184", + "in_reply_to_user_id": 388088647, + "in_reply_to_user_id_str": "388088647", + "in_reply_to_screen_name": "CliffsEsport", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Fri May 30 02:43:39 +0000 2014", + "id": 472206678314983424, + "id_str": "472206678314983424", + "text": "sic semper redditis", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 7, + "favorited": false, + "retweeted": false, + "lang": "it" + }, + { + "created_at": "Fri May 30 02:40:00 +0000 2014", + "id": 472205759263285248, + "id_str": "472205759263285248", + "text": "The redditor who confused me with someone else pulled out some Latin instead of admitting their mistake. That’s platonic ideal redditing", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 7, + "favorite_count": 17, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 30 02:36:11 +0000 2014", + "id": 472204798595719168, + "id_str": "472204798595719168", + "text": "@ErrataRob misfortune aside, it does look remarkably like a butterfly", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472204638671077376, + "in_reply_to_status_id_str": "472204638671077376", + "in_reply_to_user_id": 15300995, + "in_reply_to_user_id_str": "15300995", + "in_reply_to_screen_name": "ErrataRob", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 30 02:34:22 +0000 2014", + "id": 472204340082790400, + "id_str": "472204340082790400", + "text": "This would be the thread to read https://t.co/xjPlUyu785", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "quoted_status_id": 472200478345150464, + "quoted_status_id_str": "472200478345150464", + "retweet_count": 16, + "favorite_count": 8, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri May 30 02:32:43 +0000 2014", + "id": 472203923718426624, + "id_str": "472203923718426624", + "text": "@ErrataRob … dang.", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472203279292575744, + "in_reply_to_status_id_str": "472203279292575744", + "in_reply_to_user_id": 15300995, + "in_reply_to_user_id_str": "15300995", + "in_reply_to_screen_name": "ErrataRob", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "da" + }, + { + "created_at": "Fri May 30 02:31:44 +0000 2014", + "id": 472203678511022081, + "id_str": "472203678511022081", + "text": "@matthew_d_green @kennwhite @runasand join the inner circle of infosec rock stars. Don’t worry I’ll vouch for you", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472201884715872256, + "in_reply_to_status_id_str": "472201884715872256", + "in_reply_to_user_id": 106234268, + "in_reply_to_user_id_str": "106234268", + "in_reply_to_screen_name": "matthew_d_green", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 30 02:18:48 +0000 2014", + "id": 472200424649289728, + "id_str": "472200424649289728", + "text": "@TweetsofOld I think this goes with your tweet from a long time ago about a girl pulling a gun and shooting her dance partner", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472190030556200960, + "in_reply_to_status_id_str": "472190030556200960", + "in_reply_to_user_id": 66666549, + "in_reply_to_user_id_str": "66666549", + "in_reply_to_screen_name": "TweetsofOld", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 30 01:48:41 +0000 2014", + "id": 472192844195958784, + "id_str": "472192844195958784", + "text": "This is the first time in some months I've actually had both cause and time to use Hopper. http://t.co/TIHLPqgheE", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 10, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri May 30 01:34:53 +0000 2014", + "id": 472189372419538944, + "id_str": "472189372419538944", + "text": "Laundry thoughts: I like how the Ohio state quarter really nailed the one thing you need to know about Ohio. http://t.co/XgF2pujJ1C", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 6, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri May 30 01:16:48 +0000 2014", + "id": 472184820018475008, + "id_str": "472184820018475008", + "text": "@WhiteMageSlave for some reason I envision them looking and talking like Father's kids from KND", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 472184564790480896, + "in_reply_to_status_id_str": "472184564790480896", + "in_reply_to_user_id": 90791634, + "in_reply_to_user_id_str": "90791634", + "in_reply_to_screen_name": "WhiteMageSlave", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 30 00:53:42 +0000 2014", + "id": 472179007728123904, + "id_str": "472179007728123904", + "text": "@lukelarris this is one way to discover that passwording a zip does not hide the filenames :)", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 472178791385534464, + "in_reply_to_status_id_str": "472178791385534464", + "in_reply_to_user_id": 205346414, + "in_reply_to_user_id_str": "205346414", + "in_reply_to_screen_name": "lukelarris", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 30 00:53:17 +0000 2014", + "id": 472178901272502272, + "id_str": "472178901272502272", + "text": "@lukelarris I don't think they fully extract things. But they parse the internal directory structure yes.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 472178791385534464, + "in_reply_to_status_id_str": "472178791385534464", + "in_reply_to_user_id": 205346414, + "in_reply_to_user_id_str": "205346414", + "in_reply_to_screen_name": "lukelarris", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 30 00:52:20 +0000 2014", + "id": 472178663048617984, + "id_str": "472178663048617984", + "text": "@blowdart that is in fact central to my thesis", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 472178565203521537, + "in_reply_to_status_id_str": "472178565203521537", + "in_reply_to_user_id": 1847381, + "in_reply_to_user_id_str": "1847381", + "in_reply_to_screen_name": "blowdart", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 30 00:47:37 +0000 2014", + "id": 472177475129475072, + "id_str": "472177475129475072", + "text": "\"This archive contains an executable. For security reasons...\" Gmail nobody has ever once caught a Windows virus from a *tar* file", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 14, + "favorite_count": 29, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 30 00:30:05 +0000 2014", + "id": 472173064323493889, + "id_str": "472173064323493889", + "text": "@ELLIOTTCABLE I just have “boys in ropes” on my desktop", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472172728095887360, + "in_reply_to_status_id_str": "472172728095887360", + "in_reply_to_user_id": 771681, + "in_reply_to_user_id_str": "771681", + "in_reply_to_screen_name": "ELLIOTTCABLE", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 30 00:29:18 +0000 2014", + "id": 472172864742125568, + "id_str": "472172864742125568", + "text": "@zhuowei tremble at the wonder, hear the tempest cry", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472172739302670336, + "in_reply_to_status_id_str": "472172739302670336", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 30 00:27:40 +0000 2014", + "id": 472172454350454784, + "id_str": "472172454350454784", + "text": "@zhuowei (do you need me to define those acronyms? XD)", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472170247500603392, + "in_reply_to_status_id_str": "472170247500603392", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 30 00:23:09 +0000 2014", + "id": 472171318935576576, + "id_str": "472171318935576576", + "text": "@zhuowei if that’s mine, it’s probably a radio waterfall", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472164921317150720, + "in_reply_to_status_id_str": "472164921317150720", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 30 00:21:40 +0000 2014", + "id": 472170945558634496, + "id_str": "472170945558634496", + "text": "@zhuowei the cicadas one isn’t RitS! As it says, it’s either TatW or HtTC :)", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472170247500603392, + "in_reply_to_status_id_str": "472170247500603392", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 30 00:17:35 +0000 2014", + "id": 472169916557459456, + "id_str": "472169916557459456", + "text": "@zhuowei I’m really glad my most dedicated stalker is a fiction fan and not a crazed axe murderer", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472158035402448896, + "in_reply_to_status_id_str": "472158035402448896", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 30 00:11:38 +0000 2014", + "id": 472168419211878401, + "id_str": "472168419211878401", + "text": "@jennifurret like clockwork.", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472151278584201216, + "in_reply_to_status_id_str": "472151278584201216", + "in_reply_to_user_id": 42256596, + "in_reply_to_user_id_str": "42256596", + "in_reply_to_screen_name": "jennifurret", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 30 00:05:25 +0000 2014", + "id": 472166855017496578, + "id_str": "472166855017496578", + "text": "@RandomMasta I uhh you might want to go check their website, after which you’ll know as much as the rest of us", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472166051501731840, + "in_reply_to_status_id_str": "472166051501731840", + "in_reply_to_user_id": 69521646, + "in_reply_to_user_id_str": "69521646", + "in_reply_to_screen_name": "RandomMasta", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 23:46:26 +0000 2014", + "id": 472162077969502208, + "id_str": "472162077969502208", + "text": "@RobChahin @jmgosney @dakami \"or\"? I didn't present a theory as to why...", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 472161747265007616, + "in_reply_to_status_id_str": "472161747265007616", + "in_reply_to_user_id": 351896200, + "in_reply_to_user_id_str": "351896200", + "in_reply_to_screen_name": "RobChahin", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 23:38:19 +0000 2014", + "id": 472160035184070656, + "id_str": "472160035184070656", + "text": "Like, okay, sometimes you have to click that context link and that's *work*, but I've been accused of writing so many posts I didn't", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 23:35:02 +0000 2014", + "id": 472159208784527361, + "id_str": "472159208784527361", + "text": "There's a correlation on reddit between having a dumb post and not being able to keep track of different usernames in a thread.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 11, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 23:08:24 +0000 2014", + "id": 472152506483875840, + "id_str": "472152506483875840", + "text": "@kennwhite reckon I should follow back if I'm going to be so emotionally invested in this", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 42992649, + "in_reply_to_user_id_str": "42992649", + "in_reply_to_screen_name": "kennwhite", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 23:04:25 +0000 2014", + "id": 472151504363986944, + "id_str": "472151504363986944", + "text": "RT @OpenCryptoAudit: In addition, we will be leading a phase I full audit of OpenSSL in partnership with the Linux Foundation Critical Infr…", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Thu May 29 21:43:22 +0000 2014", + "id": 472131109019340800, + "id_str": "472131109019340800", + "text": "In addition, we will be leading a phase I full audit of OpenSSL in partnership with the Linux Foundation Critical Infrastructure Initiative.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 1960941205, + "id_str": "1960941205" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 99, + "favorite_count": 38, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 99, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 23:04:16 +0000 2014", + "id": 472151466170675201, + "id_str": "472151466170675201", + "text": "RT @OpenCryptoAudit: We are continuing forward with formal cryptanalysis of TrueCrypt 7.1 as committed, and hope to deliver a final audit r…", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Thu May 29 21:40:44 +0000 2014", + "id": 472130444977131520, + "id_str": "472130444977131520", + "text": "We are continuing forward with formal cryptanalysis of TrueCrypt 7.1 as committed, and hope to deliver a final audit report in a few months.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 1960941205, + "id_str": "1960941205" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 205, + "favorite_count": 71, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 205, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 22:56:59 +0000 2014", + "id": 472149633406599168, + "id_str": "472149633406599168", + "text": "@FiloSottile ahh sorry.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 472148770629885952, + "in_reply_to_status_id_str": "472148770629885952", + "in_reply_to_user_id": 51049452, + "in_reply_to_user_id_str": "51049452", + "in_reply_to_screen_name": "FiloSottile", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "ht" + }, + { + "created_at": "Thu May 29 22:51:06 +0000 2014", + "id": 472148153312243712, + "id_str": "472148153312243712", + "text": "@FiloSottile @thegrugq they don't even follow me, to whom it was at'd, so I think that's.... random drunk tweeting or something", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 472146582352449536, + "in_reply_to_status_id_str": "472146582352449536", + "in_reply_to_user_id": 51049452, + "in_reply_to_user_id_str": "51049452", + "in_reply_to_screen_name": "FiloSottile", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 22:49:10 +0000 2014", + "id": 472147664860360704, + "id_str": "472147664860360704", + "text": "@DrPizza the only other one I know of is bindiff which I'm pretty sure has an ida dependency", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 472140502331293696, + "in_reply_to_status_id_str": "472140502331293696", + "in_reply_to_user_id": 11375732, + "in_reply_to_user_id_str": "11375732", + "in_reply_to_screen_name": "DrPizza", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 22:48:35 +0000 2014", + "id": 472147518567227392, + "id_str": "472147518567227392", + "text": "@adamcaudill in this case it nukes the entire manual and does not replace it with a shorter one afaict.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 472139530880159744, + "in_reply_to_status_id_str": "472139530880159744", + "in_reply_to_user_id": 23242312, + "in_reply_to_user_id_str": "23242312", + "in_reply_to_screen_name": "adamcaudill", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 22:11:24 +0000 2014", + "id": 472138163201531905, + "id_str": "472138163201531905", + "text": "@DrPizza I think http://t.co/B31NILcDq9 ?", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 472137317218807809, + "in_reply_to_status_id_str": "472137317218807809", + "in_reply_to_user_id": 11375732, + "in_reply_to_user_id_str": "11375732", + "in_reply_to_screen_name": "DrPizza", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 21:42:21 +0000 2014", + "id": 472130850428305409, + "id_str": "472130850428305409", + "text": "@dorianmuthig well I haven't blocked you I don't think so that's not why", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 472126706308763648, + "in_reply_to_status_id_str": "472126706308763648", + "in_reply_to_user_id": 13362412, + "in_reply_to_user_id_str": "13362412", + "in_reply_to_screen_name": "dorianmuthig", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 21:26:06 +0000 2014", + "id": 472126762810630144, + "id_str": "472126762810630144", + "text": "@patient_0x00 well who'd quit auditing it now! :)", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 472126085967405056, + "in_reply_to_status_id_str": "472126085967405056", + "in_reply_to_user_id": 1643671861, + "in_reply_to_user_id_str": "1643671861", + "in_reply_to_screen_name": "patient_0x00", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 21:25:47 +0000 2014", + "id": 472126683425021952, + "id_str": "472126683425021952", + "text": "@dakami it removed the code to install it, and added code (shown here) to delete it from the expected location. http://t.co/nfrEais5z3", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 472125965213401088, + "in_reply_to_status_id_str": "472125965213401088", + "in_reply_to_user_id": 8917142, + "in_reply_to_user_id_str": "8917142", + "in_reply_to_screen_name": "dakami", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 17, + "favorite_count": 5, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 21:20:41 +0000 2014", + "id": 472125398642601984, + "id_str": "472125398642601984", + "text": "also the new version goes out of its way to seek out and destroy your local copy of the truecrypt user manual!", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 25, + "favorite_count": 11, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 21:18:47 +0000 2014", + "id": 472124921708310528, + "id_str": "472124921708310528", + "text": "@rfc1459 that might have actually been fixing a stupid loophole in what they were trying to forbid re: name re-use", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 472124641700745217, + "in_reply_to_status_id_str": "472124641700745217", + "in_reply_to_user_id": 59219903, + "in_reply_to_user_id_str": "59219903", + "in_reply_to_screen_name": "rfc1459", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 21:15:57 +0000 2014", + "id": 472124206273294338, + "id_str": "472124206273294338", + "text": "@JZdziarski but this is very explicitly human-generated text which was edited to remove still-valid information", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 472123976685457409, + "in_reply_to_status_id_str": "472123976685457409", + "in_reply_to_user_id": 1267770224, + "in_reply_to_user_id_str": "1267770224", + "in_reply_to_screen_name": "JZdziarski", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 21:15:33 +0000 2014", + "id": 472124107862315008, + "id_str": "472124107862315008", + "text": "@JZdziarski I myself have repeatedly pointed out that the US/United States is almost certainly caused by updating Visual Studio", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 472123976685457409, + "in_reply_to_status_id_str": "472123976685457409", + "in_reply_to_user_id": 1267770224, + "in_reply_to_user_id_str": "1267770224", + "in_reply_to_screen_name": "JZdziarski", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 21:14:36 +0000 2014", + "id": 472123870162731009, + "id_str": "472123870162731009", + "text": "@JZdziarski but this is a human-generated readme??", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 472123638553260032, + "in_reply_to_status_id_str": "472123638553260032", + "in_reply_to_user_id": 1267770224, + "in_reply_to_user_id_str": "1267770224", + "in_reply_to_screen_name": "JZdziarski", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 21:13:57 +0000 2014", + "id": 472123706194800640, + "id_str": "472123706194800640", + "text": "Actually they removed several different URLs of where to source the components to actually build the thing.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 21:12:51 +0000 2014", + "id": 472123427873370113, + "id_str": "472123427873370113", + "text": "If you're looking for canaries in the diff, the removal of this perfectly working URL is a bit odd. http://t.co/qJA2UWi5zw", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 10, + "favorite_count": 13, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 21:01:55 +0000 2014", + "id": 472120677013925889, + "id_str": "472120677013925889", + "text": "also against the ragequit theory: the new decrypt-only code is thoroughly documented and robust at ordinary non-tableflip levels", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 6, + "favorite_count": 13, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 20:53:07 +0000 2014", + "id": 472118463528706049, + "id_str": "472118463528706049", + "text": "@munin @puellavulnerata -- some flags changing their exact numeric value for no apparent reason", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 472117851189690368, + "in_reply_to_status_id_str": "472117851189690368", + "in_reply_to_user_id": 8513352, + "in_reply_to_user_id_str": "8513352", + "in_reply_to_screen_name": "munin", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 20:52:41 +0000 2014", + "id": 472118354116083713, + "id_str": "472118354116083713", + "text": "@munin @puellavulnerata aside from the US/United States thing which is reasonably explained as upgrading compiler, I notice --", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 472117851189690368, + "in_reply_to_status_id_str": "472117851189690368", + "in_reply_to_user_id": 8513352, + "in_reply_to_user_id_str": "8513352", + "in_reply_to_screen_name": "munin", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 20:50:52 +0000 2014", + "id": 472117897213804544, + "id_str": "472117897213804544", + "text": "@trollied you have just as much evidence for that as I do, I am pretty sure, ie, giant question mark", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 472117703046881280, + "in_reply_to_status_id_str": "472117703046881280", + "in_reply_to_user_id": 19180664, + "in_reply_to_user_id_str": "19180664", + "in_reply_to_screen_name": "trollied", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 20:48:18 +0000 2014", + "id": 472117248413696000, + "id_str": "472117248413696000", + "text": "@munin @puellavulnerata do you mean in the 7.2 diff?", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 472116663937429504, + "in_reply_to_status_id_str": "472116663937429504", + "in_reply_to_user_id": 8513352, + "in_reply_to_user_id_str": "8513352", + "in_reply_to_screen_name": "munin", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 20:40:59 +0000 2014", + "id": 472115407315566592, + "id_str": "472115407315566592", + "text": "The big problem with the ragequit theory is that the dev missed huge opportunities to make us all feel guilty for not being better users.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 5, + "favorite_count": 7, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 20:40:04 +0000 2014", + "id": 472115179581616129, + "id_str": "472115179581616129", + "text": "@waddlesplash I don't even have aero enabled.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 472114813905031168, + "in_reply_to_status_id_str": "472114813905031168", + "in_reply_to_user_id": 1905556465, + "in_reply_to_user_id_str": "1905556465", + "in_reply_to_screen_name": "waddlesplash", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 20:29:25 +0000 2014", + "id": 472112498809008128, + "id_str": "472112498809008128", + "text": "@eqe … >.>", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472111010791186432, + "in_reply_to_status_id_str": "472111010791186432", + "in_reply_to_user_id": 16076004, + "in_reply_to_user_id_str": "16076004", + "in_reply_to_screen_name": "eqe", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "pt" + }, + { + "created_at": "Thu May 29 20:15:51 +0000 2014", + "id": 472109084008009728, + "id_str": "472109084008009728", + "text": "@PatrickAK the paid auditors claim they haven’t yet found anything new of such a serious nature", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472108950465150976, + "in_reply_to_status_id_str": "472108950465150976", + "in_reply_to_user_id": 19757562, + "in_reply_to_user_id_str": "19757562", + "in_reply_to_screen_name": "PatrickAK", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 20:15:01 +0000 2014", + "id": 472108874217316353, + "id_str": "472108874217316353", + "text": "@elad3 BUT one would think if someone were that angry they’d be more overt in explaining their feelings", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472108437392723968, + "in_reply_to_status_id_str": "472108437392723968", + "in_reply_to_user_id": 160897504, + "in_reply_to_user_id_str": "160897504", + "in_reply_to_screen_name": "elad3", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 20:14:25 +0000 2014", + "id": 472108722106695680, + "id_str": "472108722106695680", + "text": "@elad3 nah see I think it’d make sense to be like “ugh I am so angry about how this is going, just use bitlocker why don’t you, ungratefuls”", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472108437392723968, + "in_reply_to_status_id_str": "472108437392723968", + "in_reply_to_user_id": 160897504, + "in_reply_to_user_id_str": "160897504", + "in_reply_to_screen_name": "elad3", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 20:12:31 +0000 2014", + "id": 472108242932617216, + "id_str": "472108242932617216", + "text": "@elad3 IMO the developer ragequit is still plausible but it would be bizarre to poison your own well that way", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472107903285882880, + "in_reply_to_status_id_str": "472107903285882880", + "in_reply_to_user_id": 160897504, + "in_reply_to_user_id_str": "160897504", + "in_reply_to_screen_name": "elad3", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 20:08:45 +0000 2014", + "id": 472107295598706690, + "id_str": "472107295598706690", + "text": "@elad3 nope and dunno ¯\\(º_o)/¯", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472107156498415616, + "in_reply_to_status_id_str": "472107156498415616", + "in_reply_to_user_id": 160897504, + "in_reply_to_user_id_str": "160897504", + "in_reply_to_screen_name": "elad3", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "nl" + }, + { + "created_at": "Thu May 29 20:08:29 +0000 2014", + "id": 472107231295848448, + "id_str": "472107231295848448", + "text": "@runasand @elad3 you’re a hero and a saint", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472107057714593792, + "in_reply_to_status_id_str": "472107057714593792", + "in_reply_to_user_id": 19959946, + "in_reply_to_user_id_str": "19959946", + "in_reply_to_screen_name": "runasand", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 20:08:03 +0000 2014", + "id": 472107120067088384, + "id_str": "472107120067088384", + "text": "@elad3 @runasand though I guess that means I was wrong about there being literally nothing to do and I’m just scared of paperwork 😞", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472105893606084608, + "in_reply_to_status_id_str": "472105893606084608", + "in_reply_to_user_id": 160897504, + "in_reply_to_user_id_str": "160897504", + "in_reply_to_screen_name": "elad3", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 20:04:14 +0000 2014", + "id": 472106160087379968, + "id_str": "472106160087379968", + "text": "@elad3 I *assume* @runasand is all over that because she files a lot of foias but these things can take ages just to return nothing", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 472105893606084608, + "in_reply_to_status_id_str": "472105893606084608", + "in_reply_to_user_id": 160897504, + "in_reply_to_user_id_str": "160897504", + "in_reply_to_screen_name": "elad3", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 20:02:22 +0000 2014", + "id": 472105689868156928, + "id_str": "472105689868156928", + "text": "@trifster probably not, if they covered that the auditors are as surprised as the rest of us", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472105417318092800, + "in_reply_to_status_id_str": "472105417318092800", + "in_reply_to_user_id": 1421371, + "in_reply_to_user_id_str": "1421371", + "in_reply_to_screen_name": "trifster", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 20:00:26 +0000 2014", + "id": 472105204541054976, + "id_str": "472105204541054976", + "text": "Ugh, I am nearly literally tearing my hair out over the little details not adding up over the TrueCrypt thing but there’s nothing more to do", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 7, + "favorite_count": 9, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 19:46:07 +0000 2014", + "id": 472101600325283840, + "id_str": "472101600325283840", + "text": "@LPGhatguy ps I already dislikeVisual Studio so this whole discussion is kind of a moot point as I was expressing my antipathy for it", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 472100904892514305, + "in_reply_to_status_id_str": "472100904892514305", + "in_reply_to_user_id": 40690084, + "in_reply_to_user_id_str": "40690084", + "in_reply_to_screen_name": "LPGhatguy", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 19:44:29 +0000 2014", + "id": 472101191577784320, + "id_str": "472101191577784320", + "text": "@LPGhatguy the VS compiler. I barely even know what Blend is, it's just on the logo of the Visual Studio all-in-one installer.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 472100904892514305, + "in_reply_to_status_id_str": "472100904892514305", + "in_reply_to_user_id": 40690084, + "in_reply_to_user_id_str": "40690084", + "in_reply_to_screen_name": "LPGhatguy", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 19:43:23 +0000 2014", + "id": 472100913809993728, + "id_str": "472100913809993728", + "text": "@Tommaso_Scalici your client is glitching...?", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 472100665804992512, + "in_reply_to_status_id_str": "472100665804992512", + "in_reply_to_user_id": 2422053098, + "in_reply_to_user_id_str": "2422053098", + "in_reply_to_screen_name": "Tommaso_Scalici", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 19:41:31 +0000 2014", + "id": 472100444639358977, + "id_str": "472100444639358977", + "text": "@LPGhatguy @Tommaso_Scalici it's a subset of *Visual Studio* is what I meant.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 472100274908053504, + "in_reply_to_status_id_str": "472100274908053504", + "in_reply_to_user_id": 40690084, + "in_reply_to_user_id_str": "40690084", + "in_reply_to_screen_name": "LPGhatguy", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 19:34:54 +0000 2014", + "id": 472098779311931392, + "id_str": "472098779311931392", + "text": "@LPGhatguy @Tommaso_Scalici that makes perfect sense not to care in some contexts, but one isn’t a subset of the other :)", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472098418798493696, + "in_reply_to_status_id_str": "472098418798493696", + "in_reply_to_user_id": 40690084, + "in_reply_to_user_id_str": "40690084", + "in_reply_to_screen_name": "LPGhatguy", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 19:34:11 +0000 2014", + "id": 472098596159246336, + "id_str": "472098596159246336", + "text": "@Tommaso_Scalici I install it all because every now and then something stupid comes up in this job", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472098366462365696, + "in_reply_to_status_id_str": "472098366462365696", + "in_reply_to_user_id": 2422053098, + "in_reply_to_user_id_str": "2422053098", + "in_reply_to_screen_name": "Tommaso_Scalici", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 19:31:21 +0000 2014", + "id": 472097884826267648, + "id_str": "472097884826267648", + "text": "@Tommaso_Scalici @LPGhatguy I’m not “mixing them up.” I simply don’t *care* about any of the other junk.", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472097540406796288, + "in_reply_to_status_id_str": "472097540406796288", + "in_reply_to_user_id": 2422053098, + "in_reply_to_user_id_str": "2422053098", + "in_reply_to_screen_name": "Tommaso_Scalici", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 19:28:54 +0000 2014", + "id": 472097268502659073, + "id_str": "472097268502659073", + "text": "@Packetknife btw I’m not sure if my replies went through Twitter API is being weird today", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 19564254, + "in_reply_to_user_id_str": "19564254", + "in_reply_to_screen_name": "Packetknife", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 19:23:16 +0000 2014", + "id": 472095848877539329, + "id_str": "472095848877539329", + "text": "You’d think by now I’d remember that Visual Studio likes to shut down without consent during the install process but nope surprised again", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 6, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 19:21:27 +0000 2014", + "id": 472095392897982465, + "id_str": "472095392897982465", + "text": "RT @radikmiranda: Some cis people don't believe me when I say cis people treat me like shit every day. Then shit like this happens: http://…", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Thu May 29 07:35:08 +0000 2014", + "id": 471917640890335232, + "id_str": "471917640890335232", + "text": "Some cis people don't believe me when I say cis people treat me like shit every day. Then shit like this happens: http://t.co/OlYH0bSXrm", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 10789392, + "id_str": "10789392" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 71, + "favorite_count": 19, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/OlYH0bSXrm", + "expanded_url": "http://roygbiv.jezebel.com/trans-women-assaulted-on-train-one-stripped-passenger-1582963179", + "display_url": "roygbiv.jezebel.com/trans-women-as…", + "indices": [ + 114, + 136 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 71, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 19:18:04 +0000 2014", + "id": 472094540187594753, + "id_str": "472094540187594753", + "text": "\"Premium 2012 With Blend\" sounds more like a kind of coffee than a kind of compiler", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 12, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 19:12:16 +0000 2014", + "id": 472093081760976896, + "id_str": "472093081760976896", + "text": "@geekable 360 controller is acceptable, it's what I use for PC gaming.\n\nAlso, you're not supposed to play Mario Party that way!", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 472092720408707072, + "in_reply_to_status_id_str": "472092720408707072", + "in_reply_to_user_id": 755035, + "in_reply_to_user_id_str": "755035", + "in_reply_to_screen_name": "geekable", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 19:11:29 +0000 2014", + "id": 472092886092500992, + "id_str": "472092886092500992", + "text": "@rfc1459 if it somehow presents itself the same as the built in gamecube controller slots did on the wii... maybe it could magically work", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 472090415089614848, + "in_reply_to_status_id_str": "472090415089614848", + "in_reply_to_user_id": 59219903, + "in_reply_to_user_id_str": "59219903", + "in_reply_to_screen_name": "rfc1459", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 19:07:50 +0000 2014", + "id": 472091968273940481, + "id_str": "472091968273940481", + "text": "@beemoh @mftb how did I miss this", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472091773742116865, + "in_reply_to_status_id_str": "472091773742116865", + "in_reply_to_user_id": 17175294, + "in_reply_to_user_id_str": "17175294", + "in_reply_to_screen_name": "beemoh", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 19:07:36 +0000 2014", + "id": 472091907326492674, + "id_str": "472091907326492674", + "text": "“That’s defeat. In the form of doing what they do best, selling more peripherals” — @codeferret_", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 19:05:46 +0000 2014", + "id": 472091447253295104, + "id_str": "472091447253295104", + "text": "@geekable despicable, why are we even friends", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472091295217758208, + "in_reply_to_status_id_str": "472091295217758208", + "in_reply_to_user_id": 755035, + "in_reply_to_user_id_str": "755035", + "in_reply_to_screen_name": "geekable", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 19:04:23 +0000 2014", + "id": 472091097536430081, + "id_str": "472091097536430081", + "text": "@tenfootfangs IMO it’s already perfect unless you want a bigger one for the range of American adult hand sizes", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472090703125032961, + "in_reply_to_status_id_str": "472090703125032961", + "in_reply_to_user_id": 22337789, + "in_reply_to_user_id_str": "22337789", + "in_reply_to_screen_name": "tenfootfangs", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 19:03:26 +0000 2014", + "id": 472090857295081472, + "id_str": "472090857295081472", + "text": "Also that photo implies they’re reissuing the controller thus ending our long nightmare of breaking our last working GC controllers", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 19:01:45 +0000 2014", + "id": 472090435234824193, + "id_str": "472090435234824193", + "text": "@tenfootfangs look at the photo… that’s a reissued controller", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472090278300774401, + "in_reply_to_status_id_str": "472090278300774401", + "in_reply_to_user_id": 22337789, + "in_reply_to_user_id_str": "22337789", + "in_reply_to_screen_name": "tenfootfangs", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 19:00:18 +0000 2014", + "id": 472090072339447809, + "id_str": "472090072339447809", + "text": "@NintendoAmerica @tenfootfangs oh my gods Nintendo finally figured it out good job", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472076848382607361, + "in_reply_to_status_id_str": "472076848382607361", + "in_reply_to_user_id": 5162861, + "in_reply_to_user_id_str": "5162861", + "in_reply_to_screen_name": "NintendoAmerica", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 18:58:18 +0000 2014", + "id": 472089567064231936, + "id_str": "472089567064231936", + "text": "We perfected controllers in 2001 then threw it all out for the wiimote so here’s an adapter sorry please forgive https://t.co/BkQBygevOB", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "quoted_status_id": 472076848382607361, + "quoted_status_id_str": "472076848382607361", + "retweet_count": 17, + "favorite_count": 17, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 18:28:00 +0000 2014", + "id": 472081943103016961, + "id_str": "472081943103016961", + "text": "@travisgoodspeed because that’s within the web layer, not beneath it", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472081811787362304, + "in_reply_to_status_id_str": "472081811787362304", + "in_reply_to_user_id": 81458523, + "in_reply_to_user_id_str": "81458523", + "in_reply_to_screen_name": "travisgoodspeed", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 18:26:58 +0000 2014", + "id": 472081680518635520, + "id_str": "472081680518635520", + "text": "@kwanre I’m pretty sure that’s mostly just hanging out getting wasted", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472081558846046208, + "in_reply_to_status_id_str": "472081558846046208", + "in_reply_to_user_id": 1526102340, + "in_reply_to_user_id_str": "1526102340", + "in_reply_to_screen_name": "kwanre", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 18:26:58 +0000 2014", + "id": 472081680518635520, + "id_str": "472081680518635520", + "text": "@kwanre I’m pretty sure that’s mostly just hanging out getting wasted", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472081558846046208, + "in_reply_to_status_id_str": "472081558846046208", + "in_reply_to_user_id": 1526102340, + "in_reply_to_user_id_str": "1526102340", + "in_reply_to_screen_name": "kwanre", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 18:25:57 +0000 2014", + "id": 472081426117300224, + "id_str": "472081426117300224", + "text": "@travisgoodspeed okay I actually don’t think that’s fair: “web development” should get to presume a TCP/IP stack is provided", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472080931205820416, + "in_reply_to_status_id_str": "472080931205820416", + "in_reply_to_user_id": 81458523, + "in_reply_to_user_id_str": "81458523", + "in_reply_to_screen_name": "travisgoodspeed", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 18:22:10 +0000 2014", + "id": 472080472772984834, + "id_str": "472080472772984834", + "text": "RT @m1sp: Human names make programming difficult. Henceforth you shall all be known by the GUID hash of your somatic cell consensus genome …", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Thu May 29 15:45:25 +0000 2014", + "id": 472041026891182080, + "id_str": "472041026891182080", + "text": "Human names make programming difficult. Henceforth you shall all be known by the GUID hash of your somatic cell consensus genome sequence", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 1007638597, + "id_str": "1007638597" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 32, + "favorite_count": 54, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 32, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 18:20:38 +0000 2014", + "id": 472080086402101248, + "id_str": "472080086402101248", + "text": "@travisgoodspeed is this a challenge \n\nData appended to convince twitter this is not a fraudulent tweet", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": 472038950669123584, + "in_reply_to_status_id_str": "472038950669123584", + "in_reply_to_user_id": 81458523, + "in_reply_to_user_id_str": "81458523", + "in_reply_to_screen_name": "travisgoodspeed", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 18:16:09 +0000 2014", + "id": 472078961623982080, + "id_str": "472078961623982080", + "text": "I’m going to be home alone for over a week because… my husband is going to the wedding of a DOTA teammate", + "source": "Tweetbot for iΟS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 19, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 18:07:19 +0000 2014", + "id": 472076735283216384, + "id_str": "472076735283216384", + "text": "ps if you see me censor a company or product name you can bet it's because their sales team has annoyed me on twitter", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 11, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 17:55:27 +0000 2014", + "id": 472073751774101504, + "id_str": "472073751774101504", + "text": "(dwm.exe is kind of more than a little bit mandatory to... use the desktop windows manager, such as b*t9 would display through...)", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 17:53:52 +0000 2014", + "id": 472073354061824000, + "id_str": "472073354061824000", + "text": "@Talen_Lee spotted in wild: Jesus ❤️ Me baseball cap, matching mirror ornament, AND a Bible, all on same car dashboard", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 17:51:42 +0000 2014", + "id": 472072807959232514, + "id_str": "472072807959232514", + "text": "\"B*t9 has blocked dwm.exe\"\n\nUhhh\n\n*clicks allow* \n\nUhhhhh......", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 7, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 17:09:46 +0000 2014", + "id": 472062254918418432, + "id_str": "472062254918418432", + "text": "@kwanre I have a MacBook Air, a Lenovo y510p and a Acer tablet whose model I forget", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 472061981349122048, + "in_reply_to_status_id_str": "472061981349122048", + "in_reply_to_user_id": 1526102340, + "in_reply_to_user_id_str": "1526102340", + "in_reply_to_screen_name": "kwanre", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 17:09:04 +0000 2014", + "id": 472062076081700864, + "id_str": "472062076081700864", + "text": "@WithMetta a bit ☺️", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 472061932997189632, + "in_reply_to_status_id_str": "472061932997189632", + "in_reply_to_user_id": 7376512, + "in_reply_to_user_id_str": "7376512", + "in_reply_to_screen_name": "WithMetta", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 17:06:34 +0000 2014", + "id": 472061447917547522, + "id_str": "472061447917547522", + "text": "(When I say work laptop I mean: work-provided and work-mandated laptop. They won't let me BYOD for the purpose in question)", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 17:04:57 +0000 2014", + "id": 472061043674714112, + "id_str": "472061043674714112", + "text": "@dakami it's not me buying these things or there'd be no issue to begin with", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 472060773976801281, + "in_reply_to_status_id_str": "472060773976801281", + "in_reply_to_user_id": 8917142, + "in_reply_to_user_id_str": "8917142", + "in_reply_to_screen_name": "dakami", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 17:02:54 +0000 2014", + "id": 472060525938225152, + "id_str": "472060525938225152", + "text": "@kwanre @thegrugq they are pretty well locked down but in the sort of way that pegs a core consistently", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 472059751631978496, + "in_reply_to_status_id_str": "472059751631978496", + "in_reply_to_user_id": 1526102340, + "in_reply_to_user_id_str": "1526102340", + "in_reply_to_screen_name": "kwanre", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 16:53:10 +0000 2014", + "id": 472058074824724480, + "id_str": "472058074824724480", + "text": "@thegrugq yeah it's pretty horrible actually\n\nbut bla bla millions of dollars worth of IP on my hard drive", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 472057848395235330, + "in_reply_to_status_id_str": "472057848395235330", + "in_reply_to_user_id": 18983429, + "in_reply_to_user_id_str": "18983429", + "in_reply_to_screen_name": "thegrugq", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 16:52:21 +0000 2014", + "id": 472057871363223553, + "id_str": "472057871363223553", + "text": "@jesster_king @Kotaku not any sillier than any of the others", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 472057725648502784, + "in_reply_to_status_id_str": "472057725648502784", + "in_reply_to_user_id": 46763517, + "in_reply_to_user_id_str": "46763517", + "in_reply_to_screen_name": "jesster_king", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 16:51:35 +0000 2014", + "id": 472057677619949568, + "id_str": "472057677619949568", + "text": "@thegrugq like my personal laptops are objectively superior to these ones in every single way, if I could use them I would", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 472057393137086465, + "in_reply_to_status_id_str": "472057393137086465", + "in_reply_to_user_id": 18983429, + "in_reply_to_user_id_str": "18983429", + "in_reply_to_screen_name": "thegrugq", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 16:51:09 +0000 2014", + "id": 472057570098937856, + "id_str": "472057570098937856", + "text": "@thegrugq ummmmmm\n\nIf only I had any control over what my workplace stocks...?", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 472057393137086465, + "in_reply_to_status_id_str": "472057393137086465", + "in_reply_to_user_id": 18983429, + "in_reply_to_user_id_str": "18983429", + "in_reply_to_screen_name": "thegrugq", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 16:50:35 +0000 2014", + "id": 472057425852645376, + "id_str": "472057425852645376", + "text": "of course being a good scientist I'm repeatedly closing the lid, rebooting, and checking the Windows logs instead of going to lunch", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 16:49:16 +0000 2014", + "id": 472057096788529152, + "id_str": "472057096788529152", + "text": "@jesster_king ಠ_ಠ", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 472056921524953088, + "in_reply_to_status_id_str": "472056921524953088", + "in_reply_to_user_id": 46763517, + "in_reply_to_user_id_str": "46763517", + "in_reply_to_screen_name": "jesster_king", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "kn" + }, + { + "created_at": "Thu May 29 16:48:57 +0000 2014", + "id": 472057017029644288, + "id_str": "472057017029644288", + "text": "also just when I thought I *finally* had everything squared away with getting a good work laptop, it crashes on resume every time", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 16:44:16 +0000 2014", + "id": 472055837180325888, + "id_str": "472055837180325888", + "text": "How does one file a ticket for the ticket-filing interface rendering as blank", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 8, + "favorite_count": 6, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 16:32:16 +0000 2014", + "id": 472052815159111680, + "id_str": "472052815159111680", + "text": "@abrahamvegh the cli client solves *that* but then throws out about 80% of the usability of the browser design (still better than gpg!)", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 472052243630657537, + "in_reply_to_status_id_str": "472052243630657537", + "in_reply_to_user_id": 19140065, + "in_reply_to_user_id_str": "19140065", + "in_reply_to_screen_name": "abrahamvegh", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 16:30:45 +0000 2014", + "id": 472052434932879360, + "id_str": "472052434932879360", + "text": "@abrahamvegh sabotaging the dynamic serving of javascript from server to client (whether by betrayal, hack, or govt interference)", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 472052243630657537, + "in_reply_to_status_id_str": "472052243630657537", + "in_reply_to_user_id": 19140065, + "in_reply_to_user_id_str": "19140065", + "in_reply_to_screen_name": "abrahamvegh", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 16:29:36 +0000 2014", + "id": 472052147354628096, + "id_str": "472052147354628096", + "text": "@abrahamvegh basically I believe keybase is on the right track for usability but we don't have a solution to their threat model yet", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 472050189193474048, + "in_reply_to_status_id_str": "472050189193474048", + "in_reply_to_user_id": 19140065, + "in_reply_to_user_id_str": "19140065", + "in_reply_to_screen_name": "abrahamvegh", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 16:22:28 +0000 2014", + "id": 472050350133108736, + "id_str": "472050350133108736", + "text": "@abrahamvegh deliberate choice, to see how that goes. It's not my only key.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 472050189193474048, + "in_reply_to_status_id_str": "472050189193474048", + "in_reply_to_user_id": 19140065, + "in_reply_to_user_id_str": "19140065", + "in_reply_to_screen_name": "abrahamvegh", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 16:21:33 +0000 2014", + "id": 472050118674636800, + "id_str": "472050118674636800", + "text": "@alexhern 👍 well I would have tried a little harder to make a key that says \"Truecrypt\" and not \"0xabad1dea\" :p", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 472049926055407616, + "in_reply_to_status_id_str": "472049926055407616", + "in_reply_to_user_id": 4004901, + "in_reply_to_user_id_str": "4004901", + "in_reply_to_screen_name": "alexhern", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 16:19:30 +0000 2014", + "id": 472049603094003712, + "id_str": "472049603094003712", + "text": "@TehMillhouse it's my real signature tho!", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 472049514514513921, + "in_reply_to_status_id_str": "472049514514513921", + "in_reply_to_user_id": 40435841, + "in_reply_to_user_id_str": "40435841", + "in_reply_to_screen_name": "TehMillhouse", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 16:18:52 +0000 2014", + "id": 472049443177771008, + "id_str": "472049443177771008", + "text": "@alexhern if I had done the hoax \"for real\" innocent journalists like you would be the target I'm afraid...", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 472048906189414400, + "in_reply_to_status_id_str": "472048906189414400", + "in_reply_to_user_id": 4004901, + "in_reply_to_user_id_str": "4004901", + "in_reply_to_screen_name": "alexhern", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 16:16:38 +0000 2014", + "id": 472048881367523328, + "id_str": "472048881367523328", + "text": "@alexhern more or less yeh", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 472048590765182976, + "in_reply_to_status_id_str": "472048590765182976", + "in_reply_to_user_id": 4004901, + "in_reply_to_user_id_str": "4004901", + "in_reply_to_screen_name": "alexhern", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 16:13:24 +0000 2014", + "id": 472048069429960704, + "id_str": "472048069429960704", + "text": "just to get that idea out of my system before it festers http://t.co/tN32AoRQ2b", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 6, + "favorite_count": 10, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 15:50:46 +0000 2014", + "id": 472042374135549953, + "id_str": "472042374135549953", + "text": "Actually I could probably sign a hoax with *any* pgp key and there'd be people who don't know how to check and take it on faith it's correct", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 6, + "favorite_count": 8, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 15:48:40 +0000 2014", + "id": 472041843870683136, + "id_str": "472041843870683136", + "text": "namely a pastebin hoax like \"boo hoo I'm the truecrypt dev and they both stole my keys and deleted my local copy send bitcoin\"", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 4, + "favorite_count": 14, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 15:46:20 +0000 2014", + "id": 472041255225294848, + "id_str": "472041255225294848", + "text": "For the first time in my life, I actually have the urge to perpetuate a pastebin hoax. Someone remind me of my strong ethical stance", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 7, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 15:29:54 +0000 2014", + "id": 472037123336728576, + "id_str": "472037123336728576", + "text": "What is this, /r/programming?! http://t.co/JvImbeVvJr", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 15:06:56 +0000 2014", + "id": 472031341937459201, + "id_str": "472031341937459201", + "text": "RT @normative: So when they talk about adversaries \"changing their behavior\" bear in mind that may just mean \"b/c we're reminding them NSA …", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Thu May 29 13:55:06 +0000 2014", + "id": 472013263488950273, + "id_str": "472013263488950273", + "text": "So when they talk about adversaries \"changing their behavior\" bear in mind that may just mean \"b/c we're reminding them NSA exists\"", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 8548612, + "id_str": "8548612" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 13, + "favorite_count": 8, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 13, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 15:06:06 +0000 2014", + "id": 472031131890909184, + "id_str": "472031131890909184", + "text": "@m1sp good cover story, Simeon.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 472030923148386304, + "in_reply_to_status_id_str": "472030923148386304", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 14:59:10 +0000 2014", + "id": 472029386678743040, + "id_str": "472029386678743040", + "text": "@m1sp something you’d like to tell us, Simeon…?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 472015066091364352, + "in_reply_to_status_id_str": "472015066091364352", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 14:55:27 +0000 2014", + "id": 472028450769756160, + "id_str": "472028450769756160", + "text": "RT @ParisLees: This is huge: @TIME puts lovely @Lavernecox on its cover & says transgender is \"America's next civil rights frontier\" http:/…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Thu May 29 12:57:11 +0000 2014", + "id": 471998688479686656, + "id_str": "471998688479686656", + "text": "This is huge: @TIME puts lovely @Lavernecox on its cover & says transgender is \"America's next civil rights frontier\" http://t.co/acTm9sEpyH", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 146894920, + "id_str": "146894920" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 571, + "favorite_count": 464, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "TIME", + "name": "TIME.com", + "id": 14293310, + "id_str": "14293310", + "indices": [ + 14, + 19 + ] + }, + { + "screen_name": "Lavernecox", + "name": "Laverne Cox", + "id": 63112528, + "id_str": "63112528", + "indices": [ + 32, + 43 + ] + } + ], + "media": [ + { + "id": 471998687522992128, + "id_str": "471998687522992128", + "indices": [ + 122, + 144 + ], + "media_url": "http://pbs.twimg.com/media/BozgTjhCMAAJ50K.jpg", + "media_url_https": "https://pbs.twimg.com/media/BozgTjhCMAAJ50K.jpg", + "url": "http://t.co/acTm9sEpyH", + "display_url": "pic.twitter.com/acTm9sEpyH", + "expanded_url": "http://twitter.com/ParisLees/status/471998688479686656/photo/1", + "type": "photo", + "sizes": { + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 600, + "h": 800, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 453, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 800, + "resize": "fit" + } + } + } + ] + }, + "favorited": true, + "retweeted": true, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 571, + "favorite_count": 0, + "favorited": true, + "retweeted": true, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 14:54:20 +0000 2014", + "id": 472028171790217216, + "id_str": "472028171790217216", + "text": "There’s something hilarious to me about political spammers soliciting bot accounts, or @samuelpepys, who has been dead for centuries", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 8, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 14:11:34 +0000 2014", + "id": 472017410178834432, + "id_str": "472017410178834432", + "text": "So apparently forking TrueCrypt is legally problematic per the license.\n\nBut uh, who exactly has standing to sue?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 30, + "favorite_count": 13, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 14:08:57 +0000 2014", + "id": 472016751736025088, + "id_str": "472016751736025088", + "text": "@McGrewSecurity I parsed this as [have beef with] [me deleting their tweets] and I was like well yes Mr. Hacker that is in fact pretty rude", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471987993436520448, + "in_reply_to_status_id_str": "471987993436520448", + "in_reply_to_user_id": 13275122, + "in_reply_to_user_id_str": "13275122", + "in_reply_to_screen_name": "McGrewSecurity", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 13:59:52 +0000 2014", + "id": 472014463302770688, + "id_str": "472014463302770688", + "text": "RT @gcluley: PR stunt for new 'Watch Dogs' hacking game ends with bomb squad called in. Idiots. http://t.co/zkoFhn07jd", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Thu May 29 10:24:39 +0000 2014", + "id": 471960303169994752, + "id_str": "471960303169994752", + "text": "PR stunt for new 'Watch Dogs' hacking game ends with bomb squad called in. Idiots. http://t.co/zkoFhn07jd", + "source": "TweetDeck", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 11791512, + "id_str": "11791512" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 26, + "favorite_count": 13, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/zkoFhn07jd", + "expanded_url": "http://www.dailydot.com/news/ubisoft-watch-dogs-ninemsn/", + "display_url": "dailydot.com/news/ubisoft-w…", + "indices": [ + 83, + 105 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 26, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 13:54:05 +0000 2014", + "id": 472013010484342784, + "id_str": "472013010484342784", + "text": "@alt_m1sp :< !!!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471951082495569920, + "in_reply_to_status_id_str": "471951082495569920", + "in_reply_to_user_id": 2401670173, + "in_reply_to_user_id_str": "2401670173", + "in_reply_to_screen_name": "alt_m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "vi" + }, + { + "created_at": "Thu May 29 13:40:03 +0000 2014", + "id": 472009474828668929, + "id_str": "472009474828668929", + "text": "RT @mikko: Permissions required by the Android companion app for Watch_Dogs game (via @Mgkarayan) http://t.co/sVNm2JW4Ea", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Thu May 29 06:34:14 +0000 2014", + "id": 471902317755654149, + "id_str": "471902317755654149", + "text": "Permissions required by the Android companion app for Watch_Dogs game (via @Mgkarayan) http://t.co/sVNm2JW4Ea", + "source": "Twitterrific", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 23566038, + "id_str": "23566038" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 72, + "favorite_count": 28, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "Mgkarayan", + "name": "Mark Karayan", + "id": 61827357, + "id_str": "61827357", + "indices": [ + 75, + 85 + ] + } + ], + "media": [ + { + "id": 471902317520777216, + "id_str": "471902317520777216", + "indices": [ + 87, + 109 + ], + "media_url": "http://pbs.twimg.com/media/BoyIqFSCcAAXELS.png", + "media_url_https": "https://pbs.twimg.com/media/BoyIqFSCcAAXELS.png", + "url": "http://t.co/sVNm2JW4Ea", + "display_url": "pic.twitter.com/sVNm2JW4Ea", + "expanded_url": "http://twitter.com/mikko/status/471902317755654149/photo/1", + "type": "photo", + "sizes": { + "small": { + "w": 340, + "h": 604, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 540, + "h": 960, + "resize": "fit" + }, + "medium": { + "w": 540, + "h": 960, + "resize": "fit" + } + } + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 72, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 13:30:36 +0000 2014", + "id": 472007099300741120, + "id_str": "472007099300741120", + "text": "@RandomStep that’s part of the point. Constant “but they also said” is a real issue in online discussions", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471987969746685952, + "in_reply_to_status_id_str": "471987969746685952", + "in_reply_to_user_id": 5917772, + "in_reply_to_user_id_str": "5917772", + "in_reply_to_screen_name": "RandomStep", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 13:29:49 +0000 2014", + "id": 472006903514427392, + "id_str": "472006903514427392", + "text": "@AlyssaRowan wait, was there some pre-agreement on what constitutes a canary?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471901257058115584, + "in_reply_to_status_id_str": "471901257058115584", + "in_reply_to_user_id": 2269606975, + "in_reply_to_user_id_str": "2269606975", + "in_reply_to_screen_name": "AlyssaRowan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 04:57:26 +0000 2014", + "id": 471877956160077825, + "id_str": "471877956160077825", + "text": "@m1sp >.>\n\nThis describes what happened to Aspects’ plot pretty well… originally contained zero gay you know", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471876772598804480, + "in_reply_to_status_id_str": "471876772598804480", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 04:22:34 +0000 2014", + "id": 471869182204600320, + "id_str": "471869182204600320", + "text": "@kevinlange … ahh.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471868195242913795, + "in_reply_to_status_id_str": "471868195242913795", + "in_reply_to_user_id": 25143948, + "in_reply_to_user_id_str": "25143948", + "in_reply_to_screen_name": "kevinlange", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "hu" + }, + { + "created_at": "Thu May 29 04:19:00 +0000 2014", + "id": 471868283960840192, + "id_str": "471868283960840192", + "text": "@matthew_d_green @voodooKobra http://t.co/KdyEYw2BO3", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471867832699875331, + "in_reply_to_status_id_str": "471867832699875331", + "in_reply_to_user_id": 106234268, + "in_reply_to_user_id_str": "106234268", + "in_reply_to_screen_name": "matthew_d_green", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Thu May 29 04:17:46 +0000 2014", + "id": 471867975025569792, + "id_str": "471867975025569792", + "text": "@kevinlange I cannot figure out how to Scunthrope your name though", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471867421515460609, + "in_reply_to_status_id_str": "471867421515460609", + "in_reply_to_user_id": 25143948, + "in_reply_to_user_id_str": "25143948", + "in_reply_to_screen_name": "kevinlange", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 04:09:48 +0000 2014", + "id": 471865968705032192, + "id_str": "471865968705032192", + "text": "@matthew_d_green phew!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471865817433268225, + "in_reply_to_status_id_str": "471865817433268225", + "in_reply_to_user_id": 106234268, + "in_reply_to_user_id_str": "106234268", + "in_reply_to_screen_name": "matthew_d_green", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "ht" + }, + { + "created_at": "Thu May 29 04:04:27 +0000 2014", + "id": 471864623046483968, + "id_str": "471864623046483968", + "text": "@n1vux @matthew_d_green not sure if I should read too much into that 😯", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471864196536078336, + "in_reply_to_status_id_str": "471864196536078336", + "in_reply_to_user_id": 57332943, + "in_reply_to_user_id_str": "57332943", + "in_reply_to_screen_name": "n1vux", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 04:00:15 +0000 2014", + "id": 471863565805039617, + "id_str": "471863565805039617", + "text": "@alt_m1sp gods they will latch onto a keyword in a throwaway remark and never let go", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471854873579769857, + "in_reply_to_status_id_str": "471854873579769857", + "in_reply_to_user_id": 2401670173, + "in_reply_to_user_id_str": "2401670173", + "in_reply_to_screen_name": "alt_m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 03:43:17 +0000 2014", + "id": 471859295705759744, + "id_str": "471859295705759744", + "text": "@m1sp then Barsamin proves he’s serious by pulling out the dreaded Full Name… Luzcrezo dello Rodomond Veraldo", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471857708199448576, + "in_reply_to_status_id_str": "471857708199448576", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 03:31:05 +0000 2014", + "id": 471856227064877056, + "id_str": "471856227064877056", + "text": "@m1sp http://t.co/LTWFzEDLis", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 471855837661495296, + "in_reply_to_status_id_str": "471855837661495296", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Thu May 29 03:12:32 +0000 2014", + "id": 471851555717521410, + "id_str": "471851555717521410", + "text": "@m1sp bonus practice cuties http://t.co/zpqTzU0all", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "ro" + }, + { + "created_at": "Thu May 29 02:51:33 +0000 2014", + "id": 471846276321931264, + "id_str": "471846276321931264", + "text": "So did Snowden happen to drop any mad facts about TrueCrypt or are we still at Ground Question Mark", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 15, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 02:48:31 +0000 2014", + "id": 471845512488820736, + "id_str": "471845512488820736", + "text": "@kaepora haha your voice is deeper than I expected", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471837449967398912, + "in_reply_to_status_id_str": "471837449967398912", + "in_reply_to_user_id": 11728992, + "in_reply_to_user_id_str": "11728992", + "in_reply_to_screen_name": "kaepora", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 02:22:08 +0000 2014", + "id": 471838872192573441, + "id_str": "471838872192573441", + "text": "@m1sp back to working on this drama http://t.co/R3hRhHBsrk", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 01:45:52 +0000 2014", + "id": 471829746741805056, + "id_str": "471829746741805056", + "text": "@Talen_Lee idk, I’m rather fond of literal devil’s advocacy, which is why the Catholic Church abolished it", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471829497520459778, + "in_reply_to_status_id_str": "471829497520459778", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 01:22:27 +0000 2014", + "id": 471823855406055424, + "id_str": "471823855406055424", + "text": "pokebot has glitched out so now's a good time to join if you want to see the entire game played on \"no flash in dark cave\" mode ;)", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 01:10:58 +0000 2014", + "id": 471820964951777280, + "id_str": "471820964951777280", + "text": "@ThePokeBot if that was you who reset it..., if you didn't know, the visuals went black", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 2436473940, + "in_reply_to_user_id_str": "2436473940", + "in_reply_to_screen_name": "ThePokeBot", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 00:58:26 +0000 2014", + "id": 471817812004970496, + "id_str": "471817812004970496", + "text": "@thepokebot ALERT ALERT http://t.co/0OSmiHLtvE", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 2436473940, + "in_reply_to_user_id_str": "2436473940", + "in_reply_to_screen_name": "ThePokeBot", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "sk" + }, + { + "created_at": "Thu May 29 00:40:34 +0000 2014", + "id": 471813314675499008, + "id_str": "471813314675499008", + "text": "@marpeggiation thank you as I try very hard to be, but - don't tell anyone - I'm REALLY bad at calculus :(", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 471812879650283520, + "in_reply_to_status_id_str": "471812879650283520", + "in_reply_to_user_id": 312665538, + "in_reply_to_user_id_str": "312665538", + "in_reply_to_screen_name": "marpeggiation", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 00:35:00 +0000 2014", + "id": 471811914566496258, + "id_str": "471811914566496258", + "text": "Floats, a short story (zero seconds ahead of goal, zero seconds behind goal) http://t.co/Wtz9XpXz2i", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 9, + "favorite_count": 13, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 00:30:16 +0000 2014", + "id": 471810720678838273, + "id_str": "471810720678838273", + "text": "@mudlock I rapidly change topic several hundred times a day but yes", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 471809818089365504, + "in_reply_to_status_id_str": "471809818089365504", + "in_reply_to_user_id": 16222834, + "in_reply_to_user_id_str": "16222834", + "in_reply_to_screen_name": "mudlock", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 00:23:58 +0000 2014", + "id": 471809134762160128, + "id_str": "471809134762160128", + "text": "@bobpoekert @antumbral they raised > 1 million in one day because that's how many people have *positive* memories of using Reading Rainbow", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 471808794368819202, + "in_reply_to_status_id_str": "471808794368819202", + "in_reply_to_user_id": 191945961, + "in_reply_to_user_id_str": "191945961", + "in_reply_to_screen_name": "bobpoekert", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 00:21:40 +0000 2014", + "id": 471808556417945600, + "id_str": "471808556417945600", + "text": "the older I get, the more I appreciate the nexus of forward-thinking ideas that was Star Trek, even if I still hate cheesy sci-fi.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 4, + "favorite_count": 15, + "favorited": true, + "retweeted": true, + "lang": "en" + }, + { + "created_at": "Thu May 29 00:19:18 +0000 2014", + "id": 471807961653080064, + "id_str": "471807961653080064", + "text": "@bobpoekert @m1sp that's a little open-ended but I'd take it to mean most all countries that aren't overtly communist ideology based", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 471807668210782208, + "in_reply_to_status_id_str": "471807668210782208", + "in_reply_to_user_id": 191945961, + "in_reply_to_user_id_str": "191945961", + "in_reply_to_screen_name": "bobpoekert", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 00:15:48 +0000 2014", + "id": 471807080056504320, + "id_str": "471807080056504320", + "text": "@bobpoekert as I understand it this is to fund digitizing all their content and hosting the web site and enabling teachers to use it", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 471806579533029376, + "in_reply_to_status_id_str": "471806579533029376", + "in_reply_to_user_id": 191945961, + "in_reply_to_user_id_str": "191945961", + "in_reply_to_screen_name": "bobpoekert", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 00:12:45 +0000 2014", + "id": 471806311815192576, + "id_str": "471806311815192576", + "text": "Isn't it awesome that we have to resort to charity crowdfunding to meet America's basic educational needs https://t.co/HSWCMErOjD", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 33, + "favorite_count": 18, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu May 29 00:01:56 +0000 2014", + "id": 471803592773750785, + "id_str": "471803592773750785", + "text": "@m1sp <3!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471803065104732160, + "in_reply_to_status_id_str": "471803065104732160", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "sv" + }, + { + "created_at": "Wed May 28 23:58:59 +0000 2014", + "id": 471802847823003648, + "id_str": "471802847823003648", + "text": "@Ansjh thanks. This decreases likeliness of the theory that they manually edited the .rc to draw attention to “United States” in the diff", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471802638083047425, + "in_reply_to_status_id_str": "471802638083047425", + "in_reply_to_user_id": 45619465, + "in_reply_to_user_id_str": "45619465", + "in_reply_to_screen_name": "Ansjh", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 23:55:13 +0000 2014", + "id": 471801902959583232, + "id_str": "471801902959583232", + "text": "RT @Ansjh: @0xabad1dea Yes, that seems to be the case with VS 2010: http://t.co/1KKAejY0nR (RC file from MFC project upgraded from VC6)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Wed May 28 23:54:42 +0000 2014", + "id": 471801768893227008, + "id_str": "471801768893227008", + "text": "@0xabad1dea Yes, that seems to be the case with VS 2010: http://t.co/1KKAejY0nR (RC file from MFC project upgraded from VC6)", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 471798340498513920, + "in_reply_to_status_id_str": "471798340498513920", + "in_reply_to_user_id": 126030998, + "in_reply_to_user_id_str": "126030998", + "in_reply_to_screen_name": "0xabad1dea", + "user": { + "id": 45619465, + "id_str": "45619465" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 2, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/1KKAejY0nR", + "expanded_url": "http://4o4.nl/20140529WVUSQ.png", + "display_url": "4o4.nl/20140529WVUSQ.…", + "indices": [ + 57, + 79 + ] + } + ], + "user_mentions": [ + { + "screen_name": "0xabad1dea", + "name": "Melissa", + "id": 126030998, + "id_str": "126030998", + "indices": [ + 0, + 11 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 1, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 23:54:33 +0000 2014", + "id": 471801734004609024, + "id_str": "471801734004609024", + "text": "@JZdziarski @McGrewSecurity yeah if they got tired of it they decided to poison their own well as thoroughly as possible", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471796751700344832, + "in_reply_to_status_id_str": "471796751700344832", + "in_reply_to_user_id": 1267770224, + "in_reply_to_user_id_str": "1267770224", + "in_reply_to_screen_name": "JZdziarski", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 23:41:04 +0000 2014", + "id": 471798340498513920, + "id_str": "471798340498513920", + "text": "Is there anyone out there a big enough Visual Studio nerd to know if .rc files did switch from \"English (U.S.)\" to \"English (United States)\"", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 4, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 23:36:25 +0000 2014", + "id": 471797171822800896, + "id_str": "471797171822800896", + "text": "@WhiteMageSlave \\o/", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 471796985540792320, + "in_reply_to_status_id_str": "471796985540792320", + "in_reply_to_user_id": 90791634, + "in_reply_to_user_id_str": "90791634", + "in_reply_to_screen_name": "WhiteMageSlave", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Wed May 28 23:18:06 +0000 2014", + "id": 471792562080972800, + "id_str": "471792562080972800", + "text": "@xkeepah lol nope", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471792423513759744, + "in_reply_to_status_id_str": "471792423513759744", + "in_reply_to_user_id": 61653331, + "in_reply_to_user_id_str": "61653331", + "in_reply_to_screen_name": "xkeepah", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 23:17:03 +0000 2014", + "id": 471792294103093248, + "id_str": "471792294103093248", + "text": "@zauspar yeah it’s pretty chilly", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471790841737248768, + "in_reply_to_status_id_str": "471790841737248768", + "in_reply_to_user_id": 216571343, + "in_reply_to_user_id_str": "216571343", + "in_reply_to_screen_name": "zauspar", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 23:06:43 +0000 2014", + "id": 471789697086541824, + "id_str": "471789697086541824", + "text": "@Raed667 @thegrugq yes, and yet, still a dramatic improvement", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 471789410548457472, + "in_reply_to_status_id_str": "471789410548457472", + "in_reply_to_user_id": 229803979, + "in_reply_to_user_id_str": "229803979", + "in_reply_to_screen_name": "Raed667", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 22:56:03 +0000 2014", + "id": 471787009443631104, + "id_str": "471787009443631104", + "text": "@thegrugq this is a DRAMATIC improvement over what I had earlier", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 471786785429659649, + "in_reply_to_status_id_str": "471786785429659649", + "in_reply_to_user_id": 18983429, + "in_reply_to_user_id_str": "18983429", + "in_reply_to_screen_name": "thegrugq", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 22:54:48 +0000 2014", + "id": 471786698360508416, + "id_str": "471786698360508416", + "text": "wow so if I double tap the wrong spot on my new laptop's touchpad it disables the touchpad\n\nYes brilliant good feature #UIRage", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 8, + "favorite_count": 13, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 22:53:39 +0000 2014", + "id": 471786407300976641, + "id_str": "471786407300976641", + "text": "@Canageek a step in the right direction but all too likely to introduce new bugs in their zeal?", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 471786073014542336, + "in_reply_to_status_id_str": "471786073014542336", + "in_reply_to_user_id": 17096754, + "in_reply_to_user_id_str": "17096754", + "in_reply_to_screen_name": "Canageek", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 22:51:00 +0000 2014", + "id": 471785738984763393, + "id_str": "471785738984763393", + "text": "Gee whiz I haven’t had an infosec high this big since heartbleed !", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 9, + "favorite_count": 20, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 22:49:38 +0000 2014", + "id": 471785398168223745, + "id_str": "471785398168223745", + "text": "@matthew_d_green it’s been pointed out to me that “someone” has a big interview tonight…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471785196983820288, + "in_reply_to_status_id_str": "471785196983820288", + "in_reply_to_user_id": 106234268, + "in_reply_to_user_id_str": "106234268", + "in_reply_to_screen_name": "matthew_d_green", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 6, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 22:44:08 +0000 2014", + "id": 471784010394640384, + "id_str": "471784010394640384", + "text": "@m1sp @FioraAeterna @hinanawi_chan http://t.co/UUkGfe6q4x", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471783345366372352, + "in_reply_to_status_id_str": "471783345366372352", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 4, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Wed May 28 22:36:43 +0000 2014", + "id": 471782144247734272, + "id_str": "471782144247734272", + "text": "@leighalytle … is it snowing?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471780665772343296, + "in_reply_to_status_id_str": "471780665772343296", + "in_reply_to_user_id": 14136848, + "in_reply_to_user_id_str": "14136848", + "in_reply_to_screen_name": "leighalytle", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "tl" + }, + { + "created_at": "Wed May 28 22:35:53 +0000 2014", + "id": 471781937716002816, + "id_str": "471781937716002816", + "text": "RT @MarkKriegsman: @0xabad1dea Snowden pulls of rubber mask, revealing true identity... Satoshi Nakamoto!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Wed May 28 22:35:41 +0000 2014", + "id": 471781884268388352, + "id_str": "471781884268388352", + "text": "@0xabad1dea Snowden pulls of rubber mask, revealing true identity... Satoshi Nakamoto!", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 471778707804127233, + "in_reply_to_status_id_str": "471778707804127233", + "in_reply_to_user_id": 126030998, + "in_reply_to_user_id_str": "126030998", + "in_reply_to_screen_name": "0xabad1dea", + "user": { + "id": 2121681, + "id_str": "2121681" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 21, + "favorite_count": 23, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "0xabad1dea", + "name": "Melissa", + "id": 126030998, + "id_str": "126030998", + "indices": [ + 0, + 11 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 21, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 22:35:38 +0000 2014", + "id": 471781873039863808, + "id_str": "471781873039863808", + "text": "@NowellAssociate I’d certainly prefer “we don’t want to help any further” over “we were compromised”, “we were NSL’d…”", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471781034217209856, + "in_reply_to_status_id_str": "471781034217209856", + "in_reply_to_user_id": 1736280751, + "in_reply_to_user_id_str": "1736280751", + "in_reply_to_screen_name": "NowellAssociate", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 22:33:18 +0000 2014", + "id": 471781286793584640, + "id_str": "471781286793584640", + "text": "@AlyssaRowan @diodesign oh, I saw someone thinking aloud about those being auto-generated… hmm.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471780957809565696, + "in_reply_to_status_id_str": "471780957809565696", + "in_reply_to_user_id": 2269606975, + "in_reply_to_user_id_str": "2269606975", + "in_reply_to_screen_name": "AlyssaRowan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 22:32:11 +0000 2014", + "id": 471781004181389312, + "id_str": "471781004181389312", + "text": "@mof18202 @AlyssaRowan coercion to insert backdoor a la lavabit, but it’s the next tier of backdoor evilness", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471780762912448512, + "in_reply_to_status_id_str": "471780762912448512", + "in_reply_to_user_id": 239292979, + "in_reply_to_user_id_str": "239292979", + "in_reply_to_screen_name": "mof18202", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 22:30:45 +0000 2014", + "id": 471780643710316544, + "id_str": "471780643710316544", + "text": "@AlyssaRowan @diodesign ? Is this a diff somewhere?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471780432678502400, + "in_reply_to_status_id_str": "471780432678502400", + "in_reply_to_user_id": 2269606975, + "in_reply_to_user_id_str": "2269606975", + "in_reply_to_screen_name": "AlyssaRowan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 22:30:04 +0000 2014", + "id": 471780472717316096, + "id_str": "471780472717316096", + "text": "@HelpSnowden I’m trying to maintain sanity through humor here :(", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471780323010035713, + "in_reply_to_status_id_str": "471780323010035713", + "in_reply_to_user_id": 2508177997, + "in_reply_to_user_id_str": "2508177997", + "in_reply_to_screen_name": "HelpSnowden", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 22:26:56 +0000 2014", + "id": 471779685135691776, + "id_str": "471779685135691776", + "text": "But if this is in fact an NSL canary then I hope they asked for their fair ten million dollars before doing the right thing", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 7, + "favorite_count": 10, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 22:23:03 +0000 2014", + "id": 471778707804127233, + "id_str": "471778707804127233", + "text": "Preparing for epic plot twist where Snowden reveals in tonight’s interview that he wrote TrueCrypt", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 39, + "favorite_count": 31, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 22:16:42 +0000 2014", + "id": 471777110290202624, + "id_str": "471777110290202624", + "text": "@urbanfriendden @zauspar but can he be bleaten 🐐", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471770614928519169, + "in_reply_to_status_id_str": "471770614928519169", + "in_reply_to_user_id": 435871902, + "in_reply_to_user_id_str": "435871902", + "in_reply_to_screen_name": "urbanfriendden", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 22:15:51 +0000 2014", + "id": 471776893687980032, + "id_str": "471776893687980032", + "text": "@matthew_d_green I mentioned to him who the auditors were and my husband said to ask if YOU’VE been NSL’d", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 106234268, + "in_reply_to_user_id_str": "106234268", + "in_reply_to_screen_name": "matthew_d_green", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 22:12:33 +0000 2014", + "id": 471776062997676033, + "id_str": "471776062997676033", + "text": "@nicholsong well if they have proof it’s a hoax I would very much like to see it", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471775706657980417, + "in_reply_to_status_id_str": "471775706657980417", + "in_reply_to_user_id": 20173675, + "in_reply_to_user_id_str": "20173675", + "in_reply_to_screen_name": "nicholsong", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 21:55:12 +0000 2014", + "id": 471771697993879552, + "id_str": "471771697993879552", + "text": ".@Furyhunter this seems a repeated point of confusion? Half of people are saying it’s the right key and the other half the wrong key??", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471771544117846016, + "in_reply_to_status_id_str": "471771544117846016", + "in_reply_to_user_id": 34740894, + "in_reply_to_user_id_str": "34740894", + "in_reply_to_screen_name": "Furyhunter", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 21:52:18 +0000 2014", + "id": 471770967622942721, + "id_str": "471770967622942721", + "text": "@ra6bit well what I mean by “immature” would be “you know what FINE might as well tell people to use BITLOCKER if this is such a problem”", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471770661531443200, + "in_reply_to_status_id_str": "471770661531443200", + "in_reply_to_user_id": 537333195, + "in_reply_to_user_id_str": "537333195", + "in_reply_to_screen_name": "ra6bit", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 21:51:24 +0000 2014", + "id": 471770742757933057, + "id_str": "471770742757933057", + "text": "@eevee afaik we don’t know how many there actually are but it’s believed there are two?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471770293535387648, + "in_reply_to_status_id_str": "471770293535387648", + "in_reply_to_user_id": 14412937, + "in_reply_to_user_id_str": "14412937", + "in_reply_to_screen_name": "eevee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 21:45:02 +0000 2014", + "id": 471769140437336064, + "id_str": "471769140437336064", + "text": "@Motoma that does rank as highly Serious on the list of possibilities", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471768997696778241, + "in_reply_to_status_id_str": "471768997696778241", + "in_reply_to_user_id": 7558882, + "in_reply_to_user_id_str": "7558882", + "in_reply_to_screen_name": "Motoma", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 21:42:45 +0000 2014", + "id": 471768566598213632, + "id_str": "471768566598213632", + "text": ".@mof18202 I grant that people being associated with the audit being baffled does make the Least Terrible Theory less likely 😞", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471767096007745536, + "in_reply_to_status_id_str": "471767096007745536", + "in_reply_to_user_id": 239292979, + "in_reply_to_user_id_str": "239292979", + "in_reply_to_screen_name": "mof18202", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 21:33:04 +0000 2014", + "id": 471766127752663040, + "id_str": "471766127752663040", + "text": "So my “least terrible” theory is someone ragequit over internal audit bickering and was very immature in how they handled it", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 4, + "favorite_count": 8, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 21:31:21 +0000 2014", + "id": 471765695605141505, + "id_str": "471765695605141505", + "text": "@smeerp well, it just means someone got fed up, not that it’s known to be backdoored, pressured by NSA, hacked, etc", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471765504579731456, + "in_reply_to_status_id_str": "471765504579731456", + "in_reply_to_user_id": 546573709, + "in_reply_to_user_id_str": "546573709", + "in_reply_to_screen_name": "smeerp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 21:29:59 +0000 2014", + "id": 471765349914779649, + "id_str": "471765349914779649", + "text": "@spiegaltv @Shufflejoy neither are most people who use full disk encryption. I’m not saying you *should*, I’m saying it’s reasonable", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471764166915948544, + "in_reply_to_status_id_str": "471764166915948544", + "in_reply_to_user_id": 106606405, + "in_reply_to_user_id_str": "106606405", + "in_reply_to_screen_name": "spiegaltv", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 21:28:08 +0000 2014", + "id": 471764885882159105, + "id_str": "471764885882159105", + "text": "@MechMK1 that’s developer ragequit (the exact amount of rage isn’t important, it’s that a BS excuse to shut down support requests was used)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471764505601769473, + "in_reply_to_status_id_str": "471764505601769473", + "in_reply_to_user_id": 81556825, + "in_reply_to_user_id_str": "81556825", + "in_reply_to_screen_name": "MechMK1", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 21:25:11 +0000 2014", + "id": 471764142685425665, + "id_str": "471764142685425665", + "text": "Almost every truecrypt theory I can come up with is a *serious* problem. Pretty much only one that isn’t is “developer ragequit”", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 45, + "favorite_count": 24, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 21:16:20 +0000 2014", + "id": 471761915413135360, + "id_str": "471761915413135360", + "text": "Another good pokébot run lost to “it hurt itself in its confusion”", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 21:13:11 +0000 2014", + "id": 471761123772223488, + "id_str": "471761123772223488", + "text": "@TheXyzzy note: it’s just him I hear other people knock", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471760943832375297, + "in_reply_to_status_id_str": "471760943832375297", + "in_reply_to_user_id": 42286641, + "in_reply_to_user_id_str": "42286641", + "in_reply_to_screen_name": "TheXyzzy", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 21:12:57 +0000 2014", + "id": 471761065965924352, + "id_str": "471761065965924352", + "text": "@TheXyzzy I didn’t hear it, and this is like the third time I haven’t heard him knock and instead noticed the truck outside", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471760943832375297, + "in_reply_to_status_id_str": "471760943832375297", + "in_reply_to_user_id": 42286641, + "in_reply_to_user_id_str": "42286641", + "in_reply_to_screen_name": "TheXyzzy", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 21:11:53 +0000 2014", + "id": 471760798659117057, + "id_str": "471760798659117057", + "text": "Oh now I feel bad it turns out this pizza guy knew he had messed up our order last time… but we didn’t even notice haha", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 21:10:14 +0000 2014", + "id": 471760379652349953, + "id_str": "471760379652349953", + "text": "Is it rude to make suggestions to a pizza delivery guy about his knocking technique", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 5, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 21:06:41 +0000 2014", + "id": 471759487926161408, + "id_str": "471759487926161408", + "text": "@xkeepah not to rain on your parade but TM™ is a canonical emoji\n\nAlso it’s rendering as generic text on my Windows/Chrome", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471758855785816064, + "in_reply_to_status_id_str": "471758855785816064", + "in_reply_to_user_id": 61653331, + "in_reply_to_user_id_str": "61653331", + "in_reply_to_screen_name": "xkeepah", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 20:55:36 +0000 2014", + "id": 471756698797867009, + "id_str": "471756698797867009", + "text": "@NotTimothy it’s important to be mindful of peoples’ extended beliefs but it can get wearisome having to repeatedly disclaim things", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471756180520722433, + "in_reply_to_status_id_str": "471756180520722433", + "in_reply_to_user_id": 558489512, + "in_reply_to_user_id_str": "558489512", + "in_reply_to_screen_name": "NotTimothy", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 20:54:34 +0000 2014", + "id": 471756438239326208, + "id_str": "471756438239326208", + "text": "@NotTimothy no, which is why citing anyone almost ALWAYS starts a trial by forum thread", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471756180520722433, + "in_reply_to_status_id_str": "471756180520722433", + "in_reply_to_user_id": 558489512, + "in_reply_to_user_id_str": "558489512", + "in_reply_to_screen_name": "NotTimothy", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 20:44:25 +0000 2014", + "id": 471753882729598977, + "id_str": "471753882729598977", + "text": "RT @JZdziarski: This is the problem with crypto hackers, they're so anti-social, nobody has their phone number to ask if their website's ha…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Wed May 28 19:48:39 +0000 2014", + "id": 471739850555527168, + "id_str": "471739850555527168", + "text": "This is the problem with crypto hackers, they're so anti-social, nobody has their phone number to ask if their website's hacked.", + "source": "Twitter for Mac", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 1267770224, + "id_str": "1267770224" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 60, + "favorite_count": 42, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 60, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 20:35:12 +0000 2014", + "id": 471751564093562881, + "id_str": "471751564093562881", + "text": "@rhcp011235 what on earth possesses people to respond to am active display of caring with “no-one cares”", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471751325063983104, + "in_reply_to_status_id_str": "471751325063983104", + "in_reply_to_user_id": 33429714, + "in_reply_to_user_id_str": "33429714", + "in_reply_to_screen_name": "rhcp011235", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 20:33:22 +0000 2014", + "id": 471751103944462336, + "id_str": "471751103944462336", + "text": "@kevinlange … huh.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471750882623619073, + "in_reply_to_status_id_str": "471750882623619073", + "in_reply_to_user_id": 25143948, + "in_reply_to_user_id_str": "25143948", + "in_reply_to_screen_name": "kevinlange", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "fi" + }, + { + "created_at": "Wed May 28 20:32:56 +0000 2014", + "id": 471750993240010752, + "id_str": "471750993240010752", + "text": "What\n\nWould you\n\nMaybe like to elaborate???\n\nhttp://t.co/MO5f7TkYxS \n\nIs this a hijacking hoax…?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 39, + "favorite_count": 22, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 20:26:26 +0000 2014", + "id": 471749358463889408, + "id_str": "471749358463889408", + "text": "@kevinlange what even is a 〽️", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471749090498580480, + "in_reply_to_status_id_str": "471749090498580480", + "in_reply_to_user_id": 25143948, + "in_reply_to_user_id_str": "25143948", + "in_reply_to_screen_name": "kevinlange", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 20:25:46 +0000 2014", + "id": 471749192302333952, + "id_str": "471749192302333952", + "text": "@Shufflejoy even if that were literally so it’s not like we have some sort of population problem and need to recruit more straight people", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471728025021587456, + "in_reply_to_status_id_str": "471728025021587456", + "in_reply_to_user_id": 1567524811, + "in_reply_to_user_id_str": "1567524811", + "in_reply_to_screen_name": "Shufflejoy", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 20:23:26 +0000 2014", + "id": 471748603724058624, + "id_str": "471748603724058624", + "text": "I have no idea why Tiny Red Triangle 🔺 is an emoji but other abstract choices include 🔹 and 〰 and Inverted Tiny Red Triangle 🔻", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 7, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 20:16:57 +0000 2014", + "id": 471746971632283648, + "id_str": "471746971632283648", + "text": "We need a punctuation mark for “I am aware the person I am quoting has problematic views in other areas” \n\nThomas Jefferson🔺 said that…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 16, + "favorite_count": 38, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 20:13:14 +0000 2014", + "id": 471746036143095808, + "id_str": "471746036143095808", + "text": "@eevee @meat it’s striking how much shorter these documents are, say, 150 years ago: they accumulate corner case cruft that never leaves", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471719897504821249, + "in_reply_to_status_id_str": "471719897504821249", + "in_reply_to_user_id": 14412937, + "in_reply_to_user_id_str": "14412937", + "in_reply_to_screen_name": "eevee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 20:08:37 +0000 2014", + "id": 471744873461456896, + "id_str": "471744873461456896", + "text": "@eevee I can never figure out what’s on that guy’s shirt in the last panel", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471713922693615616, + "in_reply_to_status_id_str": "471713922693615616", + "in_reply_to_user_id": 14412937, + "in_reply_to_user_id_str": "14412937", + "in_reply_to_screen_name": "eevee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 20:07:05 +0000 2014", + "id": 471744489875578881, + "id_str": "471744489875578881", + "text": "RT @ProgrammingCom: Notice: \"String\" and \"Thread\" are the same thing to non-computing people. #True #Programming http://t.co/hTpy4SRyGZ", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue May 27 00:08:00 +0000 2014", + "id": 471080343877853185, + "id_str": "471080343877853185", + "text": "Notice: \"String\" and \"Thread\" are the same thing to non-computing people. #True #Programming http://t.co/hTpy4SRyGZ", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 28130604, + "id_str": "28130604" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1041, + "favorite_count": 552, + "entities": { + "hashtags": [ + { + "text": "True", + "indices": [ + 74, + 79 + ] + }, + { + "text": "Programming", + "indices": [ + 80, + 92 + ] + } + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ], + "media": [ + { + "id": 471080343173627904, + "id_str": "471080343173627904", + "indices": [ + 93, + 115 + ], + "media_url": "http://pbs.twimg.com/media/BomdE4OIgAA7lAP.jpg", + "media_url_https": "https://pbs.twimg.com/media/BomdE4OIgAA7lAP.jpg", + "url": "http://t.co/hTpy4SRyGZ", + "display_url": "pic.twitter.com/hTpy4SRyGZ", + "expanded_url": "http://twitter.com/ProgrammingCom/status/471080343877853185/photo/1", + "type": "photo", + "sizes": { + "medium": { + "w": 480, + "h": 360, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 255, + "resize": "fit" + }, + "large": { + "w": 480, + "h": 360, + "resize": "fit" + } + } + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 1041, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 19:52:48 +0000 2014", + "id": 471740895331885057, + "id_str": "471740895331885057", + "text": "@oshepherd it's back on the bottom for now because the wifi icon kept going AWOL", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 471733424978677760, + "in_reply_to_status_id_str": "471733424978677760", + "in_reply_to_user_id": 39797372, + "in_reply_to_user_id_str": "39797372", + "in_reply_to_screen_name": "oshepherd", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 19:52:12 +0000 2014", + "id": 471740742671826945, + "id_str": "471740742671826945", + "text": "@matthiasr obviously this is only acceptable when the point of the encryption is to protect company property, not private property.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 471738196653785088, + "in_reply_to_status_id_str": "471738196653785088", + "in_reply_to_user_id": 12129722, + "in_reply_to_user_id_str": "12129722", + "in_reply_to_screen_name": "matthiasr", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 19:51:53 +0000 2014", + "id": 471740663063932928, + "id_str": "471740663063932928", + "text": "@matthiasr the passwords are submitted to a central server run by the IT dept, and the administrators have the ability to access them.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 471738196653785088, + "in_reply_to_status_id_str": "471738196653785088", + "in_reply_to_user_id": 12129722, + "in_reply_to_user_id_str": "12129722", + "in_reply_to_screen_name": "matthiasr", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 18:49:27 +0000 2014", + "id": 471724951268253696, + "id_str": "471724951268253696", + "text": "@mrgame64 it's a pun on English as she is spoke", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 471724556777185281, + "in_reply_to_status_id_str": "471724556777185281", + "in_reply_to_user_id": 475256019, + "in_reply_to_user_id_str": "475256019", + "in_reply_to_screen_name": "mrgame64", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 18:40:57 +0000 2014", + "id": 471722813506981888, + "id_str": "471722813506981888", + "text": "Windows as she should be http://t.co/QkuMkHqBJP", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 6, + "favorite_count": 20, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 18:24:36 +0000 2014", + "id": 471718699489976320, + "id_str": "471718699489976320", + "text": "@JZdziarski that would be particularly self-defeating in this instance", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471715250052399104, + "in_reply_to_status_id_str": "471715250052399104", + "in_reply_to_user_id": 1267770224, + "in_reply_to_user_id_str": "1267770224", + "in_reply_to_screen_name": "JZdziarski", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 18:09:30 +0000 2014", + "id": 471714899274792960, + "id_str": "471714899274792960", + "text": "I understand how it works, but it creeps me out that my new work laptop already had my boot encryption password on it.", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 7, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 17:22:00 +0000 2014", + "id": 471702943071477760, + "id_str": "471702943071477760", + "text": "@Jonimus I’m pretty sure UAC still prompts? Just green instead of yellow", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471702374046646273, + "in_reply_to_status_id_str": "471702374046646273", + "in_reply_to_user_id": 198707680, + "in_reply_to_user_id_str": "198707680", + "in_reply_to_screen_name": "Jonimus", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 17:17:24 +0000 2014", + "id": 471701786596618240, + "id_str": "471701786596618240", + "text": "@piratechristian @MarsHill @JastrzebskiJ I’m pretty sure there’s a passage in the Bible instructing Christians not to sue other Christians.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471680515888910336, + "in_reply_to_status_id_str": "471680515888910336", + "in_reply_to_user_id": 28023221, + "in_reply_to_user_id_str": "28023221", + "in_reply_to_screen_name": "piratechristian", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 17:16:11 +0000 2014", + "id": 471701482493186048, + "id_str": "471701482493186048", + "text": "@weetabix_su but if I “just muted” they still very definitely should not be on my mentions tab", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471701087242555393, + "in_reply_to_status_id_str": "471701087242555393", + "in_reply_to_user_id": 65336507, + "in_reply_to_user_id_str": "65336507", + "in_reply_to_screen_name": "weetabix_su", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 17:15:52 +0000 2014", + "id": 471701402440724480, + "id_str": "471701402440724480", + "text": "@weetabix_su first I muted them and then I was like no, this will not do, and blocked them. API agrees they’re blocked", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471701087242555393, + "in_reply_to_status_id_str": "471701087242555393", + "in_reply_to_user_id": 65336507, + "in_reply_to_user_id_str": "65336507", + "in_reply_to_screen_name": "weetabix_su", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 17:15:12 +0000 2014", + "id": 471701233842274304, + "id_str": "471701233842274304", + "text": "@ialluzion @Myriachan hahahaha \n\n“Muscley men, the male power fantasy, is totally directly comparable! Stop complaining, other groups!”", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471700490476986369, + "in_reply_to_status_id_str": "471700490476986369", + "in_reply_to_user_id": 1340990180, + "in_reply_to_user_id_str": "1340990180", + "in_reply_to_screen_name": "ialluzion", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 17:13:45 +0000 2014", + "id": 471700869675634688, + "id_str": "471700869675634688", + "text": "GAHH twitter why am I seeing replies from someone I blocked why why why WHY", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 17:12:58 +0000 2014", + "id": 471700669838405632, + "id_str": "471700669838405632", + "text": "The Terrible Worktop, realizing it’s being traded in this afternoon, rebels by pegging its cores", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 16:50:13 +0000 2014", + "id": 471694946467348480, + "id_str": "471694946467348480", + "text": "@driftpin88 fortunately, chibis don't represent millennia of patriarchal need to sexualize women in every damn context", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 471688495254470656, + "in_reply_to_status_id_str": "471688495254470656", + "in_reply_to_user_id": 2355827353, + "in_reply_to_user_id_str": "2355827353", + "in_reply_to_screen_name": "driftpin88", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 16:48:11 +0000 2014", + "id": 471694434879291392, + "id_str": "471694434879291392", + "text": "@Gredlen everyone loses in the game of British Names", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 471689309536681984, + "in_reply_to_status_id_str": "471689309536681984", + "in_reply_to_user_id": 1791091380, + "in_reply_to_user_id_str": "1791091380", + "in_reply_to_screen_name": "Gredlen", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 16:22:04 +0000 2014", + "id": 471687862614642688, + "id_str": "471687862614642688", + "text": "Personally I would decline to be known as the Baron of Silly-Guillem http://t.co/4G07Nr71iY", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 5, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 16:06:47 +0000 2014", + "id": 471684015121252353, + "id_str": "471684015121252353", + "text": "@ShortList @Bethblog oh look. Am improbably bendy woman in nonsensical armor. Innovative", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471682777969340416, + "in_reply_to_status_id_str": "471682777969340416", + "in_reply_to_user_id": 20670871, + "in_reply_to_user_id_str": "20670871", + "in_reply_to_screen_name": "ShortList", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 16:05:23 +0000 2014", + "id": 471683662908764161, + "id_str": "471683662908764161", + "text": "@kwaioMax As far as I *know* I haven’t managed to infect my copy of visual studio", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471683478795591682, + "in_reply_to_status_id_str": "471683478795591682", + "in_reply_to_user_id": 600289581, + "in_reply_to_user_id_str": "600289581", + "in_reply_to_screen_name": "kwaioMax", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 16:01:14 +0000 2014", + "id": 471682621068423168, + "id_str": "471682621068423168", + "text": "@tenfootfangs I’m like 80% certain that quote was taken out of the context of a joke chain", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471674817943711744, + "in_reply_to_status_id_str": "471674817943711744", + "in_reply_to_user_id": 22337789, + "in_reply_to_user_id_str": "22337789", + "in_reply_to_screen_name": "tenfootfangs", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 16:00:25 +0000 2014", + "id": 471682413303971840, + "id_str": "471682413303971840", + "text": "Unsigned executable, could you *not* http://t.co/XMLhcOXLda", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 5, + "favorite_count": 8, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 15:50:29 +0000 2014", + "id": 471679915255820288, + "id_str": "471679915255820288", + "text": "@loganb well I assume all libraries around the world would not incinerate: but you may have access cut off to one for a long time.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471679590339846144, + "in_reply_to_status_id_str": "471679590339846144", + "in_reply_to_user_id": 6072622, + "in_reply_to_user_id_str": "6072622", + "in_reply_to_screen_name": "loganb", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 15:49:39 +0000 2014", + "id": 471679702244286464, + "id_str": "471679702244286464", + "text": "@loganb I’m working on the *Imminent* Apocalypse model.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471679426833313793, + "in_reply_to_status_id_str": "471679426833313793", + "in_reply_to_user_id": 6072622, + "in_reply_to_user_id_str": "6072622", + "in_reply_to_screen_name": "loganb", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 15:48:46 +0000 2014", + "id": 471679482412408835, + "id_str": "471679482412408835", + "text": "@Talen_Lee probably being very depressed", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471669722245627904, + "in_reply_to_status_id_str": "471669722245627904", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 15:47:22 +0000 2014", + "id": 471679130308968449, + "id_str": "471679130308968449", + "text": "@csixty4 @aredridel it’s a telegraph operator handbook from 1873 or so.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471678955196792832, + "in_reply_to_status_id_str": "471678955196792832", + "in_reply_to_user_id": 16438790, + "in_reply_to_user_id_str": "16438790", + "in_reply_to_screen_name": "csixty4", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 15:46:44 +0000 2014", + "id": 471678971042865152, + "id_str": "471678971042865152", + "text": "@loganb that’s five more than zero at least :) but good to mind that if one is serious they need to replace the equipment occasionally", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471678629479342081, + "in_reply_to_status_id_str": "471678629479342081", + "in_reply_to_user_id": 6072622, + "in_reply_to_user_id_str": "6072622", + "in_reply_to_screen_name": "loganb", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 15:40:08 +0000 2014", + "id": 471677309225664512, + "id_str": "471677309225664512", + "text": "@sjalexander them darn 1800s hipsters.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 471677195727802368, + "in_reply_to_status_id_str": "471677195727802368", + "in_reply_to_user_id": 15116849, + "in_reply_to_user_id_str": "15116849", + "in_reply_to_screen_name": "sjalexander", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 15:37:16 +0000 2014", + "id": 471676585507295232, + "id_str": "471676585507295232", + "text": "wow, I've never seen a \"ct\" ligature in English before. http://t.co/8urB36EkfM", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 4, + "favorite_count": 9, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 15:22:09 +0000 2014", + "id": 471672783148425216, + "id_str": "471672783148425216", + "text": "I'm probably flattering myself, but I might have gotten my first spear phishing attempt. Unfortunately their download link doesn't work well", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 7, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 14:18:01 +0000 2014", + "id": 471656644401979392, + "id_str": "471656644401979392", + "text": "“We’re installing new censorship equipment.” *laser fires off, clips Alderaan’s moon* “tee-hee, oops! That was an accident. Hi Alderaan!”", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 14:12:07 +0000 2014", + "id": 471655157798023168, + "id_str": "471655157798023168", + "text": "RT @matthew_d_green: It seems that even our backdoors have backdoors. https://t.co/eIG0VDuKSU (This is actually pretty terrifying...) h/t @…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Wed May 28 14:03:30 +0000 2014", + "id": 471652989032079360, + "id_str": "471652989032079360", + "text": "It seems that even our backdoors have backdoors. https://t.co/eIG0VDuKSU (This is actually pretty terrifying...) h/t @csoghoian", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 106234268, + "id_str": "106234268" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 95, + "favorite_count": 40, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "https://t.co/eIG0VDuKSU", + "expanded_url": "https://www.sec-consult.com/fxdata/seccons/prod/temedia/advisories_txt/20140528-0_NICE_Recording_eXpress_Multiple_critical_vulnerabilities_v10.txt", + "display_url": "sec-consult.com/fxdata/seccons…", + "indices": [ + 49, + 72 + ] + } + ], + "user_mentions": [ + { + "screen_name": "csoghoian", + "name": "Christopher Soghoian", + "id": 14669471, + "id_str": "14669471", + "indices": [ + 117, + 127 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 95, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 14:10:07 +0000 2014", + "id": 471654657623097345, + "id_str": "471654657623097345", + "text": "@marcel73nl it’s over, for now, so I don’t really have any way to find out. At least until they do it again", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471654478618591232, + "in_reply_to_status_id_str": "471654478618591232", + "in_reply_to_user_id": 87571135, + "in_reply_to_user_id_str": "87571135", + "in_reply_to_screen_name": "marcel73nl", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 14:09:27 +0000 2014", + "id": 471654488420655104, + "id_str": "471654488420655104", + "text": "@paigethylamine not to mention if it was a glitch the only possible cause is *testing* their censorship equipment", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471654157535809539, + "in_reply_to_status_id_str": "471654157535809539", + "in_reply_to_user_id": 2418826873, + "in_reply_to_user_id_str": "2418826873", + "in_reply_to_screen_name": "paigethylamine", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 14:08:28 +0000 2014", + "id": 471654239417020416, + "id_str": "471654239417020416", + "text": "@bigswbigsw technically it is for sale, on amazon — but I don’t really mind either way.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471653986156556290, + "in_reply_to_status_id_str": "471653986156556290", + "in_reply_to_user_id": 569236734, + "in_reply_to_user_id_str": "569236734", + "in_reply_to_screen_name": "bigswbigsw", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 14:06:29 +0000 2014", + "id": 471653741306077184, + "id_str": "471653741306077184", + "text": "@paigethylamine ri-iiiii-iiiight. I definitely believe the armed takeover of the government seeking to clamp down on dissent", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471652986964705280, + "in_reply_to_status_id_str": "471652986964705280", + "in_reply_to_user_id": 2418826873, + "in_reply_to_user_id_str": "2418826873", + "in_reply_to_screen_name": "paigethylamine", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 13:57:54 +0000 2014", + "id": 471651581818335232, + "id_str": "471651581818335232", + "text": "RT @thegrugq: @0xabad1dea and Instagram. They did it as a demonstration of capability; a show of force. They've warned ppl about inciting u…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Wed May 28 13:55:27 +0000 2014", + "id": 471650963137105921, + "id_str": "471650963137105921", + "text": "@0xabad1dea and Instagram. They did it as a demonstration of capability; a show of force. They've warned ppl about inciting unrest online", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471650171731075073, + "in_reply_to_status_id_str": "471650171731075073", + "in_reply_to_user_id": 126030998, + "in_reply_to_user_id_str": "126030998", + "in_reply_to_screen_name": "0xabad1dea", + "user": { + "id": 18983429, + "id_str": "18983429" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 4, + "favorite_count": 0, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "0xabad1dea", + "name": "Melissa", + "id": 126030998, + "id_str": "126030998", + "indices": [ + 0, + 11 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 4, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 13:57:42 +0000 2014", + "id": 471651529494368256, + "id_str": "471651529494368256", + "text": "@suqdiq @_wirepair right that’s *definitely* what the global internet needs ಠ_ಠ", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471651094213722112, + "in_reply_to_status_id_str": "471651094213722112", + "in_reply_to_user_id": 95941992, + "in_reply_to_user_id_str": "95941992", + "in_reply_to_screen_name": "suqdiq", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 13:52:18 +0000 2014", + "id": 471650171731075073, + "id_str": "471650171731075073", + "text": "Facebook has been blocked in Thailand. Government threats to internet freedom are growing globally.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 17, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 13:47:41 +0000 2014", + "id": 471649009933619200, + "id_str": "471649009933619200", + "text": "RT @ra6bit: Ebay can email me the moment something matches a saved search, but can't send a timely breach notification because email is har…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Wed May 28 10:11:41 +0000 2014", + "id": 471594651653529600, + "id_str": "471594651653529600", + "text": "Ebay can email me the moment something matches a saved search, but can't send a timely breach notification because email is hard.", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 537333195, + "id_str": "537333195" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 37, + "favorite_count": 21, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 37, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 13:34:45 +0000 2014", + "id": 471645756789915648, + "id_str": "471645756789915648", + "text": "@aspects_ebooks umm.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471536902475378688, + "in_reply_to_status_id_str": "471536902475378688", + "in_reply_to_user_id": 2345404375, + "in_reply_to_user_id_str": "2345404375", + "in_reply_to_screen_name": "aspects_ebooks", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Wed May 28 13:29:43 +0000 2014", + "id": 471644487325077504, + "id_str": "471644487325077504", + "text": "@stevewfolds minimum ten word billing :)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471597193707913216, + "in_reply_to_status_id_str": "471597193707913216", + "in_reply_to_user_id": 154125850, + "in_reply_to_user_id_str": "154125850", + "in_reply_to_screen_name": "stevewfolds", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "nl" + }, + { + "created_at": "Wed May 28 13:28:38 +0000 2014", + "id": 471644215366418432, + "id_str": "471644215366418432", + "text": "@NMusatti @ex509 using the word slavery to refer to actual slavery is not the “light” use of the word to which I refer", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471571344430493696, + "in_reply_to_status_id_str": "471571344430493696", + "in_reply_to_user_id": 320293508, + "in_reply_to_user_id_str": "320293508", + "in_reply_to_screen_name": "NMusatti", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 05:39:30 +0000 2014", + "id": 471526153644429312, + "id_str": "471526153644429312", + "text": "@zhuowei definitely the prior", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471526068235427840, + "in_reply_to_status_id_str": "471526068235427840", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 05:38:12 +0000 2014", + "id": 471525826715197440, + "id_str": "471525826715197440", + "text": "@zhuowei but I need to go to bed now before I stay up all night reading telegram company policies", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471525536892608512, + "in_reply_to_status_id_str": "471525536892608512", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 05:37:29 +0000 2014", + "id": 471525648667009024, + "id_str": "471525648667009024", + "text": "@zhuowei I will cover this in a flashback actually! He was apprentice to someone.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471525536892608512, + "in_reply_to_status_id_str": "471525536892608512", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 05:36:09 +0000 2014", + "id": 471525310203060225, + "id_str": "471525310203060225", + "text": "@zhuowei it’s what one would call murdering an artifice, legally speaking, in a jurisdiction that wouldn’t consider it true murder.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471524976567128064, + "in_reply_to_status_id_str": "471524976567128064", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 05:34:10 +0000 2014", + "id": 471524813022826496, + "id_str": "471524813022826496", + "text": "@mattblaze the handbook acknowledges this difference so I think it was an attempt to encourage ciphers not super obnoxious to key in", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471524498391330816, + "in_reply_to_status_id_str": "471524498391330816", + "in_reply_to_user_id": 26567591, + "in_reply_to_user_id_str": "26567591", + "in_reply_to_screen_name": "mattblaze", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 05:29:18 +0000 2014", + "id": 471523586726178816, + "id_str": "471523586726178816", + "text": "@admittedlyhuman probably too slow to do by hand for every message + tiny fractions of a cent making the billing annoying", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 471523048894767104, + "in_reply_to_status_id_str": "471523048894767104", + "in_reply_to_user_id": 19892410, + "in_reply_to_user_id_str": "19892410", + "in_reply_to_screen_name": "admittedlyhuman", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 05:27:24 +0000 2014", + "id": 471523110924324864, + "id_str": "471523110924324864", + "text": "Definitely need a scene in book 2 with someone wigging out over ridiculous telegram overcharging schemes.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 05:25:15 +0000 2014", + "id": 471522570140135425, + "id_str": "471522570140135425", + "text": "It further says that if someone sends an enciphered message by telegram to go ahead and count each letter as a word for billing purposes", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 9, + "favorite_count": 11, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 05:23:46 +0000 2014", + "id": 471522195840057344, + "id_str": "471522195840057344", + "text": "\"No abbreviations should be used in the body of a paid message. Numbers should be spelled out in full.\" – Telegram rules, 1873 #PayByTheWord", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 9, + "favorite_count": 7, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 05:13:52 +0000 2014", + "id": 471519705497227264, + "id_str": "471519705497227264", + "text": "@Talen_Lee http://t.co/0Nc80veN8Q", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Wed May 28 04:56:17 +0000 2014", + "id": 471515280553029635, + "id_str": "471515280553029635", + "text": "@gotyaoi my uni actually had a pretty strict anti-hazing policy to keep all the rich kids in check", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 471514798552002560, + "in_reply_to_status_id_str": "471514798552002560", + "in_reply_to_user_id": 393022772, + "in_reply_to_user_id_str": "393022772", + "in_reply_to_screen_name": "gotyaoi", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 04:50:01 +0000 2014", + "id": 471513701485658112, + "id_str": "471513701485658112", + "text": "\"Very few of the people who are using wireless telephones at the present time have any idea of how the 'wheels go round.'\" – 1922", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 4, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 04:45:54 +0000 2014", + "id": 471512664141623297, + "id_str": "471512664141623297", + "text": "Actually this approx 1908 photograph could pass as the modern radio troublemaker... in a nice suit http://t.co/4D9jT36ioP", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 04:40:12 +0000 2014", + "id": 471511230419853313, + "id_str": "471511230419853313", + "text": "Cell phones c. 1908 http://t.co/DPSkWhZ5i1", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "cy" + }, + { + "created_at": "Wed May 28 04:32:36 +0000 2014", + "id": 471509316907048961, + "id_str": "471509316907048961", + "text": "Found: 1922 children's novel about radios: in which the hero electrocutes his bullies http://t.co/P8h8luitRg", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 04:31:32 +0000 2014", + "id": 471509051839217665, + "id_str": "471509051839217665", + "text": "@jesster_king I said one of, I wasn't referring to hard drives at all.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 471508329835921408, + "in_reply_to_status_id_str": "471508329835921408", + "in_reply_to_user_id": 46763517, + "in_reply_to_user_id_str": "46763517", + "in_reply_to_screen_name": "jesster_king", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 04:26:32 +0000 2014", + "id": 471507794047143936, + "id_str": "471507794047143936", + "text": "From the annals of Dwarf Fortress bugs: \"the king of my dwarves appointed a visiting merchant's yak as the general of the army\"", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 27, + "favorite_count": 35, + "favorited": true, + "retweeted": true, + "lang": "en" + }, + { + "created_at": "Wed May 28 04:25:49 +0000 2014", + "id": 471507611192668162, + "id_str": "471507611192668162", + "text": "@jesster_king one of the contexts of slave is a duplicate of the master?", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 471507178331729921, + "in_reply_to_status_id_str": "471507178331729921", + "in_reply_to_user_id": 46763517, + "in_reply_to_user_id_str": "46763517", + "in_reply_to_screen_name": "jesster_king", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 04:22:58 +0000 2014", + "id": 471506895946018816, + "id_str": "471506895946018816", + "text": "@Mamex_Toomoe *zip*\n\n...\n....\n\n...............", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 471506374422454273, + "in_reply_to_status_id_str": "471506374422454273", + "in_reply_to_user_id": 548705190, + "in_reply_to_user_id_str": "548705190", + "in_reply_to_screen_name": "Mamex_Toomoe", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "vi" + }, + { + "created_at": "Wed May 28 04:21:40 +0000 2014", + "id": 471506568479907840, + "id_str": "471506568479907840", + "text": "@jesster_king take your pick depending on the context? it's overloaded. http://t.co/9dU3QqDFmF", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 471505276542017536, + "in_reply_to_status_id_str": "471505276542017536", + "in_reply_to_user_id": 46763517, + "in_reply_to_user_id_str": "46763517", + "in_reply_to_screen_name": "jesster_king", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 03:52:36 +0000 2014", + "id": 471499252984971265, + "id_str": "471499252984971265", + "text": "@mikeymikey em… a high compression ratio means low entropy and less info. (Not a useful metric for human books either way.)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471498620601004032, + "in_reply_to_status_id_str": "471498620601004032", + "in_reply_to_user_id": 12238262, + "in_reply_to_user_id_str": "12238262", + "in_reply_to_screen_name": "mikeymikey", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 03:50:05 +0000 2014", + "id": 471498619019743232, + "id_str": "471498619019743232", + "text": "Some competing ereaders have SD slots. New project: make various tiers of Important Books For Your Apocalypse Kit", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 5, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 03:44:38 +0000 2014", + "id": 471497249176834048, + "id_str": "471497249176834048", + "text": "Apparently paperwhite only comes in one storage size so now I gotta figure out what the most important 1.25GB of books are", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 03:42:26 +0000 2014", + "id": 471496692814999553, + "id_str": "471496692814999553", + "text": "@RSWestmoreland also not sure on their range… I’m about twelve miles from downtown Boston", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471496268200439808, + "in_reply_to_status_id_str": "471496268200439808", + "in_reply_to_user_id": 242595690, + "in_reply_to_user_id_str": "242595690", + "in_reply_to_screen_name": "RSWestmoreland", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 03:41:52 +0000 2014", + "id": 471496552859856896, + "id_str": "471496552859856896", + "text": "@RSWestmoreland I don’t know much about EMPs, would something that’s both powered off and no magnetic storage go up so easily?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471496268200439808, + "in_reply_to_status_id_str": "471496268200439808", + "in_reply_to_user_id": 242595690, + "in_reply_to_user_id_str": "242595690", + "in_reply_to_screen_name": "RSWestmoreland", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 03:38:05 +0000 2014", + "id": 471495598978646016, + "id_str": "471495598978646016", + "text": "What I should do is get a solar charger for a kindle with the maximum storage space and seal it in a fireproof safe", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 5, + "favorite_count": 9, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 03:35:34 +0000 2014", + "id": 471494967094181891, + "id_str": "471494967094181891", + "text": "I “digitally obtained” enough books in college to ensure I can reconstruct civilization after the apocalypse. If there’s electricity.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 6, + "favorite_count": 14, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 03:34:01 +0000 2014", + "id": 471494574746382336, + "id_str": "471494574746382336", + "text": "I collected all the unfinished books in my house pertaining to history, not counting all those PDFs I pirated in my youth. Let’s read", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 03:26:35 +0000 2014", + "id": 471492707249319936, + "id_str": "471492707249319936", + "text": "@pndc suppose that, for similar reasons to why I cannot drive, I cannot operate a vehicle with even fewer wheels", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471492462461333504, + "in_reply_to_status_id_str": "471492462461333504", + "in_reply_to_user_id": 29492746, + "in_reply_to_user_id_str": "29492746", + "in_reply_to_screen_name": "pndc", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 03:00:16 +0000 2014", + "id": 471486083541131265, + "id_str": "471486083541131265", + "text": "@0x00string @Tuplet abadidea notes that her name is spelled 0xabad1dea or abadidea but not both 8(", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471485503653838850, + "in_reply_to_status_id_str": "471485503653838850", + "in_reply_to_user_id": 265096889, + "in_reply_to_user_id_str": "265096889", + "in_reply_to_screen_name": "0x00string", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 03:00:16 +0000 2014", + "id": 471486083541131265, + "id_str": "471486083541131265", + "text": "@0x00string @Tuplet abadidea notes that her name is spelled 0xabad1dea or abadidea but not both 8(", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471485503653838850, + "in_reply_to_status_id_str": "471485503653838850", + "in_reply_to_user_id": 265096889, + "in_reply_to_user_id_str": "265096889", + "in_reply_to_screen_name": "0x00string", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 02:59:27 +0000 2014", + "id": 471485877924155392, + "id_str": "471485877924155392", + "text": "@vathpela Most flash flooding deaths happen in cars when people decide it’s not that deep. Oregon Trail style.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471485285142757376, + "in_reply_to_status_id_str": "471485285142757376", + "in_reply_to_user_id": 14446089, + "in_reply_to_user_id_str": "14446089", + "in_reply_to_screen_name": "vathpela", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 02:55:28 +0000 2014", + "id": 471484873442865152, + "id_str": "471484873442865152", + "text": "@retrocombine discover local friends through shared emergency warning experiences", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471484285728620544, + "in_reply_to_status_id_str": "471484285728620544", + "in_reply_to_user_id": 128747003, + "in_reply_to_user_id_str": "128747003", + "in_reply_to_screen_name": "retrocombine", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 02:50:22 +0000 2014", + "id": 471483591420301313, + "id_str": "471483591420301313", + "text": "RT @drymangobird: @amanicdroid @0xabad1dea @dakami @lucabruno more hilariously, if you google \"Failure, wrong key. The right key is\" you ge…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Wed May 28 02:44:52 +0000 2014", + "id": 471482207156965377, + "id_str": "471482207156965377", + "text": "@amanicdroid @0xabad1dea @dakami @lucabruno more hilariously, if you google \"Failure, wrong key. The right key is\" you get affected pages", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 471471731870150656, + "in_reply_to_status_id_str": "471471731870150656", + "in_reply_to_user_id": 143789061, + "in_reply_to_user_id_str": "143789061", + "in_reply_to_screen_name": "amanicdroid", + "user": { + "id": 892400503, + "id_str": "892400503" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 30, + "favorite_count": 16, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "amanicdroid", + "name": "@amanicdroid", + "id": 143789061, + "id_str": "143789061", + "indices": [ + 0, + 12 + ] + }, + { + "screen_name": "0xabad1dea", + "name": "Melissa", + "id": 126030998, + "id_str": "126030998", + "indices": [ + 13, + 24 + ] + }, + { + "screen_name": "dakami", + "name": "Dan Kaminsky", + "id": 8917142, + "id_str": "8917142", + "indices": [ + 25, + 32 + ] + }, + { + "screen_name": "lucabruno", + "name": "Luca Bruno", + "id": 57680712, + "id_str": "57680712", + "indices": [ + 33, + 43 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 30, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 02:50:00 +0000 2014", + "id": 471483500705890304, + "id_str": "471483500705890304", + "text": ".@Hanzo55 nothing dates an article quite like an analogy to a theatre full of teenagers watching Titanic", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471476355797094400, + "in_reply_to_status_id_str": "471476355797094400", + "in_reply_to_user_id": 34945729, + "in_reply_to_user_id_str": "34945729", + "in_reply_to_screen_name": "Hanzo55", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 02:49:18 +0000 2014", + "id": 471483321504260096, + "id_str": "471483321504260096", + "text": "RT @Hanzo55: The Internet Sucks: Or, What I Learned Coding X-Wing vs. TIE Fighter http://t.co/DO6XMORKwj", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Wed May 28 02:21:37 +0000 2014", + "id": 471476355797094400, + "id_str": "471476355797094400", + "text": "The Internet Sucks: Or, What I Learned Coding X-Wing vs. TIE Fighter http://t.co/DO6XMORKwj", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 34945729, + "id_str": "34945729" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 58, + "favorite_count": 106, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/DO6XMORKwj", + "expanded_url": "http://www.gamasutra.com/view/feature/131781/the_internet_sucks_or_what_i_.php", + "display_url": "gamasutra.com/view/feature/1…", + "indices": [ + 69, + 91 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 58, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 02:39:41 +0000 2014", + "id": 471480904234582017, + "id_str": "471480904234582017", + "text": "Awesome a flash flood warning (all dystopic aspects aside, it’s pretty cool that my pocket computer just warned me about that)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 02:25:53 +0000 2014", + "id": 471477430633660416, + "id_str": "471477430633660416", + "text": "@semibogan the lack of a good arcade near my college is the direct cause of me not sticking around for a phd !", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471476839718723584, + "in_reply_to_status_id_str": "471476839718723584", + "in_reply_to_user_id": 168436347, + "in_reply_to_user_id_str": "168436347", + "in_reply_to_screen_name": "semibogan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 02:16:28 +0000 2014", + "id": 471475060709261313, + "id_str": "471475060709261313", + "text": "As someone who can’t drive, I nominate myself as a beta tester for google cars… just gimme a good insurance policy", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 11, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 02:09:17 +0000 2014", + "id": 471473253333368832, + "id_str": "471473253333368832", + "text": "RT @google: The next stop on the road to a self-driving car http://t.co/gniIr42rmQ http://t.co/AkpLOpMWWB", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Wed May 28 02:06:32 +0000 2014", + "id": 471472559431495681, + "id_str": "471472559431495681", + "text": "The next stop on the road to a self-driving car http://t.co/gniIr42rmQ http://t.co/AkpLOpMWWB", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 20536157, + "id_str": "20536157" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2163, + "favorite_count": 1251, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/gniIr42rmQ", + "expanded_url": "http://goo.gl/0YMiVq", + "display_url": "goo.gl/0YMiVq", + "indices": [ + 48, + 70 + ] + } + ], + "user_mentions": [ + + ], + "media": [ + { + "id": 471472557200130049, + "id_str": "471472557200130049", + "indices": [ + 71, + 93 + ], + "media_url": "http://pbs.twimg.com/media/BosByvVCQAEEEgn.jpg", + "media_url_https": "https://pbs.twimg.com/media/BosByvVCQAEEEgn.jpg", + "url": "http://t.co/AkpLOpMWWB", + "display_url": "pic.twitter.com/AkpLOpMWWB", + "expanded_url": "http://twitter.com/google/status/471472559431495681/photo/1", + "type": "photo", + "sizes": { + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 1024, + "h": 456, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 267, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 151, + "resize": "fit" + } + } + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 2163, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 02:07:49 +0000 2014", + "id": 471472883328626689, + "id_str": "471472883328626689", + "text": "Literally in tears over https://t.co/qc2a9eCfnl I needed that 😂", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 29, + "favorite_count": 22, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 02:03:40 +0000 2014", + "id": 471471840527802368, + "id_str": "471471840527802368", + "text": "@comex well there are the actual wargames but they’re outside of the technical abilities of 98% of gamers", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471471582398119936, + "in_reply_to_status_id_str": "471471582398119936", + "in_reply_to_user_id": 14550962, + "in_reply_to_user_id_str": "14550962", + "in_reply_to_screen_name": "comex", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 02:01:16 +0000 2014", + "id": 471471235092598785, + "id_str": "471471235092598785", + "text": ".@dakami @lucabruno what, it’s just another stupid unauthenticated… OH MY GODS 😱", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471470711840993280, + "in_reply_to_status_id_str": "471470711840993280", + "in_reply_to_user_id": 8917142, + "in_reply_to_user_id_str": "8917142", + "in_reply_to_screen_name": "dakami", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 10, + "favorite_count": 8, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 02:00:41 +0000 2014", + "id": 471471089303179266, + "id_str": "471471089303179266", + "text": "RT @dakami: “@lucabruno: CVE-2014-3445 is probably the most ridiculous web flaw I've ever seen https://t.co/8YLX9dQ53s” < WOW.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Wed May 28 01:59:11 +0000 2014", + "id": 471470711840993280, + "id_str": "471470711840993280", + "text": "“@lucabruno: CVE-2014-3445 is probably the most ridiculous web flaw I've ever seen https://t.co/8YLX9dQ53s” < WOW.", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 471378458137079809, + "in_reply_to_status_id_str": "471378458137079809", + "in_reply_to_user_id": 57680712, + "in_reply_to_user_id_str": "57680712", + "in_reply_to_screen_name": "lucabruno", + "user": { + "id": 8917142, + "id_str": "8917142" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 176, + "favorite_count": 57, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "https://t.co/8YLX9dQ53s", + "expanded_url": "https://www.portcullis-security.com/security-research-and-downloads/security-advisories/cve-2014-3445/", + "display_url": "portcullis-security.com/security-resea…", + "indices": [ + 83, + 106 + ] + } + ], + "user_mentions": [ + { + "screen_name": "lucabruno", + "name": "Luca Bruno", + "id": 57680712, + "id_str": "57680712", + "indices": [ + 1, + 11 + ] + } + ] + }, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 176, + "favorite_count": 0, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 01:57:23 +0000 2014", + "id": 471470258201825280, + "id_str": "471470258201825280", + "text": "Something extremely satisfying about getting a high score that overflows the bounding box.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 11, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 01:33:21 +0000 2014", + "id": 471464208698458112, + "id_str": "471464208698458112", + "text": "@jaywalkn I did? That doesn’t change the keyboard in all apps", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471464057997107201, + "in_reply_to_status_id_str": "471464057997107201", + "in_reply_to_user_id": 82909160, + "in_reply_to_user_id_str": "82909160", + "in_reply_to_screen_name": "jaywalkn", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 01:33:03 +0000 2014", + "id": 471464133452632065, + "id_str": "471464133452632065", + "text": "Ma’am I am like 600% certain you initiated this battle not me http://t.co/fOMb2NVvwJ", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 6, + "favorite_count": 21, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 01:32:22 +0000 2014", + "id": 471463959917101056, + "id_str": "471463959917101056", + "text": "@thegrugq technically I just bought the sister volume on Byzantium because it’s available for kindle\n\nPlus Byzantium is cooler IMO", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471463487084826624, + "in_reply_to_status_id_str": "471463487084826624", + "in_reply_to_user_id": 18983429, + "in_reply_to_user_id_str": "18983429", + "in_reply_to_screen_name": "thegrugq", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 01:16:39 +0000 2014", + "id": 471460006609444864, + "id_str": "471460006609444864", + "text": "Yup I’m definitely buying *another* book solely because I saw a screen cap of it on twitter. Use this power wisely, twitter", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 01:13:11 +0000 2014", + "id": 471459135020875776, + "id_str": "471459135020875776", + "text": "@Talen_Lee we definitely know the political stance of the unknowable god", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471458580961320960, + "in_reply_to_status_id_str": "471458580961320960", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 01:12:40 +0000 2014", + "id": 471459004712235008, + "id_str": "471459004712235008", + "text": "What is iOS trying to tell me http://t.co/hRmUhH2MMN", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 19, + "favorite_count": 33, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 01:09:48 +0000 2014", + "id": 471458282654412801, + "id_str": "471458282654412801", + "text": "@Talen_Lee become a contractor for what? Carpentry?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471457752137469952, + "in_reply_to_status_id_str": "471457752137469952", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 01:06:09 +0000 2014", + "id": 471457363606917121, + "id_str": "471457363606917121", + "text": "@mirell maybe? It is pretty squicky …", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471457247264903168, + "in_reply_to_status_id_str": "471457247264903168", + "in_reply_to_user_id": 12733992, + "in_reply_to_user_id_str": "12733992", + "in_reply_to_screen_name": "mirell", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 01:05:37 +0000 2014", + "id": 471457229494026240, + "id_str": "471457229494026240", + "text": "@Packetknife 🔑 found it", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471457087856594945, + "in_reply_to_status_id_str": "471457087856594945", + "in_reply_to_user_id": 19564254, + "in_reply_to_user_id_str": "19564254", + "in_reply_to_screen_name": "Packetknife", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 01:04:12 +0000 2014", + "id": 471456874387501056, + "id_str": "471456874387501056", + "text": "Apparently I’m on staycation next week and I think I need to commit to powering through my Reading List of Good Intentions", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 00:56:04 +0000 2014", + "id": 471454826388529152, + "id_str": "471454826388529152", + "text": ".@lcamtuf his exact words were “no I should be looking at the screen poking through a list” of network host names", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471454597853106176, + "in_reply_to_status_id_str": "471454597853106176", + "in_reply_to_user_id": 44666078, + "in_reply_to_user_id_str": "44666078", + "in_reply_to_screen_name": "lcamtuf", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 00:55:15 +0000 2014", + "id": 471454620661719040, + "id_str": "471454620661719040", + "text": "@SHREK_FLEX @GreenPirate_org instead I commented on how vigorously people DEFENDED a word that other people decided to change in their docs", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471454231120318464, + "in_reply_to_status_id_str": "471454231120318464", + "in_reply_to_user_id": 27184100, + "in_reply_to_user_id_str": "27184100", + "in_reply_to_screen_name": "SHREK_FLEX", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 00:54:32 +0000 2014", + "id": 471454439115857920, + "id_str": "471454439115857920", + "text": "@SHREK_FLEX @GreenPirate_org I request you note that I never called for the censorship of a word", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471454231120318464, + "in_reply_to_status_id_str": "471454231120318464", + "in_reply_to_user_id": 27184100, + "in_reply_to_user_id_str": "27184100", + "in_reply_to_screen_name": "SHREK_FLEX", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 00:52:21 +0000 2014", + "id": 471453892245352448, + "id_str": "471453892245352448", + "text": "@SHREK_FLEX @GreenPirate_org I’m not sure what that has to do with objecting to dismissing the role of imperialism in the history of slavery", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471453220565286912, + "in_reply_to_status_id_str": "471453220565286912", + "in_reply_to_user_id": 27184100, + "in_reply_to_user_id_str": "27184100", + "in_reply_to_screen_name": "SHREK_FLEX", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 00:50:29 +0000 2014", + "id": 471453419258261504, + "id_str": "471453419258261504", + "text": "RT @puellavulnerata: That forensic accounting blog trying to prove Karpeles looted it didn't last long: https://t.co/wwCXTZIrYf @0xabad1dea…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Wed May 28 00:49:39 +0000 2014", + "id": 471453212621275137, + "id_str": "471453212621275137", + "text": "That forensic accounting blog trying to prove Karpeles looted it didn't last long: https://t.co/wwCXTZIrYf @0xabad1dea @nullvoid9", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 471063799454109697, + "in_reply_to_status_id_str": "471063799454109697", + "in_reply_to_user_id": 126030998, + "in_reply_to_user_id_str": "126030998", + "in_reply_to_screen_name": "0xabad1dea", + "user": { + "id": 54666727, + "id_str": "54666727" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 5, + "favorite_count": 3, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "https://t.co/wwCXTZIrYf", + "expanded_url": "https://willyreport.wordpress.com/2014/05/25/the-willy-report-proof-of-massive-fraudulent-trading-activity-at-mt-gox-and-how-it-has-affected-the-price-of-bitcoin/", + "display_url": "willyreport.wordpress.com/2014/05/25/the…", + "indices": [ + 83, + 106 + ] + } + ], + "user_mentions": [ + { + "screen_name": "0xabad1dea", + "name": "Melissa", + "id": 126030998, + "id_str": "126030998", + "indices": [ + 107, + 118 + ] + }, + { + "screen_name": "nullvoid9", + "name": "Null Void", + "id": 244100640, + "id_str": "244100640", + "indices": [ + 119, + 129 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 5, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 00:50:12 +0000 2014", + "id": 471453348261285888, + "id_str": "471453348261285888", + "text": "So my husband ragequit Watchdogs because I’ve taught him well re: realistic hacking", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 6, + "favorite_count": 23, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 00:46:28 +0000 2014", + "id": 471452409525329920, + "id_str": "471452409525329920", + "text": "@FioraAeterna @Talen_Lee @m1sp but the fact that the imperial dolls represent a holiday would go over most westerners’ heads", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471451949825810432, + "in_reply_to_status_id_str": "471451949825810432", + "in_reply_to_user_id": 2468699718, + "in_reply_to_user_id_str": "2468699718", + "in_reply_to_screen_name": "FioraAeterna", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 00:45:48 +0000 2014", + "id": 471452243821338624, + "id_str": "471452243821338624", + "text": "@FioraAeterna @Talen_Lee @m1sp not any more specific than a Christmas tree or a jack-o-lantern or the imperial dolls…?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471451949825810432, + "in_reply_to_status_id_str": "471451949825810432", + "in_reply_to_user_id": 2468699718, + "in_reply_to_user_id_str": "2468699718", + "in_reply_to_screen_name": "FioraAeterna", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 00:44:19 +0000 2014", + "id": 471451870150807552, + "id_str": "471451870150807552", + "text": "@Talen_Lee @m1sp it’s supposed to be a valentine heart box of chocolates", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471450109905866752, + "in_reply_to_status_id_str": "471450109905866752", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 00:43:14 +0000 2014", + "id": 471451597847789568, + "id_str": "471451597847789568", + "text": "@GreenPirate_org hahaha sure okay", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471448525151432705, + "in_reply_to_status_id_str": "471448525151432705", + "in_reply_to_user_id": 213296734, + "in_reply_to_user_id_str": "213296734", + "in_reply_to_screen_name": "GreenPirate_org", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "tl" + }, + { + "created_at": "Wed May 28 00:27:53 +0000 2014", + "id": 471447732776099840, + "id_str": "471447732776099840", + "text": "@Talen_Lee a bit, but not really worth the flashback scene", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471447491833917441, + "in_reply_to_status_id_str": "471447491833917441", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 00:20:34 +0000 2014", + "id": 471445891589488640, + "id_str": "471445891589488640", + "text": "@m1sp @tanonev not to mention I apparently draw in many thousands of people with my better blog posts and receive actual thank you notes (!)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471445661330587648, + "in_reply_to_status_id_str": "471445661330587648", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 00:19:10 +0000 2014", + "id": 471445542023606272, + "id_str": "471445542023606272", + "text": "@SHREK_FLEX @Fe3Mike I’m willing to be proven wrong but I’m pretty sure they are very explicitly *into* awareness of their position 😛", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471445007229263872, + "in_reply_to_status_id_str": "471445007229263872", + "in_reply_to_user_id": 27184100, + "in_reply_to_user_id_str": "27184100", + "in_reply_to_screen_name": "SHREK_FLEX", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 00:17:40 +0000 2014", + "id": 471445162149687296, + "id_str": "471445162149687296", + "text": "@tanonev @m1sp I don’t consciously choose to tweet any more than I consciously choose to breathe 😅", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471444927809736704, + "in_reply_to_status_id_str": "471444927809736704", + "in_reply_to_user_id": 161798056, + "in_reply_to_user_id_str": "161798056", + "in_reply_to_screen_name": "tanonev", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 00:16:11 +0000 2014", + "id": 471444787623899139, + "id_str": "471444787623899139", + "text": "@Fe3Mike it’s a bit overloaded, it can be a replica, a follower, a secondary\n\nBuuuuut none of those are one syllable… sub?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471444401907302402, + "in_reply_to_status_id_str": "471444401907302402", + "in_reply_to_user_id": 41594415, + "in_reply_to_user_id_str": "41594415", + "in_reply_to_screen_name": "Fe3Mike", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 00:14:21 +0000 2014", + "id": 471444327231528960, + "id_str": "471444327231528960", + "text": "@WhiteMageSlave >.> \n\n<.<", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471438261681156096, + "in_reply_to_status_id_str": "471438261681156096", + "in_reply_to_user_id": 90791634, + "in_reply_to_user_id_str": "90791634", + "in_reply_to_screen_name": "WhiteMageSlave", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "vi" + }, + { + "created_at": "Wed May 28 00:13:47 +0000 2014", + "id": 471444186349469696, + "id_str": "471444186349469696", + "text": "@alt_m1sp … D:", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471437837691154432, + "in_reply_to_status_id_str": "471437837691154432", + "in_reply_to_user_id": 2401670173, + "in_reply_to_user_id_str": "2401670173", + "in_reply_to_screen_name": "alt_m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Wed May 28 00:10:43 +0000 2014", + "id": 471443413628223490, + "id_str": "471443413628223490", + "text": "@SHREK_FLEX @tanonev then I’m not sure at what point that stopped being the impetus of the conversation", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471443202205958145, + "in_reply_to_status_id_str": "471443202205958145", + "in_reply_to_user_id": 27184100, + "in_reply_to_user_id_str": "27184100", + "in_reply_to_screen_name": "SHREK_FLEX", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 00:10:14 +0000 2014", + "id": 471443290546393088, + "id_str": "471443290546393088", + "text": "@SHREK_FLEX @tanonev and, like the time someone tweaked for neutral pronouns in a document, it drew a github comment freak out", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471442675166892032, + "in_reply_to_status_id_str": "471442675166892032", + "in_reply_to_user_id": 27184100, + "in_reply_to_user_id_str": "27184100", + "in_reply_to_screen_name": "SHREK_FLEX", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 00:08:52 +0000 2014", + "id": 471442947557584896, + "id_str": "471442947557584896", + "text": "@SHREK_FLEX @tanonev to bring this back to the original context, nobody was “policing” the word slave; one project agreed to change it", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471442675166892032, + "in_reply_to_status_id_str": "471442675166892032", + "in_reply_to_user_id": 27184100, + "in_reply_to_user_id_str": "27184100", + "in_reply_to_screen_name": "SHREK_FLEX", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 00:07:27 +0000 2014", + "id": 471442590211276800, + "id_str": "471442590211276800", + "text": "@SHREK_FLEX @tanonev I learned all these things via someone else pointing out to me they could be problematic", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471442450071175168, + "in_reply_to_status_id_str": "471442450071175168", + "in_reply_to_user_id": 27184100, + "in_reply_to_user_id_str": "27184100", + "in_reply_to_screen_name": "SHREK_FLEX", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 28 00:05:11 +0000 2014", + "id": 471442020230119424, + "id_str": "471442020230119424", + "text": "@m1sp 💝", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": true, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Wed May 28 00:04:18 +0000 2014", + "id": 471441798792220673, + "id_str": "471441798792220673", + "text": ".@tanonev I *personally* maintain that cleaning up my own language choices has directly led to me being more mindful of others", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471439973548175361, + "in_reply_to_status_id_str": "471439973548175361", + "in_reply_to_user_id": 161798056, + "in_reply_to_user_id_str": "161798056", + "in_reply_to_screen_name": "tanonev", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 10, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 23:58:06 +0000 2014", + "id": 471440237227696128, + "id_str": "471440237227696128", + "text": "@tanonev nobody VC-backs *my* apps :(", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471439973548175361, + "in_reply_to_status_id_str": "471439973548175361", + "in_reply_to_user_id": 161798056, + "in_reply_to_user_id_str": "161798056", + "in_reply_to_screen_name": "tanonev", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 23:51:38 +0000 2014", + "id": 471438611288948736, + "id_str": "471438611288948736", + "text": "@tanonev fixing wording is planting seeds: you reap it long term \n\nAnyway my energy for bickering on twitter is in fact infinite", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471437922789371905, + "in_reply_to_status_id_str": "471437922789371905", + "in_reply_to_user_id": 161798056, + "in_reply_to_user_id_str": "161798056", + "in_reply_to_screen_name": "tanonev", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 23:49:34 +0000 2014", + "id": 471438090024660992, + "id_str": "471438090024660992", + "text": "@Wkter … not that I’m the executive in charge of that decision because lemme tell you I could find things to change in posix", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471435620334981120, + "in_reply_to_status_id_str": "471435620334981120", + "in_reply_to_user_id": 153194864, + "in_reply_to_user_id_str": "153194864", + "in_reply_to_screen_name": "Wkter", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 23:48:30 +0000 2014", + "id": 471437821589594114, + "id_str": "471437821589594114", + "text": "@Wkter I do promise that if I ever get the impression there’s a genuine faction for renaming kill I will consider them seriously", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471435620334981120, + "in_reply_to_status_id_str": "471435620334981120", + "in_reply_to_user_id": 153194864, + "in_reply_to_user_id_str": "153194864", + "in_reply_to_screen_name": "Wkter", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 23:42:41 +0000 2014", + "id": 471436358083698690, + "id_str": "471436358083698690", + "text": "@admittedlyhuman MRA is literally defined as being a reactionary movement against feminism is why we tell them that", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471436228915900417, + "in_reply_to_status_id_str": "471436228915900417", + "in_reply_to_user_id": 19892410, + "in_reply_to_user_id_str": "19892410", + "in_reply_to_screen_name": "admittedlyhuman", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 23:40:51 +0000 2014", + "id": 471435897456844800, + "id_str": "471435897456844800", + "text": "@admittedlyhuman feminism is a *subset*. If a feminist isn’t intersectional they’re completely missing the underlying problem.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471435320727470080, + "in_reply_to_status_id_str": "471435320727470080", + "in_reply_to_user_id": 19892410, + "in_reply_to_user_id_str": "19892410", + "in_reply_to_screen_name": "admittedlyhuman", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 23:35:55 +0000 2014", + "id": 471434655984783360, + "id_str": "471434655984783360", + "text": "Anyway the reason social justice types nitpick wording so much is because language is the operating system of the sapient mind", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 24, + "favorite_count": 29, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 23:32:28 +0000 2014", + "id": 471433788548194304, + "id_str": "471433788548194304", + "text": "@Wkter —kill in particular with real world violent outcomes, unlike, say, murder.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471433289891602433, + "in_reply_to_status_id_str": "471433289891602433", + "in_reply_to_user_id": 153194864, + "in_reply_to_user_id_str": "153194864", + "in_reply_to_screen_name": "Wkter", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 23:32:02 +0000 2014", + "id": 471433677562707968, + "id_str": "471433677562707968", + "text": "@Wkter not entirely! Having specifically discussed this before, however, it seems there is little instinctual association of the word —", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471433289891602433, + "in_reply_to_status_id_str": "471433289891602433", + "in_reply_to_user_id": 153194864, + "in_reply_to_user_id_str": "153194864", + "in_reply_to_screen_name": "Wkter", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 23:30:41 +0000 2014", + "id": 471433338226364416, + "id_str": "471433338226364416", + "text": "@rguillebert I’ve seen it achieve such connotations in careless application of it: especially in the othering of villains as foreign", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471432881395728384, + "in_reply_to_status_id_str": "471432881395728384", + "in_reply_to_user_id": 87818574, + "in_reply_to_user_id_str": "87818574", + "in_reply_to_screen_name": "rguillebert", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 23:29:13 +0000 2014", + "id": 471432968708575232, + "id_str": "471432968708575232", + "text": "@0x00string no, the bad of centuries of cultural forces that are not our faults personally but it’s our responsibility to dismantle", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471432068702822400, + "in_reply_to_status_id_str": "471432068702822400", + "in_reply_to_user_id": 265096889, + "in_reply_to_user_id_str": "265096889", + "in_reply_to_screen_name": "0x00string", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 23:27:59 +0000 2014", + "id": 471432660842455040, + "id_str": "471432660842455040", + "text": "@rguillebert my opinion is a serious lack of context?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471430475962392576, + "in_reply_to_status_id_str": "471430475962392576", + "in_reply_to_user_id": 87818574, + "in_reply_to_user_id_str": "87818574", + "in_reply_to_screen_name": "rguillebert", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 23:27:26 +0000 2014", + "id": 471432521734176768, + "id_str": "471432521734176768", + "text": "@Wkter okay serious question \n\nWould you be cool with referring to insertion of a USB connector as rape. Just every day. You rape your PC", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471429820019400704, + "in_reply_to_status_id_str": "471429820019400704", + "in_reply_to_user_id": 153194864, + "in_reply_to_user_id_str": "153194864", + "in_reply_to_screen_name": "Wkter", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 23:26:35 +0000 2014", + "id": 471432309280108544, + "id_str": "471432309280108544", + "text": "@GreenPirate_org whoa an English word has etymological roots in European linguistics? I’m shocked.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471428818360877056, + "in_reply_to_status_id_str": "471428818360877056", + "in_reply_to_user_id": 213296734, + "in_reply_to_user_id_str": "213296734", + "in_reply_to_screen_name": "GreenPirate_org", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 23:24:12 +0000 2014", + "id": 471431707300986880, + "id_str": "471431707300986880", + "text": "@0x00string white PRIVILEGE is a systematic power that exists and needs to be called out and is usually exercised unintentionally", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471428597706526721, + "in_reply_to_status_id_str": "471428597706526721", + "in_reply_to_user_id": 265096889, + "in_reply_to_user_id_str": "265096889", + "in_reply_to_screen_name": "0x00string", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 23:22:59 +0000 2014", + "id": 471431399850127360, + "id_str": "471431399850127360", + "text": "@0x00string help help I’m oppressing myself.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471428597706526721, + "in_reply_to_status_id_str": "471428597706526721", + "in_reply_to_user_id": 265096889, + "in_reply_to_user_id_str": "265096889", + "in_reply_to_screen_name": "0x00string", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 23:15:44 +0000 2014", + "id": 471429576087064576, + "id_str": "471429576087064576", + "text": "@SHREK_FLEX you will probably want to unfollow me right about now if you can’t handle me objecting to trivializing slavery", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471429414362697728, + "in_reply_to_status_id_str": "471429414362697728", + "in_reply_to_user_id": 27184100, + "in_reply_to_user_id_str": "27184100", + "in_reply_to_screen_name": "SHREK_FLEX", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 23:12:15 +0000 2014", + "id": 471428700991279105, + "id_str": "471428700991279105", + "text": "@Wkter false equivalence? Slavery is the deprivation of fundamental human rights, practiced at a scale that reshaped global society", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471428082256347136, + "in_reply_to_status_id_str": "471428082256347136", + "in_reply_to_user_id": 153194864, + "in_reply_to_user_id_str": "153194864", + "in_reply_to_screen_name": "Wkter", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 23:11:21 +0000 2014", + "id": 471428473232564224, + "id_str": "471428473232564224", + "text": "@SHREK_FLEX people conscientiously object to trivializing a word that means a horrible, wicked thing to describe a database yes", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471428081883045888, + "in_reply_to_status_id_str": "471428081883045888", + "in_reply_to_user_id": 27184100, + "in_reply_to_user_id_str": "27184100", + "in_reply_to_screen_name": "SHREK_FLEX", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 23:09:30 +0000 2014", + "id": 471428007614500864, + "id_str": "471428007614500864", + "text": "@0x00string start here, I will get you the list of the other n thousands later https://t.co/AmcBBYT2YX", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471427764759707648, + "in_reply_to_status_id_str": "471427764759707648", + "in_reply_to_user_id": 265096889, + "in_reply_to_user_id_str": "265096889", + "in_reply_to_screen_name": "0x00string", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 23:08:00 +0000 2014", + "id": 471427629044604928, + "id_str": "471427629044604928", + "text": "And the fact that it was the first word someone thought of to describe something technical trumps however many requests for a different word", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 5, + "favorite_count": 5, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 23:06:57 +0000 2014", + "id": 471427367622045698, + "id_str": "471427367622045698", + "text": "Anyway I find it really telling that a predominantly white industry would so vigorously defend why it’s okay to lightly use the word “slave”", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 16, + "favorite_count": 18, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 23:04:36 +0000 2014", + "id": 471426773524439040, + "id_str": "471426773524439040", + "text": "@Wkter if it wasn’t problematic we wouldn’t have this problem", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471425261225791488, + "in_reply_to_status_id_str": "471425261225791488", + "in_reply_to_user_id": 153194864, + "in_reply_to_user_id_str": "153194864", + "in_reply_to_screen_name": "Wkter", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 23:04:08 +0000 2014", + "id": 471426656628793346, + "id_str": "471426656628793346", + "text": "@icourtneyloveu use of the word slave in a technical context, hard drives, databases etc", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471426090032848896, + "in_reply_to_status_id_str": "471426090032848896", + "in_reply_to_user_id": 2374041583, + "in_reply_to_user_id_str": "2374041583", + "in_reply_to_screen_name": "icourtneyloveu", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 23:01:27 +0000 2014", + "id": 471425981031276546, + "id_str": "471425981031276546", + "text": "@pixeldesu @washiiko ummmm\n\nNope nope nope people have been complaining about this for years and told “who cares” even as they actively care", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471424840688500736, + "in_reply_to_status_id_str": "471424840688500736", + "in_reply_to_user_id": 206201810, + "in_reply_to_user_id_str": "206201810", + "in_reply_to_screen_name": "pixeldesu", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 22:59:54 +0000 2014", + "id": 471425590684168192, + "id_str": "471425590684168192", + "text": "RT @m1sp: @0xabad1dea http://t.co/Rs8uaQQXKM", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue May 27 22:56:47 +0000 2014", + "id": 471424807355969536, + "id_str": "471424807355969536", + "text": "@0xabad1dea http://t.co/Rs8uaQQXKM", + "source": "TweetDeck", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 126030998, + "in_reply_to_user_id_str": "126030998", + "in_reply_to_screen_name": "0xabad1dea", + "user": { + "id": 1007638597, + "id_str": "1007638597" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 21, + "favorite_count": 19, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "0xabad1dea", + "name": "Melissa", + "id": 126030998, + "id_str": "126030998", + "indices": [ + 0, + 11 + ] + } + ], + "media": [ + { + "id": 471424802054348800, + "id_str": "471424802054348800", + "indices": [ + 12, + 34 + ], + "media_url": "http://pbs.twimg.com/media/BorWXBjCIAAFKUm.png", + "media_url_https": "https://pbs.twimg.com/media/BorWXBjCIAAFKUm.png", + "url": "http://t.co/Rs8uaQQXKM", + "display_url": "pic.twitter.com/Rs8uaQQXKM", + "expanded_url": "http://twitter.com/m1sp/status/471424807355969536/photo/1", + "type": "photo", + "sizes": { + "medium": { + "w": 600, + "h": 513, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 290, + "resize": "fit" + }, + "large": { + "w": 941, + "h": 804, + "resize": "fit" + } + } + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + "retweet_count": 21, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Tue May 27 22:55:33 +0000 2014", + "id": 471424497896411136, + "id_str": "471424497896411136", + "text": "“It’s just a word! Which is why I am highly insistent that we not change it to a less problematic word.” — subtweet of many people", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 28, + "favorite_count": 44, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 22:47:39 +0000 2014", + "id": 471422508051075072, + "id_str": "471422508051075072", + "text": "RT @_defcon_: If you are going to speak at or attend #DEFCON & you need a visa to enter U.S. please contact us for invite letter to help yo…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sat May 24 19:26:37 +0000 2014", + "id": 470284753631850496, + "id_str": "470284753631850496", + "text": "If you are going to speak at or attend #DEFCON & you need a visa to enter U.S. please contact us for invite letter to help your app", + "source": "TweetCaster for Android", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 14924965, + "id_str": "14924965" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 46, + "favorite_count": 23, + "entities": { + "hashtags": [ + { + "text": "DEFCON", + "indices": [ + 39, + 46 + ] + } + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 46, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 22:45:36 +0000 2014", + "id": 471421992483037184, + "id_str": "471421992483037184", + "text": "@pixeldesu @washiiko like imagine if wiping a hard drive was called genocide \n\nIt’s just a word it means the total destruction of — 😑", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471421425958387714, + "in_reply_to_status_id_str": "471421425958387714", + "in_reply_to_user_id": 206201810, + "in_reply_to_user_id_str": "206201810", + "in_reply_to_screen_name": "pixeldesu", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 22:44:10 +0000 2014", + "id": 471421633861672960, + "id_str": "471421633861672960", + "text": "@pixeldesu @washiiko if it was “just a word” this wouldn’t have been brought up again and again by lots of people for years and years", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471421425958387714, + "in_reply_to_status_id_str": "471421425958387714", + "in_reply_to_user_id": 206201810, + "in_reply_to_user_id_str": "206201810", + "in_reply_to_screen_name": "pixeldesu", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 22:41:50 +0000 2014", + "id": 471421044599709696, + "id_str": "471421044599709696", + "text": "@pixeldesu @washiiko why should we trivialize the use of a word that means the suffering of humans on a scale that reshaped the world?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471420329252757505, + "in_reply_to_status_id_str": "471420329252757505", + "in_reply_to_user_id": 206201810, + "in_reply_to_user_id_str": "206201810", + "in_reply_to_screen_name": "pixeldesu", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 22:38:32 +0000 2014", + "id": 471420214194630658, + "id_str": "471420214194630658", + "text": "@washiiko @pixeldesu the amount of resistance to changing it to a word that is both more technically accurate and baggage-free is bizarre", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471419507693473792, + "in_reply_to_status_id_str": "471419507693473792", + "in_reply_to_user_id": 47900074, + "in_reply_to_user_id_str": "47900074", + "in_reply_to_screen_name": "washiiko", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 22:36:48 +0000 2014", + "id": 471419778171936768, + "id_str": "471419778171936768", + "text": "@washiiko @pixeldesu whitewashing what? The long history of oppressing hard drives? We never should have used slave as a *technical* term", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471419507693473792, + "in_reply_to_status_id_str": "471419507693473792", + "in_reply_to_user_id": 47900074, + "in_reply_to_user_id_str": "47900074", + "in_reply_to_screen_name": "washiiko", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 22:32:08 +0000 2014", + "id": 471418602583650305, + "id_str": "471418602583650305", + "text": "@washiiko @pixeldesu there are people who willingly call themselves slaves but the willingly part makes them… not actually slaves", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471418409008517120, + "in_reply_to_status_id_str": "471418409008517120", + "in_reply_to_user_id": 47900074, + "in_reply_to_user_id_str": "47900074", + "in_reply_to_screen_name": "washiiko", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 22:29:56 +0000 2014", + "id": 471418050453843968, + "id_str": "471418050453843968", + "text": "@pixeldesu @washiiko why use an analogy term to a practice that is unambiguously evil when we can easily find better words?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471413538506813440, + "in_reply_to_status_id_str": "471413538506813440", + "in_reply_to_user_id": 206201810, + "in_reply_to_user_id_str": "206201810", + "in_reply_to_screen_name": "pixeldesu", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 22:26:17 +0000 2014", + "id": 471417133067288578, + "id_str": "471417133067288578", + "text": "@zhuowei I can’t ever be called on lying if all I do is quote people out of context!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471416150509625344, + "in_reply_to_status_id_str": "471416150509625344", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 22:25:52 +0000 2014", + "id": 471417027228225536, + "id_str": "471417027228225536", + "text": "RT @zhuowei: @0xabad1dea re. 2x2 pixel tweet: I was speaking about what the PROTOCOL defaults to: the Steam client detects the correct reso…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue May 27 22:20:45 +0000 2014", + "id": 471415737878183937, + "id_str": "471415737878183937", + "text": "@0xabad1dea re. 2x2 pixel tweet: I was speaking about what the PROTOCOL defaults to: the Steam client detects the correct resolution.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 126030998, + "in_reply_to_user_id_str": "126030998", + "in_reply_to_screen_name": "0xabad1dea", + "user": { + "id": 383083538, + "id_str": "383083538" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 2, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "0xabad1dea", + "name": "Melissa", + "id": 126030998, + "id_str": "126030998", + "indices": [ + 0, + 11 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 1, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 22:22:49 +0000 2014", + "id": 471416258512969728, + "id_str": "471416258512969728", + "text": "RT @TheOnion: College Rape Victim Pretty Thrilled She Gets To Recount Assault To Faculty Committee http://t.co/39J3RYvObI http://t.co/QxGlg…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue May 27 18:28:49 +0000 2014", + "id": 471357371793825793, + "id_str": "471357371793825793", + "text": "College Rape Victim Pretty Thrilled She Gets To Recount Assault To Faculty Committee http://t.co/39J3RYvObI http://t.co/QxGlgNAqGR", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 14075928, + "id_str": "14075928" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 533, + "favorite_count": 506, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/39J3RYvObI", + "expanded_url": "http://onion.com/ScqRZI", + "display_url": "onion.com/ScqRZI", + "indices": [ + 85, + 107 + ] + } + ], + "user_mentions": [ + + ], + "media": [ + { + "id": 471357370694901760, + "id_str": "471357370694901760", + "indices": [ + 108, + 130 + ], + "media_url": "http://pbs.twimg.com/media/BoqZCAKIIAA3GET.jpg", + "media_url_https": "https://pbs.twimg.com/media/BoqZCAKIIAA3GET.jpg", + "url": "http://t.co/QxGlgNAqGR", + "display_url": "pic.twitter.com/QxGlgNAqGR", + "expanded_url": "http://twitter.com/TheOnion/status/471357371793825793/photo/1", + "type": "photo", + "sizes": { + "small": { + "w": 340, + "h": 193, + "resize": "fit" + }, + "large": { + "w": 1024, + "h": 580, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 600, + "h": 340, + "resize": "fit" + } + } + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 533, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 22:21:11 +0000 2014", + "id": 471415848381333505, + "id_str": "471415848381333505", + "text": "@zhuowei are you blaming me for sending too many comments your way", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471415737878183937, + "in_reply_to_status_id_str": "471415737878183937", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 22:20:19 +0000 2014", + "id": 471415629132492801, + "id_str": "471415629132492801", + "text": ".@AstroKatie @sciencecomic someone requested that I cut the feminism and stick to the hacking once.\n\nOnce. 👧", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471283659740151808, + "in_reply_to_status_id_str": "471283659740151808", + "in_reply_to_user_id": 33773592, + "in_reply_to_user_id_str": "33773592", + "in_reply_to_screen_name": "AstroKatie", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 18, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 22:05:13 +0000 2014", + "id": 471411832372989952, + "id_str": "471411832372989952", + "text": "@torvos ram. My laptops at home break 1TB in *storage*", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471411539321180160, + "in_reply_to_status_id_str": "471411539321180160", + "in_reply_to_user_id": 15399231, + "in_reply_to_user_id_str": "15399231", + "in_reply_to_screen_name": "torvos", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 22:00:19 +0000 2014", + "id": 471410595728986112, + "id_str": "471410595728986112", + "text": "RT @kaepora: Ayn Rand's Harry Potter and the Sorcerer's Stone (hilarious read): http://t.co/aZgq4ZYgSQ (thanks @flohdot)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue May 27 20:26:42 +0000 2014", + "id": 471387038298550272, + "id_str": "471387038298550272", + "text": "Ayn Rand's Harry Potter and the Sorcerer's Stone (hilarious read): http://t.co/aZgq4ZYgSQ (thanks @flohdot)", + "source": "Twitter for Mac", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 11728992, + "id_str": "11728992" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 23, + "favorite_count": 17, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/aZgq4ZYgSQ", + "expanded_url": "http://the-toast.net/2014/05/27/ayn-rands-harry-potter-sorcerers-stone/", + "display_url": "the-toast.net/2014/05/27/ayn…", + "indices": [ + 67, + 89 + ] + } + ], + "user_mentions": [ + { + "screen_name": "flohdot", + "name": "Florencia Herra-Vega", + "id": 8656032, + "id_str": "8656032", + "indices": [ + 98, + 106 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 23, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 21:54:27 +0000 2014", + "id": 471409119862489088, + "id_str": "471409119862489088", + "text": "RT @zhuowei: If you don't tell Steam your preferred streaming resolution, it defaults to 2x2: 4 pixels. Thanks, Steam.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue May 27 20:21:16 +0000 2014", + "id": 471385672096296960, + "id_str": "471385672096296960", + "text": "If you don't tell Steam your preferred streaming resolution, it defaults to 2x2: 4 pixels. Thanks, Steam.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 383083538, + "id_str": "383083538" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 17, + "favorite_count": 21, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 17, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 21:50:18 +0000 2014", + "id": 471408074868420608, + "id_str": "471408074868420608", + "text": "RT @maira: Big win against © trolls: court rules against firm’s scheme obtaining 100's of user identities w/ IP addresses. https://t.co/09F…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue May 27 19:37:09 +0000 2014", + "id": 471374569257705473, + "id_str": "471374569257705473", + "text": "Big win against © trolls: court rules against firm’s scheme obtaining 100's of user identities w/ IP addresses. https://t.co/09FD207H8S", + "source": "TweetDeck", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 397570506, + "id_str": "397570506" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 10, + "favorite_count": 9, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "https://t.co/09FD207H8S", + "expanded_url": "https://www.eff.org/press/releases/crushing-blow-copyright-trolls-appeals-court-halts-af-holdings-extortion-scheme", + "display_url": "eff.org/press/releases…", + "indices": [ + 112, + 135 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 10, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 21:38:11 +0000 2014", + "id": 471405026230169601, + "id_str": "471405026230169601", + "text": "from __future__ import the plans for the time machine needed to implement this feature", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 6, + "favorite_count": 9, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 21:34:18 +0000 2014", + "id": 471404049095344128, + "id_str": "471404049095344128", + "text": "Them: we're giving you a 512GB machine\n\nMe: 😯\n\nThem: The app crashes if you go over 256GB in a single instance btw\n\nMe: 😶", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 4, + "favorite_count": 15, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 21:15:53 +0000 2014", + "id": 471399415375486976, + "id_str": "471399415375486976", + "text": "RT @barbarabot: @BooDooPerson OMG WHEN YOU VIEW THE SOURCE http://t.co/9yirYFgjs2", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue May 27 19:01:52 +0000 2014", + "id": 471365690738618368, + "id_str": "471365690738618368", + "text": "@BooDooPerson OMG WHEN YOU VIEW THE SOURCE http://t.co/9yirYFgjs2", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 471365208514904064, + "in_reply_to_status_id_str": "471365208514904064", + "in_reply_to_user_id": 14951588, + "in_reply_to_user_id_str": "14951588", + "in_reply_to_screen_name": "BooDooPerson", + "user": { + "id": 26614403, + "id_str": "26614403" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 13, + "favorite_count": 14, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "BooDooPerson", + "name": "БooДооЧеловек ", + "id": 14951588, + "id_str": "14951588", + "indices": [ + 0, + 13 + ] + } + ], + "media": [ + { + "id": 471365690092318720, + "id_str": "471365690092318720", + "indices": [ + 43, + 65 + ], + "media_url": "http://pbs.twimg.com/media/BoqgmQVCcAAn65k.png", + "media_url_https": "https://pbs.twimg.com/media/BoqgmQVCcAAn65k.png", + "url": "http://t.co/9yirYFgjs2", + "display_url": "pic.twitter.com/9yirYFgjs2", + "expanded_url": "http://twitter.com/barbarabot/status/471365690738618368/photo/1", + "type": "photo", + "sizes": { + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 600, + "h": 628, + "resize": "fit" + }, + "large": { + "w": 823, + "h": 862, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 356, + "resize": "fit" + } + } + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 13, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 21:14:19 +0000 2014", + "id": 471399022822187008, + "id_str": "471399022822187008", + "text": "RT @BooDooPerson: oh god http://t.co/U6NwlUHGID", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue May 27 18:59:57 +0000 2014", + "id": 471365208514904064, + "id_str": "471365208514904064", + "text": "oh god http://t.co/U6NwlUHGID", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 14951588, + "id_str": "14951588" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 62, + "favorite_count": 45, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/U6NwlUHGID", + "expanded_url": "http://emoji.zone/", + "display_url": "emoji.zone", + "indices": [ + 7, + 29 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "nl" + }, + "retweet_count": 62, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "nl" + }, + { + "created_at": "Tue May 27 21:09:41 +0000 2014", + "id": 471397857006985217, + "id_str": "471397857006985217", + "text": "@amanicdroid @S0phieH several... anything with full utf-8 support should", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 471396891683717120, + "in_reply_to_status_id_str": "471396891683717120", + "in_reply_to_user_id": 143789061, + "in_reply_to_user_id_str": "143789061", + "in_reply_to_screen_name": "amanicdroid", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 20:25:52 +0000 2014", + "id": 471386827241553921, + "id_str": "471386827241553921", + "text": "@zhuowei @FioraAeterna @Talen_Lee if you automate it you’d get better results color reducing and taking most common color per row", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471368310999617537, + "in_reply_to_status_id_str": "471368310999617537", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 20:21:32 +0000 2014", + "id": 471385738186338304, + "id_str": "471385738186338304", + "text": "@wolfoftheair – though I'm not sure if that's actually true", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 471385295561437185, + "in_reply_to_status_id_str": "471385295561437185", + "in_reply_to_user_id": 5142931, + "in_reply_to_user_id_str": "5142931", + "in_reply_to_screen_name": "wolfoftheair", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 20:21:23 +0000 2014", + "id": 471385699871387648, + "id_str": "471385699871387648", + "text": "@wolfoftheair someone told me the three letter agencies don't like Stratfor because people quit to go work for them for more money –", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 471385295561437185, + "in_reply_to_status_id_str": "471385295561437185", + "in_reply_to_user_id": 5142931, + "in_reply_to_user_id_str": "5142931", + "in_reply_to_screen_name": "wolfoftheair", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 19:53:21 +0000 2014", + "id": 471378644771033088, + "id_str": "471378644771033088", + "text": "OH from the engineers discussing what order we service customers in: \"The Catering Philosophers Problem\" 😮", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 5, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 19:37:45 +0000 2014", + "id": 471374719166337024, + "id_str": "471374719166337024", + "text": "The movie editing studio downstairs likes to leave their back door propped open by unlocked and unattended graphics workstations", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 6, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 19:25:12 +0000 2014", + "id": 471371560348299266, + "id_str": "471371560348299266", + "text": "@shadowfirebird @eevee right, so, master/slave may not trip your threshold but it surely trips a lot of people's.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 471371408787132416, + "in_reply_to_status_id_str": "471371408787132416", + "in_reply_to_user_id": 8674032, + "in_reply_to_user_id_str": "8674032", + "in_reply_to_screen_name": "shadowfirebird", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 19:19:30 +0000 2014", + "id": 471370128048001024, + "id_str": "471370128048001024", + "text": "@shadowfirebird @eevee well let's try a more extreme metaphor: \"rapist and raped.\" Surely THAT'S a problem, right? The line's somewhere.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 471369297995251712, + "in_reply_to_status_id_str": "471369297995251712", + "in_reply_to_user_id": 8674032, + "in_reply_to_user_id_str": "8674032", + "in_reply_to_screen_name": "shadowfirebird", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 19:02:03 +0000 2014", + "id": 471365734808158209, + "id_str": "471365734808158209", + "text": "@FioraAeterna @Talen_Lee obey", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471365670354288640, + "in_reply_to_status_id_str": "471365670354288640", + "in_reply_to_user_id": 2468699718, + "in_reply_to_user_id_str": "2468699718", + "in_reply_to_screen_name": "FioraAeterna", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Tue May 27 19:00:49 +0000 2014", + "id": 471365422928121857, + "id_str": "471365422928121857", + "text": "@mirell mine are abnormally wide at the toe end and abnormally narrow at the heel end and that’s why I only swear strap on sandals", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471365114466029570, + "in_reply_to_status_id_str": "471365114466029570", + "in_reply_to_user_id": 12733992, + "in_reply_to_user_id_str": "12733992", + "in_reply_to_screen_name": "mirell", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 18:57:50 +0000 2014", + "id": 471364675582840832, + "id_str": "471364675582840832", + "text": "While we’re talking about Stratfor: reminder: paying out to charities with a stolen card isn’t noble; you’ll cost them more money in the end", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 18:51:24 +0000 2014", + "id": 471363056141099008, + "id_str": "471363056141099008", + "text": "@_jdpage (but I think KJV uses servant here, I can’t remember anymore)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471359674408001536, + "in_reply_to_status_id_str": "471359674408001536", + "in_reply_to_user_id": 233252431, + "in_reply_to_user_id_str": "233252431", + "in_reply_to_screen_name": "_jdpage", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 18:49:41 +0000 2014", + "id": 471362624186482688, + "id_str": "471362624186482688", + "text": "@_jdpage (also the fundamentalists who raised ME up to glorify the Lord deny that anything but true KJV is a fundamentalist favorite)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471361673815547904, + "in_reply_to_status_id_str": "471361673815547904", + "in_reply_to_user_id": 233252431, + "in_reply_to_user_id_str": "233252431", + "in_reply_to_screen_name": "_jdpage", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 18:48:01 +0000 2014", + "id": 471362204458299392, + "id_str": "471362204458299392", + "text": "@noahWG @sciencecomic lemme guess this person thinks racism ended with the Emancipation Proclamation", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471319652417933312, + "in_reply_to_status_id_str": "471319652417933312", + "in_reply_to_user_id": 21423021, + "in_reply_to_user_id_str": "21423021", + "in_reply_to_screen_name": "noahWG", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 18:44:59 +0000 2014", + "id": 471361439882833922, + "id_str": "471361439882833922", + "text": "@eevee @_jdpage idk the last time I manually plugged in a hard drive to anything but a USB port was about a decade ago", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471361192531722240, + "in_reply_to_status_id_str": "471361192531722240", + "in_reply_to_user_id": 14412937, + "in_reply_to_user_id_str": "14412937", + "in_reply_to_screen_name": "eevee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 18:43:25 +0000 2014", + "id": 471361045974753280, + "id_str": "471361045974753280", + "text": "@eevee oh for the record I despise the theology of the Bible that’s probably relevant to anything I have to say about it", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471360752251449344, + "in_reply_to_status_id_str": "471360752251449344", + "in_reply_to_user_id": 14412937, + "in_reply_to_user_id_str": "14412937", + "in_reply_to_screen_name": "eevee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 18:40:20 +0000 2014", + "id": 471360269130924032, + "id_str": "471360269130924032", + "text": "@_jdpage @eevee (I do not think the master/slave terminology of hard drives or whatever is warranted)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471359674408001536, + "in_reply_to_status_id_str": "471359674408001536", + "in_reply_to_user_id": 233252431, + "in_reply_to_user_id_str": "233252431", + "in_reply_to_screen_name": "_jdpage", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 18:39:31 +0000 2014", + "id": 471360065942093824, + "id_str": "471360065942093824", + "text": "@_jdpage @eevee I’m just offering an example of places where people may have heard the word slave in a “non-offensive” context", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471359674408001536, + "in_reply_to_status_id_str": "471359674408001536", + "in_reply_to_user_id": 233252431, + "in_reply_to_user_id_str": "233252431", + "in_reply_to_screen_name": "_jdpage", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 18:38:41 +0000 2014", + "id": 471359855681630208, + "id_str": "471359855681630208", + "text": "@_jdpage @eevee people have never agreed on how to translate it because the cultural assumptions between author and reader are huge", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471359674408001536, + "in_reply_to_status_id_str": "471359674408001536", + "in_reply_to_user_id": 233252431, + "in_reply_to_user_id_str": "233252431", + "in_reply_to_screen_name": "_jdpage", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 18:30:10 +0000 2014", + "id": 471357711721193473, + "id_str": "471357711721193473", + "text": "@eevee just FYI some translations of the Bible use the word slave to describe a good Christian which creates this idea it’s not a bad thing", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471354523722592256, + "in_reply_to_status_id_str": "471354523722592256", + "in_reply_to_user_id": 14412937, + "in_reply_to_user_id_str": "14412937", + "in_reply_to_screen_name": "eevee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 18:26:43 +0000 2014", + "id": 471356844720795649, + "id_str": "471356844720795649", + "text": "But serious what kind of dirt does the FBI have on Stratfor that they seem to have quietly accepted being hacked on the FBI’s watch", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 13, + "favorite_count": 7, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 18:13:32 +0000 2014", + "id": 471353524643979264, + "id_str": "471353524643979264", + "text": "@cyclerunner random underscore in their bio for no apparent reason though", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 471353346868404224, + "in_reply_to_status_id_str": "471353346868404224", + "in_reply_to_user_id": 20166253, + "in_reply_to_user_id_str": "20166253", + "in_reply_to_screen_name": "cyclerunner", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 18:11:27 +0000 2014", + "id": 471353003329736704, + "id_str": "471353003329736704", + "text": "@blowdart or I may be reading you backwards and you mean you wouldn't find watchdogs fun", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 471352443993722880, + "in_reply_to_status_id_str": "471352443993722880", + "in_reply_to_user_id": 1847381, + "in_reply_to_user_id_str": "1847381", + "in_reply_to_screen_name": "blowdart", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 18:10:30 +0000 2014", + "id": 471352760374677504, + "id_str": "471352760374677504", + "text": "@blowdart and you think it's relaxing to someone when they repeatedly encounter hurtful stereotypes about themselves in games?", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 471352443993722880, + "in_reply_to_status_id_str": "471352443993722880", + "in_reply_to_user_id": 1847381, + "in_reply_to_user_id_str": "1847381", + "in_reply_to_screen_name": "blowdart", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 18:08:20 +0000 2014", + "id": 471352216134356993, + "id_str": "471352216134356993", + "text": "@blowdart I'm not sure what you're saying: I just wanna have fun so never mind perpetuating our old problems in new art, totes harmless?", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 471351409888075777, + "in_reply_to_status_id_str": "471351409888075777", + "in_reply_to_user_id": 1847381, + "in_reply_to_user_id_str": "1847381", + "in_reply_to_screen_name": "blowdart", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 18:04:33 +0000 2014", + "id": 471351264442613760, + "id_str": "471351264442613760", + "text": "“We prevented so many cyber attacks by instructing Sabu to incite cyber attacks haha lol Stratfor” https://t.co/hkxuJG9EZS", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "quoted_status_id": 471340247339794432, + "quoted_status_id_str": "471340247339794432", + "retweet_count": 15, + "favorite_count": 6, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 18:02:02 +0000 2014", + "id": 471350630041526272, + "id_str": "471350630041526272", + "text": "@tpw_rules noep\n\nwell I mean my husband already bought it but\n\nnoep", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 471350497446998017, + "in_reply_to_status_id_str": "471350497446998017", + "in_reply_to_user_id": 175232978, + "in_reply_to_user_id_str": "175232978", + "in_reply_to_screen_name": "tpw_rules", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 17:58:42 +0000 2014", + "id": 471349794758492161, + "id_str": "471349794758492161", + "text": "@SherifNagy :( I don't pretend to fully understand the political situation but good luck", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 471348504997400576, + "in_reply_to_status_id_str": "471348504997400576", + "in_reply_to_user_id": 7731002, + "in_reply_to_user_id_str": "7731002", + "in_reply_to_screen_name": "SherifNagy", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 17:55:09 +0000 2014", + "id": 471348898146316289, + "id_str": "471348898146316289", + "text": "in before someone telling me I'm not a true gamer because I didn't spell it WATCH_DOGS (okay yes it's plural but the underscore is tacky)", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 17:53:03 +0000 2014", + "id": 471348372331589632, + "id_str": "471348372331589632", + "text": "@tobypinder @idiot a default message... written by a dev! :)", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 471348202042847232, + "in_reply_to_status_id_str": "471348202042847232", + "in_reply_to_user_id": 18698940, + "in_reply_to_user_id_str": "18698940", + "in_reply_to_screen_name": "tobypinder", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 17:52:36 +0000 2014", + "id": 471348258779172864, + "id_str": "471348258779172864", + "text": "Half my timeline: watchdog hacking so cool\nOther half: watchdog struggles to rise above cheap stereotypes about race, gender, and intersecti", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 6, + "favorite_count": 8, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 17:41:56 +0000 2014", + "id": 471345574131036160, + "id_str": "471345574131036160", + "text": "@FioraAeterna so in principle it \"shouldn't matter\" what's in the dead space but in practice you're permitting contradictions", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 471344979919765504, + "in_reply_to_status_id_str": "471344979919765504", + "in_reply_to_user_id": 2468699718, + "in_reply_to_user_id_str": "2468699718", + "in_reply_to_screen_name": "FioraAeterna", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 17:40:11 +0000 2014", + "id": 471345132449443840, + "id_str": "471345132449443840", + "text": "@FioraAeterna per the spec it takes the value from the first fragment regardless, so the others are technically dead information", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 471344979919765504, + "in_reply_to_status_id_str": "471344979919765504", + "in_reply_to_user_id": 2468699718, + "in_reply_to_user_id_str": "2468699718", + "in_reply_to_screen_name": "FioraAeterna", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 17:38:03 +0000 2014", + "id": 471344594668781569, + "id_str": "471344594668781569", + "text": "I strongly advise against writing \"contradictory information is not an error\" into your spec :\\ http://t.co/qEm27dneEw", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 4, + "favorite_count": 8, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 17:35:05 +0000 2014", + "id": 471343849424818176, + "id_str": "471343849424818176", + "text": "RT @idiot: This is why you don’t let developers write error messages. http://t.co/GdZYlYr9wu", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue May 27 15:29:25 +0000 2014", + "id": 471312225685471232, + "id_str": "471312225685471232", + "text": "This is why you don’t let developers write error messages. http://t.co/GdZYlYr9wu", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 202571491, + "id_str": "202571491" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2584, + "favorite_count": 1073, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ], + "media": [ + { + "id": 471312222845943808, + "id_str": "471312222845943808", + "indices": [ + 59, + 81 + ], + "media_url": "http://pbs.twimg.com/media/Bopv-DUIQAANWHW.jpg", + "media_url_https": "https://pbs.twimg.com/media/Bopv-DUIQAANWHW.jpg", + "url": "http://t.co/GdZYlYr9wu", + "display_url": "pic.twitter.com/GdZYlYr9wu", + "expanded_url": "http://twitter.com/idiot/status/471312225685471232/photo/1", + "type": "photo", + "sizes": { + "medium": { + "w": 600, + "h": 635, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 360, + "resize": "fit" + }, + "large": { + "w": 825, + "h": 873, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + } + } + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 2584, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 17:31:55 +0000 2014", + "id": 471343050648981505, + "id_str": "471343050648981505", + "text": "@elad3 no I said retweet!", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 471342832469299200, + "in_reply_to_status_id_str": "471342832469299200", + "in_reply_to_user_id": 160897504, + "in_reply_to_user_id_str": "160897504", + "in_reply_to_screen_name": "elad3", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 17:17:59 +0000 2014", + "id": 471339544424767488, + "id_str": "471339544424767488", + "text": "@weetabix_su this is what I want. Same Mario Kart new races. I will happily pay money for this once a year forever", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471339315390214144, + "in_reply_to_status_id_str": "471339315390214144", + "in_reply_to_user_id": 65336507, + "in_reply_to_user_id_str": "65336507", + "in_reply_to_screen_name": "weetabix_su", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 17:15:51 +0000 2014", + "id": 471339009730678785, + "id_str": "471339009730678785", + "text": "All y’all be like watch dogs this watch dogs that and I’m like: Mario Kart comes out Friday as foretold by the prophecy", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 7, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 17:00:34 +0000 2014", + "id": 471335164602486784, + "id_str": "471335164602486784", + "text": "@FioraAeterna my favorite remains space jam x prince of Egypt ten plagues song", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471332617397497856, + "in_reply_to_status_id_str": "471332617397497856", + "in_reply_to_user_id": 2468699718, + "in_reply_to_user_id_str": "2468699718", + "in_reply_to_screen_name": "FioraAeterna", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 16:54:39 +0000 2014", + "id": 471333671971352578, + "id_str": "471333671971352578", + "text": "I can’t really blame people who panic and sell out to escape the American jail system: it’s inhumane. But the selling out puts others in it", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 5, + "favorite_count": 6, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 16:49:43 +0000 2014", + "id": 471332430591565824, + "id_str": "471332430591565824", + "text": "@mirell 👍", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471332294267920388, + "in_reply_to_status_id_str": "471332294267920388", + "in_reply_to_user_id": 12733992, + "in_reply_to_user_id_str": "12733992", + "in_reply_to_screen_name": "mirell", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Tue May 27 16:42:51 +0000 2014", + "id": 471330705281400832, + "id_str": "471330705281400832", + "text": "@EmphyAD @Tomi_Tapio Ha, ha! Leaden dialogue!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471304278406332416, + "in_reply_to_status_id_str": "471304278406332416", + "in_reply_to_user_id": 517039229, + "in_reply_to_user_id_str": "517039229", + "in_reply_to_screen_name": "EmphyAD", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 16:36:43 +0000 2014", + "id": 471329161827852288, + "id_str": "471329161827852288", + "text": "Studying the Bahamas' history with imperialism makes the US using it as a testbed for total surveillance all the more infuriating", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 5, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 16:08:34 +0000 2014", + "id": 471322076713066496, + "id_str": "471322076713066496", + "text": "@DaKnObCS heh-heh well the issue was retweeting things and people misunderstanding why I was retweeting them", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 471321015549968384, + "in_reply_to_status_id_str": "471321015549968384", + "in_reply_to_user_id": 49344236, + "in_reply_to_user_id_str": "49344236", + "in_reply_to_screen_name": "DaKnObCS", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 15:56:37 +0000 2014", + "id": 471319071355858945, + "id_str": "471319071355858945", + "text": "from __future__ import secret to immortality\n\nfrom __future__ import solution to prejudice\n\nfrom __future__ import stock prices", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 54, + "favorite_count": 61, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 15:34:35 +0000 2014", + "id": 471313523461849088, + "id_str": "471313523461849088", + "text": "@ghostqueer I do think I’d get along with a plant wizard though.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471311877008785408, + "in_reply_to_status_id_str": "471311877008785408", + "in_reply_to_user_id": 2337742344, + "in_reply_to_user_id_str": "2337742344", + "in_reply_to_screen_name": "ghostqueer", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 15:32:46 +0000 2014", + "id": 471313067138363392, + "id_str": "471313067138363392", + "text": "@ghostqueer it seems the context of that chart is identifying men who are of a disposition to get along with women or something", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471311877008785408, + "in_reply_to_status_id_str": "471311877008785408", + "in_reply_to_user_id": 2337742344, + "in_reply_to_user_id_str": "2337742344", + "in_reply_to_screen_name": "ghostqueer", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 15:18:49 +0000 2014", + "id": 471309556149391360, + "id_str": "471309556149391360", + "text": "@Randominterrupt @Packetknife being in that much therapy to begin with is kind of a rich kid thing so there’s a lot of entangling factors", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471308914513182721, + "in_reply_to_status_id_str": "471308914513182721", + "in_reply_to_user_id": 33913779, + "in_reply_to_user_id_str": "33913779", + "in_reply_to_screen_name": "Randominterrupt", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 15:10:41 +0000 2014", + "id": 471307511422009346, + "id_str": "471307511422009346", + "text": "@Packetknife I uh… think this is trying too hard. “Dabbling” in miso?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471296483258421248, + "in_reply_to_status_id_str": "471296483258421248", + "in_reply_to_user_id": 19564254, + "in_reply_to_user_id_str": "19564254", + "in_reply_to_screen_name": "Packetknife", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 14:16:18 +0000 2014", + "id": 471293825969709056, + "id_str": "471293825969709056", + "text": "@gsuberland too much reddit: I read that as non-fiat currency", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471290526445342720, + "in_reply_to_status_id_str": "471290526445342720", + "in_reply_to_user_id": 432513392, + "in_reply_to_user_id_str": "432513392", + "in_reply_to_screen_name": "gsuberland", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 13:53:21 +0000 2014", + "id": 471288049314582528, + "id_str": "471288049314582528", + "text": "RT @doegox: #ECB is bad? Indeed it looks terrible, let's fix that with ElectronicColoringBook.py! https://t.co/ey0lY0k9t0 #crypto http://t.…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue May 27 05:32:58 +0000 2014", + "id": 471162121540366336, + "id_str": "471162121540366336", + "text": "#ECB is bad? Indeed it looks terrible, let's fix that with ElectronicColoringBook.py! https://t.co/ey0lY0k9t0 #crypto http://t.co/ya8esQHEu4", + "source": "TweetDeck", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 310491337, + "id_str": "310491337" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 33, + "favorite_count": 21, + "entities": { + "hashtags": [ + { + "text": "ECB", + "indices": [ + 0, + 4 + ] + }, + { + "text": "crypto", + "indices": [ + 110, + 117 + ] + } + ], + "symbols": [ + + ], + "urls": [ + { + "url": "https://t.co/ey0lY0k9t0", + "expanded_url": "https://doegox.github.io/ElectronicColoringBook/", + "display_url": "doegox.github.io/ElectronicColo…", + "indices": [ + 86, + 109 + ] + } + ], + "user_mentions": [ + + ], + "media": [ + { + "id": 471162120097112065, + "id_str": "471162120097112065", + "indices": [ + 118, + 140 + ], + "media_url": "http://pbs.twimg.com/media/Bonnc7ACIAE_0Mp.png", + "media_url_https": "https://pbs.twimg.com/media/Bonnc7ACIAE_0Mp.png", + "url": "http://t.co/ya8esQHEu4", + "display_url": "pic.twitter.com/ya8esQHEu4", + "expanded_url": "http://twitter.com/doegox/status/471162121540366336/photo/1", + "type": "photo", + "sizes": { + "large": { + "w": 640, + "h": 800, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 425, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 600, + "h": 750, + "resize": "fit" + } + } + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 33, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 13:38:56 +0000 2014", + "id": 471284420700540928, + "id_str": "471284420700540928", + "text": "@Talen_Lee T_T it was nonsensical anyway, my high school English teacher was tearing into me, but you know how dreams go", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471283892700581889, + "in_reply_to_status_id_str": "471283892700581889", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 13:32:58 +0000 2014", + "id": 471282917042565121, + "id_str": "471282917042565121", + "text": "@Talen_Lee wahh I had a dream that you hate me", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 05:00:00 +0000 2014", + "id": 471153826657873920, + "id_str": "471153826657873920", + "text": "I mean seriously why do some guys think we’d blush and go “oh, that guy who was giving me the murder vibes thinks I’m CUTE! Tee-hee!”", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 8, + "favorite_count": 14, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 04:55:58 +0000 2014", + "id": 471152810524823552, + "id_str": "471152810524823552", + "text": "Just in case you didn’t know: most women aren’t “flattered” to realize they were cornered, stalked or harassed because they’re so pretty", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 18, + "favorite_count": 17, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 04:50:21 +0000 2014", + "id": 471151397128646656, + "id_str": "471151397128646656", + "text": "@inversephase it’s red plastic I think.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471151259698085889, + "in_reply_to_status_id_str": "471151259698085889", + "in_reply_to_user_id": 146114262, + "in_reply_to_user_id_str": "146114262", + "in_reply_to_screen_name": "inversephase", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 04:48:23 +0000 2014", + "id": 471150904666628097, + "id_str": "471150904666628097", + "text": "@maxtch @Kym_Possible and please don’t suggest that cornering a woman alone and making sexual advances is not creepy and threatening", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471147594870054912, + "in_reply_to_status_id_str": "471147594870054912", + "in_reply_to_user_id": 168408129, + "in_reply_to_user_id_str": "168408129", + "in_reply_to_screen_name": "maxtch", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 04:47:31 +0000 2014", + "id": 471150686521286656, + "id_str": "471150686521286656", + "text": "@maxtch @Kym_Possible look you’re a nice tweeter and all but telling me I should be flattered by creepy, threatening men is rape enablement", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471147594870054912, + "in_reply_to_status_id_str": "471147594870054912", + "in_reply_to_user_id": 168408129, + "in_reply_to_user_id_str": "168408129", + "in_reply_to_screen_name": "maxtch", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 04:45:02 +0000 2014", + "id": 471150060429144064, + "id_str": "471150060429144064", + "text": "@maxtch @Kym_Possible no. No no no no no no NO.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471147594870054912, + "in_reply_to_status_id_str": "471147594870054912", + "in_reply_to_user_id": 168408129, + "in_reply_to_user_id_str": "168408129", + "in_reply_to_screen_name": "maxtch", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "es" + }, + { + "created_at": "Tue May 27 04:25:38 +0000 2014", + "id": 471145176853794816, + "id_str": "471145176853794816", + "text": "@kyhwana @eevee I’m pretty sure he’s xoring me and not raising my power exponentially", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471145046268317696, + "in_reply_to_status_id_str": "471145046268317696", + "in_reply_to_user_id": 30135560, + "in_reply_to_user_id_str": "30135560", + "in_reply_to_screen_name": "kyhwana", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 04:23:08 +0000 2014", + "id": 471144547163328512, + "id_str": "471144547163328512", + "text": "@eevee yeah well uhh, mov eevee, 0 or something idk", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471144114801475584, + "in_reply_to_status_id_str": "471144114801475584", + "in_reply_to_user_id": 14412937, + "in_reply_to_user_id_str": "14412937", + "in_reply_to_screen_name": "eevee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 04:20:10 +0000 2014", + "id": 471143801931579392, + "id_str": "471143801931579392", + "text": "@eevee but you will never destroy me", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471143662097670144, + "in_reply_to_status_id_str": "471143662097670144", + "in_reply_to_user_id": 14412937, + "in_reply_to_user_id_str": "14412937", + "in_reply_to_screen_name": "eevee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 04:18:52 +0000 2014", + "id": 471143472821313536, + "id_str": "471143472821313536", + "text": "@eevee ahem, check my bio", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471142484966256640, + "in_reply_to_status_id_str": "471142484966256640", + "in_reply_to_user_id": 14412937, + "in_reply_to_user_id_str": "14412937", + "in_reply_to_screen_name": "eevee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "et" + }, + { + "created_at": "Tue May 27 04:18:27 +0000 2014", + "id": 471143369087799297, + "id_str": "471143369087799297", + "text": "Wait did @ZachWeiner just do two comics in a row starring the same character? What’s next, a plot?!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 8, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 04:13:25 +0000 2014", + "id": 471142104429633536, + "id_str": "471142104429633536", + "text": "@ejknapp @ZJemptv which just shows how much pressure there is on boys to drop something the moment it becomes even one iota girly", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471141735502839808, + "in_reply_to_status_id_str": "471141735502839808", + "in_reply_to_user_id": 23240963, + "in_reply_to_user_id_str": "23240963", + "in_reply_to_screen_name": "ejknapp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 03:50:09 +0000 2014", + "id": 471136247248068608, + "id_str": "471136247248068608", + "text": "@focalintent 🛂😀", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471133257463902208, + "in_reply_to_status_id_str": "471133257463902208", + "in_reply_to_user_id": 8034552, + "in_reply_to_user_id_str": "8034552", + "in_reply_to_screen_name": "focalintent", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Tue May 27 03:48:29 +0000 2014", + "id": 471135830606872576, + "id_str": "471135830606872576", + "text": "@Tomi_Tapio I’m reasonably sure that’s not what they were saying about me :\\", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471133290930634752, + "in_reply_to_status_id_str": "471133290930634752", + "in_reply_to_user_id": 43579011, + "in_reply_to_user_id_str": "43579011", + "in_reply_to_screen_name": "Tomi_Tapio", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 03:33:26 +0000 2014", + "id": 471132043188121600, + "id_str": "471132043188121600", + "text": "@Shufflejoy @m1sp naw you get whichever joltik traded in and get a baby and name THAT Mispy", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471130175909158914, + "in_reply_to_status_id_str": "471130175909158914", + "in_reply_to_user_id": 1567524811, + "in_reply_to_user_id_str": "1567524811", + "in_reply_to_screen_name": "Shufflejoy", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 03:21:20 +0000 2014", + "id": 471128995212193792, + "id_str": "471128995212193792", + "text": "RT @pkillboredom: .@ZJemptv .@0xabad1dea The girls toys right now are awful. All the girls ask for the pokemon toys.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue May 27 03:20:40 +0000 2014", + "id": 471128830049263619, + "id_str": "471128830049263619", + "text": ".@ZJemptv .@0xabad1dea The girls toys right now are awful. All the girls ask for the pokemon toys.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 471107640169611265, + "in_reply_to_status_id_str": "471107640169611265", + "in_reply_to_user_id": 5780032, + "in_reply_to_user_id_str": "5780032", + "in_reply_to_screen_name": "ZJemptv", + "user": { + "id": 220139919, + "id_str": "220139919" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 1, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "ZJemptv", + "name": "zinnia.sexy", + "id": 5780032, + "id_str": "5780032", + "indices": [ + 1, + 9 + ] + }, + { + "screen_name": "0xabad1dea", + "name": "Melissa", + "id": 126030998, + "id_str": "126030998", + "indices": [ + 11, + 22 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 2, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 03:20:32 +0000 2014", + "id": 471128796557770752, + "id_str": "471128796557770752", + "text": "@demize95 @Packetknife who, as we all know, run the government, military, and Hollywood 😁", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471128346227535872, + "in_reply_to_status_id_str": "471128346227535872", + "in_reply_to_user_id": 137133048, + "in_reply_to_user_id_str": "137133048", + "in_reply_to_screen_name": "demize95", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 03:17:45 +0000 2014", + "id": 471128093113860096, + "id_str": "471128093113860096", + "text": "@maxtch yeah just a little", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471127822954553345, + "in_reply_to_status_id_str": "471127822954553345", + "in_reply_to_user_id": 168408129, + "in_reply_to_user_id_str": "168408129", + "in_reply_to_screen_name": "maxtch", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 03:17:24 +0000 2014", + "id": 471128004362375168, + "id_str": "471128004362375168", + "text": "Via @Packetknife: someone out there believes the shootings were a false flag op, because MRAs are the enemies of… Hollywood? Or something? 😕", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 03:10:51 +0000 2014", + "id": 471126356508807170, + "id_str": "471126356508807170", + "text": "@dancapper some girls/women have a hard time going out in public and NOT having it happen", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471126161674629121, + "in_reply_to_status_id_str": "471126161674629121", + "in_reply_to_user_id": 15438688, + "in_reply_to_user_id_str": "15438688", + "in_reply_to_screen_name": "dancapper", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 03:08:59 +0000 2014", + "id": 471125888281899008, + "id_str": "471125888281899008", + "text": "So far only one dude has cornered me alone and asked for my number at an infosec con so good job all 👍", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 9, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 03:07:57 +0000 2014", + "id": 471125627634855936, + "id_str": "471125627634855936", + "text": "@kylemaxwell @ZJemptv I actually own several dolls and they’re emotionally significant to me but I’m soured on the excessive gendering", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471125319047319552, + "in_reply_to_status_id_str": "471125319047319552", + "in_reply_to_user_id": 727603, + "in_reply_to_user_id_str": "727603", + "in_reply_to_screen_name": "kylemaxwell", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 03:07:09 +0000 2014", + "id": 471125428888162304, + "id_str": "471125428888162304", + "text": "While @McGrewSecurity is on the topic: saying hi to me at a con: not creepy, it’s fine. Cornering me alone and asking for my number: 🚫🚫🚫", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 4, + "favorite_count": 10, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 03:05:22 +0000 2014", + "id": 471124977043787776, + "id_str": "471124977043787776", + "text": ".@kylemaxwell @ZJemptv well aside from the fact that the alternative brand to Pokemon is literally called American Girl", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471124556292169728, + "in_reply_to_status_id_str": "471124556292169728", + "in_reply_to_user_id": 727603, + "in_reply_to_user_id_str": "727603", + "in_reply_to_screen_name": "kylemaxwell", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 03:04:53 +0000 2014", + "id": 471124858466623489, + "id_str": "471124858466623489", + "text": ".@kylemaxwell @ZJemptv I did check and they don’t seem to use the words boy and girl on the website, they just heavily color code it", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471124556292169728, + "in_reply_to_status_id_str": "471124556292169728", + "in_reply_to_user_id": 727603, + "in_reply_to_user_id_str": "727603", + "in_reply_to_screen_name": "kylemaxwell", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 03:02:36 +0000 2014", + "id": 471124282370564096, + "id_str": "471124282370564096", + "text": "RT @ZJemptv: Also mcdonalds happy meal toy for \"boys\" right now is Pokemon. Why is Pokemon a gendered thing. Everyone I know who plays Poke…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue May 27 01:56:28 +0000 2014", + "id": 471107640169611265, + "id_str": "471107640169611265", + "text": "Also mcdonalds happy meal toy for \"boys\" right now is Pokemon. Why is Pokemon a gendered thing. Everyone I know who plays Pokemon is a woman", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 5780032, + "id_str": "5780032" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 46, + "favorite_count": 63, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 46, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 03:00:50 +0000 2014", + "id": 471123836318912512, + "id_str": "471123836318912512", + "text": "@mkmagicannon @Talen_Lee I didn’t have direct internet access at the age I was in the sonic fandom :p", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471123645931069442, + "in_reply_to_status_id_str": "471123645931069442", + "in_reply_to_user_id": 2315119063, + "in_reply_to_user_id_str": "2315119063", + "in_reply_to_screen_name": "mkmagicannon", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 02:45:56 +0000 2014", + "id": 471120088347578368, + "id_str": "471120088347578368", + "text": "@Talen_Lee I was IN the sonic fandom when I was 11. You graduate and another 11yo takes your place", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471119935213547520, + "in_reply_to_status_id_str": "471119935213547520", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 4, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 02:44:41 +0000 2014", + "id": 471119771971252224, + "id_str": "471119771971252224", + "text": "@Talen_Lee the sonic the hedgehog fandom. Most of the art turned up by the hedgehog game was drawn by eleven-year-olds.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471119629448790016, + "in_reply_to_status_id_str": "471119629448790016", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 02:42:58 +0000 2014", + "id": 471119340570296320, + "id_str": "471119340570296320", + "text": "@washiiko do you mean elastic compute having one node go yellow or?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471113610542850049, + "in_reply_to_status_id_str": "471113610542850049", + "in_reply_to_user_id": 47900074, + "in_reply_to_user_id_str": "47900074", + "in_reply_to_screen_name": "washiiko", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 02:39:46 +0000 2014", + "id": 471118536002125826, + "id_str": "471118536002125826", + "text": "@Talen_Lee it’s more that fandom is peculiarly young even by internet fandom standards", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471118398558986240, + "in_reply_to_status_id_str": "471118398558986240", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 02:37:20 +0000 2014", + "id": 471117924204171264, + "id_str": "471117924204171264", + "text": "@Talen_Lee you know about the hedgehog game right", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471105997977579520, + "in_reply_to_status_id_str": "471105997977579520", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 02:30:31 +0000 2014", + "id": 471116209413296129, + "id_str": "471116209413296129", + "text": "@thegrugq it seems like what the author WANTS is a way to detect the Feds entering the premises", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471116068077830145, + "in_reply_to_status_id_str": "471116068077830145", + "in_reply_to_user_id": 18983429, + "in_reply_to_user_id_str": "18983429", + "in_reply_to_screen_name": "thegrugq", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 02:26:56 +0000 2014", + "id": 471115305511432192, + "id_str": "471115305511432192", + "text": "@thegrugq I can only make fun of the code in front of me, sir", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471114878355111937, + "in_reply_to_status_id_str": "471114878355111937", + "in_reply_to_user_id": 18983429, + "in_reply_to_user_id_str": "18983429", + "in_reply_to_screen_name": "thegrugq", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 02:23:48 +0000 2014", + "id": 471114516726419456, + "id_str": "471114516726419456", + "text": "RT @chriseng: Just found like 100 leftover \"thought leader\" ribbons while cleaning off my desk. http://t.co/F2bOgeOuA0", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue May 27 01:15:51 +0000 2014", + "id": 471097415224012800, + "id_str": "471097415224012800", + "text": "Just found like 100 leftover \"thought leader\" ribbons while cleaning off my desk. http://t.co/F2bOgeOuA0", + "source": "Twitter for Android", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 13752192, + "id_str": "13752192" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 11, + "favorite_count": 13, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ], + "media": [ + { + "id": 471097413151649792, + "id_str": "471097413151649792", + "indices": [ + 82, + 104 + ], + "media_url": "http://pbs.twimg.com/media/Bomsme2CcAASzzs.jpg", + "media_url_https": "https://pbs.twimg.com/media/Bomsme2CcAASzzs.jpg", + "url": "http://t.co/F2bOgeOuA0", + "display_url": "pic.twitter.com/F2bOgeOuA0", + "expanded_url": "http://twitter.com/chriseng/status/471097415224012800/photo/1", + "type": "photo", + "sizes": { + "medium": { + "w": 600, + "h": 338, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 191, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 816, + "h": 459, + "resize": "fit" + } + } + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 11, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 02:21:48 +0000 2014", + "id": 471114013729112066, + "id_str": "471114013729112066", + "text": "@thegrugq no no you definitely want your machine to shut down every time someone port scans 80", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471093607869345793, + "in_reply_to_status_id_str": "471093607869345793", + "in_reply_to_user_id": 18983429, + "in_reply_to_user_id_str": "18983429", + "in_reply_to_screen_name": "thegrugq", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 02:19:39 +0000 2014", + "id": 471113471979831296, + "id_str": "471113471979831296", + "text": "It really pays to read the source code 😋 http://t.co/vdUDUl5C9A", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 7, + "favorite_count": 10, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 02:13:04 +0000 2014", + "id": 471111815326216192, + "id_str": "471111815326216192", + "text": "Not really keen on a group of men looking right at me, saying something in another language, and laughing \n\nMaybe I’m just paranoid but 😐", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 7, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 01:40:29 +0000 2014", + "id": 471103615046672384, + "id_str": "471103615046672384", + "text": "@sweharris well it's not religiously motivated or anything but I assure you every teetotaler has heard every clever dig :p", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 471098088585957378, + "in_reply_to_status_id_str": "471098088585957378", + "in_reply_to_user_id": 2458530141, + "in_reply_to_user_id_str": "2458530141", + "in_reply_to_screen_name": "sweharris", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 01:03:39 +0000 2014", + "id": 471094345140285440, + "id_str": "471094345140285440", + "text": "@Xaosopher pretty sure he rekt it", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 471094162675101696, + "in_reply_to_status_id_str": "471094162675101696", + "in_reply_to_user_id": 68878049, + "in_reply_to_user_id_str": "68878049", + "in_reply_to_screen_name": "Xaosopher", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 01:01:41 +0000 2014", + "id": 471093851982016512, + "id_str": "471093851982016512", + "text": "@sweharris I’m sober 🍺🚫", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471093463946391553, + "in_reply_to_status_id_str": "471093463946391553", + "in_reply_to_user_id": 2458530141, + "in_reply_to_user_id_str": "2458530141", + "in_reply_to_screen_name": "sweharris", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 01:00:50 +0000 2014", + "id": 471093639104319489, + "id_str": "471093639104319489", + "text": "@tehEx0dus pops.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471091876674547712, + "in_reply_to_status_id_str": "471091876674547712", + "in_reply_to_user_id": 15831150, + "in_reply_to_user_id_str": "15831150", + "in_reply_to_screen_name": "tehEx0dus", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "da" + }, + { + "created_at": "Tue May 27 00:47:27 +0000 2014", + "id": 471090271510220801, + "id_str": "471090271510220801", + "text": "@Wxcafe Lenovo y510p", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471090129663451136, + "in_reply_to_status_id_str": "471090129663451136", + "in_reply_to_user_id": 327187863, + "in_reply_to_user_id_str": "327187863", + "in_reply_to_screen_name": "Wxcafe", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "vi" + }, + { + "created_at": "Tue May 27 00:46:14 +0000 2014", + "id": 471089964714057728, + "id_str": "471089964714057728", + "text": "Everyone likes my red light up keyboard but I’m just sad I can’t make it an obnoxiously girly color like the keyboard my husband stole", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 5, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 27 00:42:57 +0000 2014", + "id": 471089138930700288, + "id_str": "471089138930700288", + "text": "I mean, that’s what the empty space by the trackpad is for, right? http://t.co/IdzQX4KI0j", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 6, + "favorite_count": 40, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon May 26 23:24:05 +0000 2014", + "id": 471069288959209472, + "id_str": "471069288959209472", + "text": "@m1sp and things like critical hit or critical miss. So the bot can enumerate the finite places it can possibly lose :)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471068953700098048, + "in_reply_to_status_id_str": "471068953700098048", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 7, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 26 23:23:36 +0000 2014", + "id": 471069169400561664, + "id_str": "471069169400561664", + "text": "@m1sp against the single player game it’s all static so the only variables are what happens when the AI resorts to random() on moves", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471068953700098048, + "in_reply_to_status_id_str": "471068953700098048", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 26 23:22:00 +0000 2014", + "id": 471068766344724481, + "id_str": "471068766344724481", + "text": "@m1sp well generally with human opponents their exact Pokemon composition is not a priori known", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471068564128935937, + "in_reply_to_status_id_str": "471068564128935937", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 26 23:20:22 +0000 2014", + "id": 471068355362045954, + "id_str": "471068355362045954", + "text": "@m1sp also for some reason \"pokemon is a solved problem\" sounds hilarious to me", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 471068024858882049, + "in_reply_to_status_id_str": "471068024858882049", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 5, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 26 23:19:49 +0000 2014", + "id": 471068215532343296, + "id_str": "471068215532343296", + "text": "@m1sp in pokebot's case it doesn't really apply because pokemon red is a solved problem space", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 471068024858882049, + "in_reply_to_status_id_str": "471068024858882049", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 26 23:18:17 +0000 2014", + "id": 471067828909375488, + "id_str": "471067828909375488", + "text": "“If at first you don’t succeed, write a bot to do it for you.” —@ThePokeBot chat channel wisdom", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 8, + "favorite_count": 21, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 26 23:18:17 +0000 2014", + "id": 471067828909375488, + "id_str": "471067828909375488", + "text": "“If at first you don’t succeed, write a bot to do it for you.” —@ThePokeBot chat channel wisdom", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 8, + "favorite_count": 21, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 26 23:13:45 +0000 2014", + "id": 471066690965753857, + "id_str": "471066690965753857", + "text": "@thegrugq paved with good intentions?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471066186382200832, + "in_reply_to_status_id_str": "471066186382200832", + "in_reply_to_user_id": 18983429, + "in_reply_to_user_id_str": "18983429", + "in_reply_to_screen_name": "thegrugq", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 6, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 26 23:02:16 +0000 2014", + "id": 471063799454109697, + "id_str": "471063799454109697", + "text": "Brazenly fraudulent, or the worst software engineers in the world? Tonight on GOXWATCH: we still genuinely just don't know", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 15, + "favorite_count": 27, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 26 22:55:33 +0000 2014", + "id": 471062110995505152, + "id_str": "471062110995505152", + "text": "@DefuseSec 🎉🎉💃💃", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471061969957429249, + "in_reply_to_status_id_str": "471061969957429249", + "in_reply_to_user_id": 499377755, + "in_reply_to_user_id_str": "499377755", + "in_reply_to_screen_name": "DefuseSec", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Mon May 26 22:52:06 +0000 2014", + "id": 471061242992672769, + "id_str": "471061242992672769", + "text": ".@zhuowei I literally have no opinion on which is true I’m just here to watch the fireworks 🎆", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471060925345062912, + "in_reply_to_status_id_str": "471060925345062912", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 26 22:50:19 +0000 2014", + "id": 471060793786503169, + "id_str": "471060793786503169", + "text": "Thread on /r/bitcoin: the anomalies aren’t fraudulent, Mt. Gox just can’t keep a consistent log to save its life! 😝", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 9, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 26 22:33:21 +0000 2014", + "id": 471056520772608001, + "id_str": "471056520772608001", + "text": "@papayakitty “the oppressors have refined their tactics over thousands of years to secure the cooperation of the oppressed: Not oppression!”", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471036127067922432, + "in_reply_to_status_id_str": "471036127067922432", + "in_reply_to_user_id": 14478751, + "in_reply_to_user_id_str": "14478751", + "in_reply_to_screen_name": "papayakitty", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 26 22:29:14 +0000 2014", + "id": 471055486402691072, + "id_str": "471055486402691072", + "text": ".@matthew_d_green Mt. Gox is the gift that never stops giving 🎄🎁", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471026290074861568, + "in_reply_to_status_id_str": "471026290074861568", + "in_reply_to_user_id": 106234268, + "in_reply_to_user_id_str": "106234268", + "in_reply_to_screen_name": "matthew_d_green", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 5, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 26 22:28:46 +0000 2014", + "id": 471055368723124224, + "id_str": "471055368723124224", + "text": "RT @matthew_d_green: \"If you were wondering how Bitcoin appreciated in value by 10x within the span of one month, well, this may be why.\" h…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Mon May 26 20:33:13 +0000 2014", + "id": 471026290074861568, + "id_str": "471026290074861568", + "text": "\"If you were wondering how Bitcoin appreciated in value by 10x within the span of one month, well, this may be why.\" http://t.co/whxHRDJC50", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 106234268, + "id_str": "106234268" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 53, + "favorite_count": 46, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/whxHRDJC50", + "expanded_url": "http://willyreport.wordpress.com/2014/05/25/the-willy-report-proof-of-massive-fraudulent-trading-activity-at-mt-gox-and-how-it-has-affected-the-price-of-bitcoin/", + "display_url": "willyreport.wordpress.com/2014/05/25/the…", + "indices": [ + 117, + 139 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 53, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon May 26 22:05:06 +0000 2014", + "id": 471049413733789696, + "id_str": "471049413733789696", + "text": "RT @MattBors: On Saturday another guy decided to shoot at women who didn't want to have sex with him http://t.co/Oj5n8LNgi9", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Mon May 26 18:38:30 +0000 2014", + "id": 470997420453527552, + "id_str": "470997420453527552", + "text": "On Saturday another guy decided to shoot at women who didn't want to have sex with him http://t.co/Oj5n8LNgi9", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 15161984, + "id_str": "15161984" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 53, + "favorite_count": 12, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/Oj5n8LNgi9", + "expanded_url": "http://thinkprogress.org/justice/2014/05/26/3441640/california-man-allegedly-fired-at-girls-for-refusing-to-have-sex/", + "display_url": "thinkprogress.org/justice/2014/0…", + "indices": [ + 87, + 109 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 53, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon May 26 21:56:25 +0000 2014", + "id": 471047229294518272, + "id_str": "471047229294518272", + "text": "@thepokebot the timers didn't reset... http://t.co/kfrspOHjgE", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 2436473940, + "in_reply_to_user_id_str": "2436473940", + "in_reply_to_screen_name": "ThePokeBot", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon May 26 20:06:12 +0000 2014", + "id": 471019490030125056, + "id_str": "471019490030125056", + "text": "Hey it's that pi approximation program I started a long time ago! Did I ever finish it?\n\n09.09090909090909090909\n\naaaaapparently not", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 5, + "favorite_count": 31, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 26 19:38:54 +0000 2014", + "id": 471012621047836672, + "id_str": "471012621047836672", + "text": "Inferior 1 [process 19136] will be killed.\n\nThat wording really creeps me out...", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 10, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 26 19:16:28 +0000 2014", + "id": 471006976256651265, + "id_str": "471006976256651265", + "text": "@aspects_ebooks you did iirc, Eodar", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471006091061760001, + "in_reply_to_status_id_str": "471006091061760001", + "in_reply_to_user_id": 2345404375, + "in_reply_to_user_id_str": "2345404375", + "in_reply_to_screen_name": "aspects_ebooks", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 26 19:15:15 +0000 2014", + "id": 471006668537331712, + "id_str": "471006668537331712", + "text": "@apeiros @vogon The Canonical Aria", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471006428271243264, + "in_reply_to_status_id_str": "471006428271243264", + "in_reply_to_user_id": 69860704, + "in_reply_to_user_id_str": "69860704", + "in_reply_to_screen_name": "apeiros", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 26 19:12:44 +0000 2014", + "id": 471006035210010624, + "id_str": "471006035210010624", + "text": ".@vogon “A Prelude to Normalization” is one of the most imitating headers for a programming document I can imagine", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 471005011636654080, + "in_reply_to_status_id_str": "471005011636654080", + "in_reply_to_user_id": 6326912, + "in_reply_to_user_id_str": "6326912", + "in_reply_to_screen_name": "vogon", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 26 19:05:49 +0000 2014", + "id": 471004294595223553, + "id_str": "471004294595223553", + "text": "@ThePokeBot I think we need an emulator reboot", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 2436473940, + "in_reply_to_user_id_str": "2436473940", + "in_reply_to_screen_name": "ThePokeBot", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 26 18:41:35 +0000 2014", + "id": 470998197905944576, + "id_str": "470998197905944576", + "text": "@Ruenzuo having a type advantage in the first place is not what I’d call putting the AI in a tough spot", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470996968127602688, + "in_reply_to_status_id_str": "470996968127602688", + "in_reply_to_user_id": 2241562357, + "in_reply_to_user_id_str": "2241562357", + "in_reply_to_screen_name": "Ruenzuo", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 26 18:20:00 +0000 2014", + "id": 470992765091086337, + "id_str": "470992765091086337", + "text": "RIP @ThePokeBot Squirtle #2523: couldn't land a tackle on a Weedle", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 26 18:08:17 +0000 2014", + "id": 470989818206232576, + "id_str": "470989818206232576", + "text": "@maxtch there’s no overlap in packages slated for autoremove and packages installed", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470989528493084672, + "in_reply_to_status_id_str": "470989528493084672", + "in_reply_to_user_id": 168408129, + "in_reply_to_user_id_str": "168408129", + "in_reply_to_screen_name": "maxtch", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 26 18:06:59 +0000 2014", + "id": 470989488693329921, + "id_str": "470989488693329921", + "text": "@sophiaphotos @Shufflejoy my psychologist also suggested I wear more dresses because ??? I’m not repping cisness right I guess???", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470964909661233152, + "in_reply_to_status_id_str": "470964909661233152", + "in_reply_to_user_id": 474314181, + "in_reply_to_user_id_str": "474314181", + "in_reply_to_screen_name": "sophiaphotos", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 26 18:03:41 +0000 2014", + "id": 470988657474543617, + "id_str": "470988657474543617", + "text": "Debian package system as a mysterious deity to be appeased: something wouldn’t install until I ran autoremove, for reasons inscrutable", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 8, + "favorite_count": 7, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 26 17:51:58 +0000 2014", + "id": 470985710984384512, + "id_str": "470985710984384512", + "text": "@ra6bit @innismir @McGrewSecurity “I heard you’re a good marketer, but you don’t have an established track record yet. … …okay you’re hired”", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470985302916730880, + "in_reply_to_status_id_str": "470985302916730880", + "in_reply_to_user_id": 537333195, + "in_reply_to_user_id_str": "537333195", + "in_reply_to_screen_name": "ra6bit", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 26 17:49:11 +0000 2014", + "id": 470985011806871553, + "id_str": "470985011806871553", + "text": "@zeightyfiv I did sneak into MIT at night once but I don’t think they’d appreciate that kind of visit", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470984589700501504, + "in_reply_to_status_id_str": "470984589700501504", + "in_reply_to_user_id": 472738612, + "in_reply_to_user_id_str": "472738612", + "in_reply_to_screen_name": "zeightyfiv", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 26 17:45:52 +0000 2014", + "id": 470984176850968577, + "id_str": "470984176850968577", + "text": "@Tomi_Tapio who on earth would be like: hey stranger who just literally crawled out of the sewer! Let’s sex", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470983635345354752, + "in_reply_to_status_id_str": "470983635345354752", + "in_reply_to_user_id": 43579011, + "in_reply_to_user_id_str": "43579011", + "in_reply_to_screen_name": "Tomi_Tapio", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 26 17:35:27 +0000 2014", + "id": 470981552361713664, + "id_str": "470981552361713664", + "text": "“What happens if we perversely ask the interpreter to evaluate (f f)?” Well that’s not the word I’d choose, textbook", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 9, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 26 17:30:25 +0000 2014", + "id": 470980287086612480, + "id_str": "470980287086612480", + "text": "@esalaka the AI chose Barrier every turn because it was “super effective” but it’s a non damaging move", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470980088264413184, + "in_reply_to_status_id_str": "470980088264413184", + "in_reply_to_user_id": 18374677, + "in_reply_to_user_id_str": "18374677", + "in_reply_to_screen_name": "esalaka", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 26 17:22:35 +0000 2014", + "id": 470978314991968256, + "id_str": "470978314991968256", + "text": "Spoilers, it was the latter, but in my defense — the code is in lisp. I can’t handle parentheses of that magnitude.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 9, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 26 17:21:29 +0000 2014", + "id": 470978037974966273, + "id_str": "470978037974966273", + "text": "“Either I’m smart enough to have found a mistake in an MIT textbook, or I’m dumb enough to think I found a mistake in an MIT textbook”", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 14, + "favorite_count": 30, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 26 17:05:58 +0000 2014", + "id": 470974133279289344, + "id_str": "470974133279289344", + "text": "Good internet guideline: never answer the question of anyone who addresses you as “u”.\n\nUnless they’re speaking Dutch, at least.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 34, + "favorite_count": 36, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 26 16:38:04 +0000 2014", + "id": 470967111238422528, + "id_str": "470967111238422528", + "text": "@esalaka do you know about the TPP battle where a lvl 34 Venomoth cleared Lance’s Dragonite with no damage due to an AI bug", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470964288212189184, + "in_reply_to_status_id_str": "470964288212189184", + "in_reply_to_user_id": 18374677, + "in_reply_to_user_id_str": "18374677", + "in_reply_to_screen_name": "esalaka", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 26 16:12:23 +0000 2014", + "id": 470960650941104128, + "id_str": "470960650941104128", + "text": "I love how the Pokemon AI, when put in a tough spot, doesn’t try to make the least bad choice: and that’s why the opponent just healed me", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 11, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 26 15:53:02 +0000 2014", + "id": 470955781198585856, + "id_str": "470955781198585856", + "text": "RT @vectorpoem: .@bburbank is doing something horrible in his timeline right now. Horrible, but... necessary.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Mon May 26 15:48:28 +0000 2014", + "id": 470954630315122688, + "id_str": "470954630315122688", + "text": ".@bburbank is doing something horrible in his timeline right now. Horrible, but... necessary.", + "source": "Twitter for Android", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 393460809, + "id_str": "393460809" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 15, + "favorite_count": 10, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "bburbank", + "name": "ben burbank (x86)", + "id": 15445518, + "id_str": "15445518", + "indices": [ + 1, + 10 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 15, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 26 15:47:13 +0000 2014", + "id": 470954317609193472, + "id_str": "470954317609193472", + "text": "@Kufat ;o;", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470954230703194112, + "in_reply_to_status_id_str": "470954230703194112", + "in_reply_to_user_id": 207691003, + "in_reply_to_user_id_str": "207691003", + "in_reply_to_screen_name": "Kufat", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Mon May 26 15:34:53 +0000 2014", + "id": 470951214100660224, + "id_str": "470951214100660224", + "text": "@zauspar … D:", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470951102238953472, + "in_reply_to_status_id_str": "470951102238953472", + "in_reply_to_user_id": 216571343, + "in_reply_to_user_id_str": "216571343", + "in_reply_to_screen_name": "zauspar", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Mon May 26 15:34:09 +0000 2014", + "id": 470951026502406144, + "id_str": "470951026502406144", + "text": "@zauspar … how do.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470950908051079169, + "in_reply_to_status_id_str": "470950908051079169", + "in_reply_to_user_id": 216571343, + "in_reply_to_user_id_str": "216571343", + "in_reply_to_screen_name": "zauspar", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "pt" + }, + { + "created_at": "Mon May 26 15:33:19 +0000 2014", + "id": 470950818380673026, + "id_str": "470950818380673026", + "text": "re xkcd: I do find it genuinely distressing how many phone screenshots are taken in the red, do you know how close you are to no internet", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 6, + "favorite_count": 8, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 26 15:23:30 +0000 2014", + "id": 470948348464095233, + "id_str": "470948348464095233", + "text": "@thegrugq I’m guessing that 5 in Thai is pronounced something like ha or he", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470945698804801536, + "in_reply_to_status_id_str": "470945698804801536", + "in_reply_to_user_id": 18983429, + "in_reply_to_user_id_str": "18983429", + "in_reply_to_screen_name": "thegrugq", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 26 15:17:13 +0000 2014", + "id": 470946766469464064, + "id_str": "470946766469464064", + "text": "@FioraAeterna … Re: Alistair has… figures?!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470937544423927808, + "in_reply_to_status_id_str": "470937544423927808", + "in_reply_to_user_id": 2468699718, + "in_reply_to_user_id_str": "2468699718", + "in_reply_to_screen_name": "FioraAeterna", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "es" + }, + { + "created_at": "Mon May 26 15:13:57 +0000 2014", + "id": 470945942699388928, + "id_str": "470945942699388928", + "text": "@SuperMaurice @sciencecomic 😫👈✋", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470936900736274432, + "in_reply_to_status_id_str": "470936900736274432", + "in_reply_to_user_id": 165942840, + "in_reply_to_user_id_str": "165942840", + "in_reply_to_screen_name": "SuperMaurice", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Mon May 26 15:08:07 +0000 2014", + "id": 470944475121192960, + "id_str": "470944475121192960", + "text": "@Talen_Lee I dreamed you designed a game where the main character was a small doggy on water skis, thought you should know", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 6, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 26 15:04:35 +0000 2014", + "id": 470943588843802625, + "id_str": "470943588843802625", + "text": "@ra6bit I think it’s because the average college student ain’t have no BMW so it’s a framing device to show his privileged background", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470906161060143104, + "in_reply_to_status_id_str": "470906161060143104", + "in_reply_to_user_id": 537333195, + "in_reply_to_user_id_str": "537333195", + "in_reply_to_screen_name": "ra6bit", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 26 14:51:28 +0000 2014", + "id": 470940284084584448, + "id_str": "470940284084584448", + "text": "@alt_m1sp is that supposed to be the platonic ideal of a scientific paper comment or what", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470858953060933632, + "in_reply_to_status_id_str": "470858953060933632", + "in_reply_to_user_id": 2401670173, + "in_reply_to_user_id_str": "2401670173", + "in_reply_to_screen_name": "alt_m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 26 14:29:47 +0000 2014", + "id": 470934829937479680, + "id_str": "470934829937479680", + "text": "@creaktive actress of Hermione Granger", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470833777389101056, + "in_reply_to_status_id_str": "470833777389101056", + "in_reply_to_user_id": 14379546, + "in_reply_to_user_id_str": "14379546", + "in_reply_to_screen_name": "creaktive", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 26 04:30:24 +0000 2014", + "id": 470783989288927232, + "id_str": "470783989288927232", + "text": "@Kufat @Myriachan ya know, nobody ever seemed to realize when I was a kid maybe I wasn’t just doing magic eye wrong", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470779855231913984, + "in_reply_to_status_id_str": "470779855231913984", + "in_reply_to_user_id": 207691003, + "in_reply_to_user_id_str": "207691003", + "in_reply_to_screen_name": "Kufat", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 26 04:24:45 +0000 2014", + "id": 470782569509048320, + "id_str": "470782569509048320", + "text": "RT @DavidFutrelle: For New Readers: An Intro to the Men’s Rights Movement and the New Misogyny http://t.co/PTkL0XCm25", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Mon May 26 03:17:59 +0000 2014", + "id": 470765765407162368, + "id_str": "470765765407162368", + "text": "For New Readers: An Intro to the Men’s Rights Movement and the New Misogyny http://t.co/PTkL0XCm25", + "source": "WordPress.com", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 348174495, + "id_str": "348174495" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 33, + "favorite_count": 24, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/PTkL0XCm25", + "expanded_url": "http://wp.me/p17cYK-37h", + "display_url": "wp.me/p17cYK-37h", + "indices": [ + 76, + 98 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 33, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon May 26 04:19:20 +0000 2014", + "id": 470781202832424960, + "id_str": "470781202832424960", + "text": "@dobharrison \\o/", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470777032146558976, + "in_reply_to_status_id_str": "470777032146558976", + "in_reply_to_user_id": 14714377, + "in_reply_to_user_id_str": "14714377", + "in_reply_to_screen_name": "dobharrison", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Mon May 26 03:43:19 +0000 2014", + "id": 470772140854489089, + "id_str": "470772140854489089", + "text": "I have an extremely low level of celebrity-care but it made me smile to hear that Emma Watson did graduate college", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 6, + "favorite_count": 18, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 26 03:30:54 +0000 2014", + "id": 470769016848805888, + "id_str": "470769016848805888", + "text": ".@mendel ding ding ding! Say whatever horrible things you want because it's Only The Internet! Don't resist online bullying because it's onl", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 470768477658034176, + "in_reply_to_status_id_str": "470768477658034176", + "in_reply_to_user_id": 2352121, + "in_reply_to_user_id_str": "2352121", + "in_reply_to_screen_name": "mendel", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 5, + "favorite_count": 6, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 26 03:30:01 +0000 2014", + "id": 470768795393740801, + "id_str": "470768795393740801", + "text": "RT @mendel: @0xabad1dea sometimes I think some people just see the internet as free from repercussions", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Mon May 26 03:28:46 +0000 2014", + "id": 470768477658034176, + "id_str": "470768477658034176", + "text": "@0xabad1dea sometimes I think some people just see the internet as free from repercussions", + "source": "Tweetbot for Mac", + "truncated": false, + "in_reply_to_status_id": 470768290240155648, + "in_reply_to_status_id_str": "470768290240155648", + "in_reply_to_user_id": 126030998, + "in_reply_to_user_id_str": "126030998", + "in_reply_to_screen_name": "0xabad1dea", + "user": { + "id": 2352121, + "id_str": "2352121" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 6, + "favorite_count": 3, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "0xabad1dea", + "name": "Melissa", + "id": 126030998, + "id_str": "126030998", + "indices": [ + 0, + 11 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 6, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 26 03:28:01 +0000 2014", + "id": 470768290240155648, + "id_str": "470768290240155648", + "text": "Puzzling how some people see the internet and the Real World as *completely* distinct – as if no-one reading this has a corporeal body.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 22, + "favorite_count": 30, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 26 03:16:02 +0000 2014", + "id": 470765273424093184, + "id_str": "470765273424093184", + "text": "@p0sixninja the sequel to http://t.co/SBazY7Al13", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 470764827875762176, + "in_reply_to_status_id_str": "470764827875762176", + "in_reply_to_user_id": 15053949, + "in_reply_to_user_id_str": "15053949", + "in_reply_to_screen_name": "p0sixninja", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon May 26 03:11:13 +0000 2014", + "id": 470764060711993344, + "id_str": "470764060711993344", + "text": "I guess it’d be more responsible to work on my actual novel and not get sidetracked though", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 26 03:06:26 +0000 2014", + "id": 470762860360916993, + "id_str": "470762860360916993", + "text": "My tumbly is sick so I guess I will stop playing Skyrim and start work on my fanfic about pirates tearing up Solitude or something idk yet", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 26 02:50:42 +0000 2014", + "id": 470758899466137600, + "id_str": "470758899466137600", + "text": "RT @eevee: i wrote... something. a wee bit more abstract than @0xabad1dea's post. http://t.co/JtBLYvpSuJ", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Mon May 26 02:39:54 +0000 2014", + "id": 470756182496276481, + "id_str": "470756182496276481", + "text": "i wrote... something. a wee bit more abstract than @0xabad1dea's post. http://t.co/JtBLYvpSuJ", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 14412937, + "id_str": "14412937" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 14, + "favorite_count": 20, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/JtBLYvpSuJ", + "expanded_url": "http://eev.ee/blog/2014/05/25/braid/", + "display_url": "eev.ee/blog/2014/05/2…", + "indices": [ + 74, + 96 + ] + } + ], + "user_mentions": [ + { + "screen_name": "0xabad1dea", + "name": "Melissa", + "id": 126030998, + "id_str": "126030998", + "indices": [ + 53, + 64 + ] + } + ] + }, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 14, + "favorite_count": 0, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon May 26 01:32:29 +0000 2014", + "id": 470739214519119873, + "id_str": "470739214519119873", + "text": "Guess who found out about the console command to simultaneously freeze the world and put the camera into free mode http://t.co/w3kzPQJyPN", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 8, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon May 26 01:15:08 +0000 2014", + "id": 470734850987532288, + "id_str": "470734850987532288", + "text": "@hypatiadotca o/ I'm sorry :(", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 470734635736240128, + "in_reply_to_status_id_str": "470734635736240128", + "in_reply_to_user_id": 6742522, + "in_reply_to_user_id_str": "6742522", + "in_reply_to_screen_name": "hypatiadotca", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 26 01:12:00 +0000 2014", + "id": 470734059979931648, + "id_str": "470734059979931648", + "text": ".@Talen_Lee the appeal of morningstars won me over in choosing cleric", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470733848964132865, + "in_reply_to_status_id_str": "470733848964132865", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 5, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 26 01:08:49 +0000 2014", + "id": 470733261359308800, + "id_str": "470733261359308800", + "text": "@ErrataRob … is that a real thing?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470733185429815296, + "in_reply_to_status_id_str": "470733185429815296", + "in_reply_to_user_id": 15300995, + "in_reply_to_user_id_str": "15300995", + "in_reply_to_screen_name": "ErrataRob", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 26 01:07:36 +0000 2014", + "id": 470732954030063617, + "id_str": "470732954030063617", + "text": "Now that I’ve grinded my Social Justice Cleric all day I can finally get back to Skyrim and irresponsible fantasy violence", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 10, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 26 01:04:22 +0000 2014", + "id": 470732140842610688, + "id_str": "470732140842610688", + "text": "@Freerunnering no no no eevee is my friend and he was tweet fighting with the blocked one", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470732047817121793, + "in_reply_to_status_id_str": "470732047817121793", + "in_reply_to_user_id": 74857162, + "in_reply_to_user_id_str": "74857162", + "in_reply_to_screen_name": "Freerunnering", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 26 01:03:26 +0000 2014", + "id": 470731903948296192, + "id_str": "470731903948296192", + "text": "@Freerunnering @eevee lol you preserved my cc on eevee is all", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470731677686575105, + "in_reply_to_status_id_str": "470731677686575105", + "in_reply_to_user_id": 74857162, + "in_reply_to_user_id_str": "74857162", + "in_reply_to_screen_name": "Freerunnering", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 26 01:01:10 +0000 2014", + "id": 470731335741734912, + "id_str": "470731335741734912", + "text": "RT @Talen_Lee: Good morning, twitter. Remember that the truth resists simplicity.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Mon May 26 00:55:58 +0000 2014", + "id": 470730025151393792, + "id_str": "470730025151393792", + "text": "Good morning, twitter. Remember that the truth resists simplicity.", + "source": "TweetDeck", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 1626778274, + "id_str": "1626778274" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 5, + "favorite_count": 6, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 5, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 26 00:59:48 +0000 2014", + "id": 470730991242194944, + "id_str": "470730991242194944", + "text": "@Freerunnering @eevee @comex <3 it’s okay, only one of them was above my baseline annoyance threshold and he’s now in Blocktown", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470730525205102594, + "in_reply_to_status_id_str": "470730525205102594", + "in_reply_to_user_id": 74857162, + "in_reply_to_user_id_str": "74857162", + "in_reply_to_screen_name": "Freerunnering", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 26 00:55:18 +0000 2014", + "id": 470729857106989056, + "id_str": "470729857106989056", + "text": "Oh my gods, bot, stop, this has gone too far http://t.co/ny7twbRIYj", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 19, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon May 26 00:49:23 +0000 2014", + "id": 470728370268147712, + "id_str": "470728370268147712", + "text": "@The1TrueSean well uh… congrats ! 🎓🎉", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470716976713576448, + "in_reply_to_status_id_str": "470716976713576448", + "in_reply_to_user_id": 883079132, + "in_reply_to_user_id_str": "883079132", + "in_reply_to_screen_name": "The1TrueSean", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 26 00:47:05 +0000 2014", + "id": 470727788211998720, + "id_str": "470727788211998720", + "text": "@eevee I have no idea why these <slur>s don’t like me it must be because of <offensive stereotype>", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470716190822637568, + "in_reply_to_status_id_str": "470716190822637568", + "in_reply_to_user_id": 14412937, + "in_reply_to_user_id_str": "14412937", + "in_reply_to_screen_name": "eevee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 3, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 26 00:46:01 +0000 2014", + "id": 470727520221143040, + "id_str": "470727520221143040", + "text": "bot.sentience++; https://t.co/f341OJ0QBN", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "quoted_status_id": 470716080059846656, + "quoted_status_id_str": "470716080059846656", + "retweet_count": 12, + "favorite_count": 8, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "lv" + }, + { + "created_at": "Mon May 26 00:45:04 +0000 2014", + "id": 470727284417376257, + "id_str": "470727284417376257", + "text": "@The1TrueSean … too soon bro", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470715037536256000, + "in_reply_to_status_id_str": "470715037536256000", + "in_reply_to_user_id": 883079132, + "in_reply_to_user_id_str": "883079132", + "in_reply_to_screen_name": "The1TrueSean", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "fi" + }, + { + "created_at": "Mon May 26 00:38:20 +0000 2014", + "id": 470725586772848641, + "id_str": "470725586772848641", + "text": ".@m1sp plz stop 😿", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470725328864698368, + "in_reply_to_status_id_str": "470725328864698368", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 26 00:37:37 +0000 2014", + "id": 470725406841376768, + "id_str": "470725406841376768", + "text": "RT @m1sp: @0xabad1dea https://t.co/oUpjykryWk", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Mon May 26 00:37:18 +0000 2014", + "id": 470725328864698368, + "id_str": "470725328864698368", + "text": "@0xabad1dea https://t.co/oUpjykryWk", + "source": "TweetDeck", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 126030998, + "in_reply_to_user_id_str": "126030998", + "in_reply_to_screen_name": "0xabad1dea", + "user": { + "id": 1007638597, + "id_str": "1007638597" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 12, + "favorite_count": 21, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "0xabad1dea", + "name": "Melissa", + "id": 126030998, + "id_str": "126030998", + "indices": [ + 0, + 11 + ] + } + ], + "media": [ + { + "id": 470721635969146880, + "id_str": "470721635969146880", + "indices": [ + 12, + 35 + ], + "media_url": "http://pbs.twimg.com/media/BohW1XwIIAApslI.jpg", + "media_url_https": "https://pbs.twimg.com/media/BohW1XwIIAApslI.jpg", + "url": "https://t.co/oUpjykryWk", + "display_url": "pic.twitter.com/oUpjykryWk", + "expanded_url": "https://twitter.com/DuncanIdunno/status/470721655124541440/photo/1", + "type": "photo", + "sizes": { + "small": { + "w": 340, + "h": 604, + "resize": "fit" + }, + "large": { + "w": 422, + "h": 750, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 422, + "h": 750, + "resize": "fit" + } + }, + "source_status_id": 470721655124541440, + "source_status_id_str": "470721655124541440" + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + "retweet_count": 12, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Mon May 26 00:25:21 +0000 2014", + "id": 470722322203041792, + "id_str": "470722322203041792", + "text": "@cirdan12 oh, I don't have an account, I'm just spectating :)", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 470722130087518209, + "in_reply_to_status_id_str": "470722130087518209", + "in_reply_to_user_id": 115046391, + "in_reply_to_user_id_str": "115046391", + "in_reply_to_screen_name": "cirdan12", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 26 00:05:55 +0000 2014", + "id": 470717428805406720, + "id_str": "470717428805406720", + "text": "@Packetknife I'm very specifically commenting on the people who explicitly said that being the rescuer in public was their intention", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 470716760216576000, + "in_reply_to_status_id_str": "470716760216576000", + "in_reply_to_user_id": 19564254, + "in_reply_to_user_id_str": "19564254", + "in_reply_to_screen_name": "Packetknife", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 25 23:55:57 +0000 2014", + "id": 470714922503249920, + "id_str": "470714922503249920", + "text": "@4ppleSauce @eevee @comex you're giving me the \"really incredibly obnoxious\" vibe with your choice of words so that's why and bye bye.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 470714726834401280, + "in_reply_to_status_id_str": "470714726834401280", + "in_reply_to_user_id": 482826704, + "in_reply_to_user_id_str": "482826704", + "in_reply_to_screen_name": "4pplesauce", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 25 23:44:41 +0000 2014", + "id": 470712085224390656, + "id_str": "470712085224390656", + "text": "@Packetknife I don't know what else to make of a *stranger* who tells me I should be thankful he's carrying because it's to protect me.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 470711617676935168, + "in_reply_to_status_id_str": "470711617676935168", + "in_reply_to_user_id": 19564254, + "in_reply_to_user_id_str": "19564254", + "in_reply_to_screen_name": "Packetknife", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 25 23:28:11 +0000 2014", + "id": 470707932825264130, + "id_str": "470707932825264130", + "text": "@WhiteMageSlave :(", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 470707748217585664, + "in_reply_to_status_id_str": "470707748217585664", + "in_reply_to_user_id": 90791634, + "in_reply_to_user_id_str": "90791634", + "in_reply_to_screen_name": "WhiteMageSlave", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Sun May 25 23:15:48 +0000 2014", + "id": 470704816269066240, + "id_str": "470704816269066240", + "text": "@mountainmew @eevee it turns out everything is", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 470704675558150144, + "in_reply_to_status_id_str": "470704675558150144", + "in_reply_to_user_id": 98763918, + "in_reply_to_user_id_str": "98763918", + "in_reply_to_screen_name": "mountainmew", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 25 22:53:36 +0000 2014", + "id": 470699230877982720, + "id_str": "470699230877982720", + "text": "@geekable but hey I did fit in the word \"intersectional\"!", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 470697845301862400, + "in_reply_to_status_id_str": "470697845301862400", + "in_reply_to_user_id": 755035, + "in_reply_to_user_id_str": "755035", + "in_reply_to_screen_name": "geekable", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 25 22:52:40 +0000 2014", + "id": 470698995535585280, + "id_str": "470698995535585280", + "text": "@geekable I can't fit classism, racism, the war on drugs, gun culture, systematic poverty etc all into one post that's already six feet long", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 470697845301862400, + "in_reply_to_status_id_str": "470697845301862400", + "in_reply_to_user_id": 755035, + "in_reply_to_user_id_str": "755035", + "in_reply_to_screen_name": "geekable", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 25 22:47:36 +0000 2014", + "id": 470697722303881218, + "id_str": "470697722303881218", + "text": "@geekable this is both true, and has different root causes (several together, I think) outside of genderscope", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 470697283881664516, + "in_reply_to_status_id_str": "470697283881664516", + "in_reply_to_user_id": 755035, + "in_reply_to_user_id_str": "755035", + "in_reply_to_screen_name": "geekable", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 25 22:15:29 +0000 2014", + "id": 470689637824864257, + "id_str": "470689637824864257", + "text": "@WhiteMageSlave um, I'm not sure actually, due to my rather... fuzzy... memory", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 470689402612899840, + "in_reply_to_status_id_str": "470689402612899840", + "in_reply_to_user_id": 90791634, + "in_reply_to_user_id_str": "90791634", + "in_reply_to_screen_name": "WhiteMageSlave", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 25 22:14:01 +0000 2014", + "id": 470689268461891584, + "id_str": "470689268461891584", + "text": "@m1sp you shouldn't retweet things before you read them! :p", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 25 22:13:07 +0000 2014", + "id": 470689041068068865, + "id_str": "470689041068068865", + "text": "Useless ramblings about murderers and MRAs: I had to get it all out in one place. http://t.co/MCzkUovI2U \n\ncc @eevee best tumblr warrior", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 63, + "favorite_count": 53, + "favorited": true, + "retweeted": true, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sun May 25 21:42:44 +0000 2014", + "id": 470681397909553152, + "id_str": "470681397909553152", + "text": "RT @bcrypt: #YesAllWomen b/c guy leaning out of a bus window right now won't stop asking for my number and I'm glad the bus will start movi…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sun May 25 21:14:06 +0000 2014", + "id": 470674191436378112, + "id_str": "470674191436378112", + "text": "#YesAllWomen b/c guy leaning out of a bus window right now won't stop asking for my number and I'm glad the bus will start moving soon.", + "source": "Twitter for Android", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 968881477, + "id_str": "968881477" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 13, + "favorite_count": 12, + "entities": { + "hashtags": [ + { + "text": "YesAllWomen", + "indices": [ + 0, + 12 + ] + } + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 13, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 25 20:34:55 +0000 2014", + "id": 470664329113518080, + "id_str": "470664329113518080", + "text": "@okoeroo @ralphholz it turns out almost all companies are fubar in practice", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470663917753360384, + "in_reply_to_status_id_str": "470663917753360384", + "in_reply_to_user_id": 14131361, + "in_reply_to_user_id_str": "14131361", + "in_reply_to_screen_name": "okoeroo", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 25 20:22:57 +0000 2014", + "id": 470661319109402624, + "id_str": "470661319109402624", + "text": "@eevee @gersty @computionist it was a mix, mostly settled on the side of terrorism. But there WERE people explicitly denying their whiteness", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470650420772089858, + "in_reply_to_status_id_str": "470650420772089858", + "in_reply_to_user_id": 14412937, + "in_reply_to_user_id_str": "14412937", + "in_reply_to_screen_name": "eevee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 25 20:11:18 +0000 2014", + "id": 470658386770800641, + "id_str": "470658386770800641", + "text": "I don't understand my husband. He put off unpacking some boxes for weeks and then got super motivated to do so... at five in the morning", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 9, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 25 19:51:57 +0000 2014", + "id": 470653519276421120, + "id_str": "470653519276421120", + "text": "When you check an IRC backlog and discover fanfiction about yourself http://t.co/XBDPLXj2JM", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 22, + "favorite_count": 53, + "favorited": true, + "retweeted": true, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sun May 25 19:26:21 +0000 2014", + "id": 470647074175057920, + "id_str": "470647074175057920", + "text": "@m1sp DON'T YOU DARE EVER USE THAT AS AN EXCUSE. >:[", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 470646816858333184, + "in_reply_to_status_id_str": "470646816858333184", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 25 19:09:49 +0000 2014", + "id": 470642912674725888, + "id_str": "470642912674725888", + "text": "@m1sp without you at my side, there was nothing to live for except my vision.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470641603523006464, + "in_reply_to_status_id_str": "470641603523006464", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 4, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 25 19:03:23 +0000 2014", + "id": 470641294277369856, + "id_str": "470641294277369856", + "text": "@bibbleco it's cool, I understand there's a backing context where you were personally hurt.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 470635039408259072, + "in_reply_to_status_id_str": "470635039408259072", + "in_reply_to_user_id": 14776653, + "in_reply_to_user_id_str": "14776653", + "in_reply_to_screen_name": "bibbleco", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 25 18:37:00 +0000 2014", + "id": 470634656442765313, + "id_str": "470634656442765313", + "text": "@JayMMueller @aredridel I think we got into this idea that a single cert should be used for years by bad precedent", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 470634124982497280, + "in_reply_to_status_id_str": "470634124982497280", + "in_reply_to_user_id": 27703756, + "in_reply_to_user_id_str": "27703756", + "in_reply_to_screen_name": "JayMMueller", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 25 18:36:12 +0000 2014", + "id": 470634452863815680, + "id_str": "470634452863815680", + "text": "@JayMMueller @aredridel it shouldn't create undue hardship: the tooling for this would not be hard and would strengthen the point of SSL", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 470634124982497280, + "in_reply_to_status_id_str": "470634124982497280", + "in_reply_to_user_id": 27703756, + "in_reply_to_user_id_str": "27703756", + "in_reply_to_screen_name": "JayMMueller", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 25 18:24:04 +0000 2014", + "id": 470631401856204800, + "id_str": "470631401856204800", + "text": "@thegrugq cc @LucaFilipozzi :)", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 470631166765064192, + "in_reply_to_status_id_str": "470631166765064192", + "in_reply_to_user_id": 18983429, + "in_reply_to_user_id_str": "18983429", + "in_reply_to_screen_name": "thegrugq", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "is" + }, + { + "created_at": "Sun May 25 18:19:55 +0000 2014", + "id": 470630356191035394, + "id_str": "470630356191035394", + "text": "SSL cert expirations happen just far enough apart that whoever screwed up last time and vowed not to forget again probably left the company", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 93, + "favorite_count": 59, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 25 18:18:08 +0000 2014", + "id": 470629907933179904, + "id_str": "470629907933179904", + "text": "@vaurora … the 28th of what month?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470629674234966017, + "in_reply_to_status_id_str": "470629674234966017", + "in_reply_to_user_id": 30071759, + "in_reply_to_user_id_str": "30071759", + "in_reply_to_screen_name": "vaurora", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "tl" + }, + { + "created_at": "Sun May 25 18:15:54 +0000 2014", + "id": 470629346093572096, + "id_str": "470629346093572096", + "text": "Well the good news is that Apple software update doesn’t just blithely accept expired certificates \n\n(Also, appears to be resolved?)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 7, + "favorite_count": 12, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 25 18:13:41 +0000 2014", + "id": 470628787722661888, + "id_str": "470628787722661888", + "text": "RT @cosmicpix: So much for my bug report today :-(\n\nApple Forgets to Renew SSL Certificate, Breaking OS X Software Update http://t.co/7RRuq…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sun May 25 17:11:07 +0000 2014", + "id": 470613040258240512, + "id_str": "470613040258240512", + "text": "So much for my bug report today :-(\n\nApple Forgets to Renew SSL Certificate, Breaking OS X Software Update http://t.co/7RRuqIF5I3", + "source": "Twitter for Websites", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 254797877, + "id_str": "254797877" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 103, + "favorite_count": 29, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/7RRuqIF5I3", + "expanded_url": "http://www.macrumors.com/2014/05/25/apple-software-update-invalid/", + "display_url": "macrumors.com/2014/05/25/app…", + "indices": [ + 107, + 129 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 103, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sun May 25 18:12:41 +0000 2014", + "id": 470628536542191616, + "id_str": "470628536542191616", + "text": "Help I feel a rambling blog post coming on, as if there haven’t been enough opinions yet", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 25 17:35:15 +0000 2014", + "id": 470619114265120768, + "id_str": "470619114265120768", + "text": "@WhiteMageSlave though removing all redundancy from natural language is impossible because tqx will never be a word", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470615882444439552, + "in_reply_to_status_id_str": "470615882444439552", + "in_reply_to_user_id": 90791634, + "in_reply_to_user_id_str": "90791634", + "in_reply_to_screen_name": "WhiteMageSlave", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 25 17:31:08 +0000 2014", + "id": 470618078968299521, + "id_str": "470618078968299521", + "text": "@bibbleco @pushinghoops um, I’m not sure why you thought we needed that obviously true point clarified in this context", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470616691744194560, + "in_reply_to_status_id_str": "470616691744194560", + "in_reply_to_user_id": 14776653, + "in_reply_to_user_id_str": "14776653", + "in_reply_to_screen_name": "bibbleco", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 25 17:29:24 +0000 2014", + "id": 470617643012341760, + "id_str": "470617643012341760", + "text": "@santiagoitzcoat unfortunately (as you can see by checking replies to my tweet) It’s Complicated", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470616012614672384, + "in_reply_to_status_id_str": "470616012614672384", + "in_reply_to_user_id": 70563525, + "in_reply_to_user_id_str": "70563525", + "in_reply_to_screen_name": "santiagoitzcoat", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 25 17:29:00 +0000 2014", + "id": 470617543104020480, + "id_str": "470617543104020480", + "text": "@santiagoitzcoat http://t.co/ESRvmnos0u the specific algorithm you’re looking for would probably be the one called Shannon entropy", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470616012614672384, + "in_reply_to_status_id_str": "470616012614672384", + "in_reply_to_user_id": 70563525, + "in_reply_to_user_id_str": "70563525", + "in_reply_to_screen_name": "santiagoitzcoat", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sun May 25 17:23:12 +0000 2014", + "id": 470616084077633536, + "id_str": "470616084077633536", + "text": "@WhiteMageSlave if improving the entropy of natural English is something you care about yes", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470615882444439552, + "in_reply_to_status_id_str": "470615882444439552", + "in_reply_to_user_id": 90791634, + "in_reply_to_user_id_str": "90791634", + "in_reply_to_screen_name": "WhiteMageSlave", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 25 17:20:52 +0000 2014", + "id": 470615495167967232, + "id_str": "470615495167967232", + "text": ".@thorsheim @Openwall there wasn’t really room in the tweet to go into a lecture about length etc.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470615296357982208, + "in_reply_to_status_id_str": "470615296357982208", + "in_reply_to_user_id": 33496439, + "in_reply_to_user_id_str": "33496439", + "in_reply_to_screen_name": "thorsheim", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 25 17:17:55 +0000 2014", + "id": 470614751744380929, + "id_str": "470614751744380929", + "text": "@zauspar that is to say, if I start a word with t… you can guess h… r… a vowel… but certainly not z… x… q", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470613601099980801, + "in_reply_to_status_id_str": "470613601099980801", + "in_reply_to_user_id": 216571343, + "in_reply_to_user_id_str": "216571343", + "in_reply_to_screen_name": "zauspar", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 25 17:17:06 +0000 2014", + "id": 470614549876731904, + "id_str": "470614549876731904", + "text": "@zauspar this is why English is characterized as a redundant language because we’re crazy about letter pairs that go well together", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470613601099980801, + "in_reply_to_status_id_str": "470613601099980801", + "in_reply_to_user_id": 216571343, + "in_reply_to_user_id_str": "216571343", + "in_reply_to_screen_name": "zauspar", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 25 17:14:44 +0000 2014", + "id": 470613954356871169, + "id_str": "470613954356871169", + "text": "@zauspar you need to know the full character set the string could be drawing from", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470613601099980801, + "in_reply_to_status_id_str": "470613601099980801", + "in_reply_to_user_id": 216571343, + "in_reply_to_user_id_str": "216571343", + "in_reply_to_screen_name": "zauspar", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 25 17:11:07 +0000 2014", + "id": 470613040208281600, + "id_str": "470613040208281600", + "text": "@zedshaw I don’t know much about this area but good, um, I guess you’d call it brush control? On the leaves", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470599755647553536, + "in_reply_to_status_id_str": "470599755647553536", + "in_reply_to_user_id": 15029296, + "in_reply_to_user_id_str": "15029296", + "in_reply_to_screen_name": "zedshaw", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 25 17:09:25 +0000 2014", + "id": 470612614616449025, + "id_str": "470612614616449025", + "text": "@piannucci I’m not sure what you mean. Measuring the entropy of individual words goes back to the 1950s at least (Shannon entropy)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470611412986101760, + "in_reply_to_status_id_str": "470611412986101760", + "in_reply_to_user_id": 19134956, + "in_reply_to_user_id_str": "19134956", + "in_reply_to_screen_name": "piannucci", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 25 17:03:33 +0000 2014", + "id": 470611139265830912, + "id_str": "470611139265830912", + "text": "@Jedi_Amara had to beat America at something?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470592310174949376, + "in_reply_to_status_id_str": "470592310174949376", + "in_reply_to_user_id": 760412, + "in_reply_to_user_id_str": "760412", + "in_reply_to_screen_name": "Jedi_Amara", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 25 17:00:14 +0000 2014", + "id": 470610301835280384, + "id_str": "470610301835280384", + "text": "@birdsnfrogs @miaubiz I thought this was going to be another screen cap of the murderer’s anti-women manifesto and I got really confused", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469835217965187072, + "in_reply_to_status_id_str": "469835217965187072", + "in_reply_to_user_id": 99022269, + "in_reply_to_user_id_str": "99022269", + "in_reply_to_screen_name": "birdsnfrogs", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 25 16:54:59 +0000 2014", + "id": 470608984123400194, + "id_str": "470608984123400194", + "text": "@calieber it’s a fight against shortness and dictionary word complacency when we should be encouraging such users to use word phrases", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470608648176427008, + "in_reply_to_status_id_str": "470608648176427008", + "in_reply_to_user_id": 10014132, + "in_reply_to_user_id_str": "10014132", + "in_reply_to_screen_name": "calieber", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 25 16:53:58 +0000 2014", + "id": 470608725208997888, + "id_str": "470608725208997888", + "text": "@Raed667 I’m sure there are several really excellent ones to choose from already but here we are.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470608493217861632, + "in_reply_to_status_id_str": "470608493217861632", + "in_reply_to_user_id": 229803979, + "in_reply_to_user_id_str": "229803979", + "in_reply_to_screen_name": "Raed667", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 25 16:52:27 +0000 2014", + "id": 470608344290705408, + "id_str": "470608344290705408", + "text": "Most password strength raters in the field are completely broken: they do not measure entropy but unique arbitrary character groupings", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 38, + "favorite_count": 25, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 25 16:51:19 +0000 2014", + "id": 470608057677144064, + "id_str": "470608057677144064", + "text": "RT @kennwhite: eBay you're killing me. A tale of password woe in pictures. (Yes, this actually happened) /cc @thorsheim @jmgosney http://t.…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sun May 25 12:44:37 +0000 2014", + "id": 470545973547397120, + "id_str": "470545973547397120", + "text": "eBay you're killing me. A tale of password woe in pictures. (Yes, this actually happened) /cc @thorsheim @jmgosney http://t.co/KwjahvsbOL", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 42992649, + "id_str": "42992649" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1100, + "favorite_count": 454, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "thorsheim", + "name": "Per Thorsheim", + "id": 33496439, + "id_str": "33496439", + "indices": [ + 94, + 104 + ] + }, + { + "screen_name": "jmgosney", + "name": "Jeremi M Gosney", + "id": 312383587, + "id_str": "312383587", + "indices": [ + 105, + 114 + ] + } + ], + "media": [ + { + "id": 470545972448092160, + "id_str": "470545972448092160", + "indices": [ + 115, + 137 + ], + "media_url": "http://pbs.twimg.com/media/Boe3EaJCYAAsPkY.png", + "media_url_https": "https://pbs.twimg.com/media/Boe3EaJCYAAsPkY.png", + "url": "http://t.co/KwjahvsbOL", + "display_url": "pic.twitter.com/KwjahvsbOL", + "expanded_url": "http://twitter.com/kennwhite/status/470545973547397120/photo/1", + "type": "photo", + "sizes": { + "small": { + "w": 340, + "h": 577, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 600, + "h": 1018, + "resize": "fit" + }, + "large": { + "w": 676, + "h": 1147, + "resize": "fit" + } + } + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 1100, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sun May 25 16:40:57 +0000 2014", + "id": 470605449432432640, + "id_str": "470605449432432640", + "text": "@eevee I assume you just got caught up on Mort’s arc because the latest page isn’t really traumatizing", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470543789170257920, + "in_reply_to_status_id_str": "470543789170257920", + "in_reply_to_user_id": 14412937, + "in_reply_to_user_id_str": "14412937", + "in_reply_to_screen_name": "eevee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 25 16:27:32 +0000 2014", + "id": 470602075362295808, + "id_str": "470602075362295808", + "text": "RT @puellavulnerata: Concur; saying \"the NSA is made of all-powerful hax0r magic, so why bother?\" is as helpful to them as overconfidence. …", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sun May 25 08:22:55 +0000 2014", + "id": 470480117379379200, + "id_str": "470480117379379200", + "text": "Concur; saying \"the NSA is made of all-powerful hax0r magic, so why bother?\" is as helpful to them as overconfidence. @ioerror @0xdeadbabe", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 470250975513804800, + "in_reply_to_status_id_str": "470250975513804800", + "in_reply_to_user_id": 13862172, + "in_reply_to_user_id_str": "13862172", + "in_reply_to_screen_name": "ioerror", + "user": { + "id": 54666727, + "id_str": "54666727" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 12, + "favorite_count": 11, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "ioerror", + "name": "Jacob Appelbaum", + "id": 13862172, + "id_str": "13862172", + "indices": [ + 118, + 126 + ] + }, + { + "screen_name": "0xdeadbabe", + "name": "0xdeadbabe", + "id": 19806908, + "id_str": "19806908", + "indices": [ + 127, + 138 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 12, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 25 16:26:28 +0000 2014", + "id": 470601807652487168, + "id_str": "470601807652487168", + "text": "@cirdan12 what an incredibly unhelpful response", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470601626257203201, + "in_reply_to_status_id_str": "470601626257203201", + "in_reply_to_user_id": 115046391, + "in_reply_to_user_id_str": "115046391", + "in_reply_to_screen_name": "cirdan12", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 25 16:10:35 +0000 2014", + "id": 470597810006814720, + "id_str": "470597810006814720", + "text": "@imacatlol it’s surely not instantaneous but surely not multiple days, and surely not everyone I know would be in the very last batch of it", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470596553519165440, + "in_reply_to_status_id_str": "470596553519165440", + "in_reply_to_user_id": 55651910, + "in_reply_to_user_id_str": "55651910", + "in_reply_to_screen_name": "imacatlol", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 25 16:09:02 +0000 2014", + "id": 470597418825027584, + "id_str": "470597418825027584", + "text": "@ddowza trying to track that would be a needless complication, especially if there was some problem already like four days implies", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470596793332297728, + "in_reply_to_status_id_str": "470596793332297728", + "in_reply_to_user_id": 84030041, + "in_reply_to_user_id_str": "84030041", + "in_reply_to_screen_name": "ddowza", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 25 16:04:26 +0000 2014", + "id": 470596260513447936, + "id_str": "470596260513447936", + "text": "The reports are in: eBay has finally sent out the password reset email. On Sunday. Four days after public disclosure. ???", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 10, + "favorite_count": 7, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 25 15:55:27 +0000 2014", + "id": 470594001133776899, + "id_str": "470594001133776899", + "text": "@bpub and this will never change, no matter how many needless incidents there are between cops and neuroatypicals! ¯\\(º_O)/¯", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470526228890279936, + "in_reply_to_status_id_str": "470526228890279936", + "in_reply_to_user_id": 116919283, + "in_reply_to_user_id_str": "116919283", + "in_reply_to_screen_name": "bpub", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 25 05:43:45 +0000 2014", + "id": 470440060626944000, + "id_str": "470440060626944000", + "text": "@m1sp this is my second character ever", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470439904258711552, + "in_reply_to_status_id_str": "470439904258711552", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 25 05:40:56 +0000 2014", + "id": 470439350329950208, + "id_str": "470439350329950208", + "text": "Got a lot of really good screenshots. Wow, the game plays really differently when you use a sword instead of fireballs. Blood everywhere!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 25 05:38:50 +0000 2014", + "id": 470438824951443456, + "id_str": "470438824951443456", + "text": "@aspects_ebooks talk about overreaction", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470438582390624257, + "in_reply_to_status_id_str": "470438582390624257", + "in_reply_to_user_id": 2345404375, + "in_reply_to_user_id_str": "2345404375", + "in_reply_to_screen_name": "aspects_ebooks", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 25 05:38:13 +0000 2014", + "id": 470438669871218688, + "id_str": "470438669871218688", + "text": "@ShadowTodd the timbre of what happens to women on the street is very different between rural and big city.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470435514647322624, + "in_reply_to_status_id_str": "470435514647322624", + "in_reply_to_user_id": 168769498, + "in_reply_to_user_id_str": "168769498", + "in_reply_to_screen_name": "ShadowTodd", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 25 05:33:12 +0000 2014", + "id": 470437404030287872, + "id_str": "470437404030287872", + "text": "@AlexKara15 @ThePokeBot zomg beat it twice in one night zomg. Sorry I missed it T_T", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 470433177933082624, + "in_reply_to_status_id_str": "470433177933082624", + "in_reply_to_user_id": 45245276, + "in_reply_to_user_id_str": "45245276", + "in_reply_to_screen_name": "AlexKara15", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 25 04:28:11 +0000 2014", + "id": 470421045196115968, + "id_str": "470421045196115968", + "text": "@ral1sh it’s cool, I don’t remember who said what anyway", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470419711344132096, + "in_reply_to_status_id_str": "470419711344132096", + "in_reply_to_user_id": 1166206466, + "in_reply_to_user_id_str": "1166206466", + "in_reply_to_screen_name": "ral1sh", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 25 04:08:34 +0000 2014", + "id": 470416106315075584, + "id_str": "470416106315075584", + "text": "@wbic16 by applying the heuristic that people are almost always both home and sleeping at night?", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 470414220866379776, + "in_reply_to_status_id_str": "470414220866379776", + "in_reply_to_user_id": 15250344, + "in_reply_to_user_id_str": "15250344", + "in_reply_to_screen_name": "wbic16", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 25 03:15:37 +0000 2014", + "id": 470402780675313664, + "id_str": "470402780675313664", + "text": "@marginoferror it doesn't need to be snowing to be cold :) I have no plugins whatsoever except this Unbound thing to pick start conditions", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 470402590153248768, + "in_reply_to_status_id_str": "470402590153248768", + "in_reply_to_user_id": 22039951, + "in_reply_to_user_id_str": "22039951", + "in_reply_to_screen_name": "marginoferror", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 25 03:14:49 +0000 2014", + "id": 470402579575611393, + "id_str": "470402579575611393", + "text": "@Packetknife and Ms. Nikita explained to me after that about some problem with the law only allowing rifles, not handguns.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 470402185319419904, + "in_reply_to_status_id_str": "470402185319419904", + "in_reply_to_user_id": 19564254, + "in_reply_to_user_id_str": "19564254", + "in_reply_to_screen_name": "Packetknife", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 25 03:14:00 +0000 2014", + "id": 470402375594049536, + "id_str": "470402375594049536", + "text": "Introducing Saral of Hammerfell. Her initial assessment of Skyrim: too cold, must source more fur. http://t.co/b0CUCvAGBL", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 6, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sun May 25 03:12:26 +0000 2014", + "id": 470401981484646400, + "id_str": "470401981484646400", + "text": "@Packetknife and maybe I was coming across more All Gun Owners than I meant to. But some of my best friends are gun owners ;)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470401155928166401, + "in_reply_to_status_id_str": "470401155928166401", + "in_reply_to_user_id": 19564254, + "in_reply_to_user_id_str": "19564254", + "in_reply_to_screen_name": "Packetknife", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 25 03:11:27 +0000 2014", + "id": 470401734490472449, + "id_str": "470401734490472449", + "text": "@Packetknife I said something about a vacancy of respect for other people, in specific context of frightening random strangers", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470401155928166401, + "in_reply_to_status_id_str": "470401155928166401", + "in_reply_to_user_id": 19564254, + "in_reply_to_user_id_str": "19564254", + "in_reply_to_screen_name": "Packetknife", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 25 03:03:34 +0000 2014", + "id": 470399749078929410, + "id_str": "470399749078929410", + "text": "@Packetknife I’m sorry. I didn’t ever mean for this to be some sort of ongoing personal problem.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470399183288283136, + "in_reply_to_status_id_str": "470399183288283136", + "in_reply_to_user_id": 19564254, + "in_reply_to_user_id_str": "19564254", + "in_reply_to_screen_name": "Packetknife", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 25 02:25:38 +0000 2014", + "id": 470390202436165634, + "id_str": "470390202436165634", + "text": "Anyway I’ve cried out my social anxiety panic attack (I hope they’re proud of themself) so maybe actually Skyrim now?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 25 02:20:03 +0000 2014", + "id": 470388797180768256, + "id_str": "470388797180768256", + "text": "Anyway my openly stated preference to not be around guns does not in any way deprive you of your rights, in case you were wondering", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 4, + "favorite_count": 6, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 25 02:08:55 +0000 2014", + "id": 470385994974629889, + "id_str": "470385994974629889", + "text": "If someone would choose today of all days to question why I as a woman am afraid of men with guns\n\nI *really* do not need them in my life", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 15, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 25 02:03:33 +0000 2014", + "id": 470384647684517888, + "id_str": "470384647684517888", + "text": "@DaveAtErrata I’m blocking you for repeated and deliberate dishonesty about what I did and didn’t say. I’m sorry.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470384482487644160, + "in_reply_to_status_id_str": "470384482487644160", + "in_reply_to_user_id": 15817736, + "in_reply_to_user_id_str": "15817736", + "in_reply_to_screen_name": "DaveAtErrata", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 25 02:01:43 +0000 2014", + "id": 470384182695591937, + "id_str": "470384182695591937", + "text": "@DaveAtErrata please for the love of twitter disengage, I don’t want to be trolled", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470383785549504512, + "in_reply_to_status_id_str": "470383785549504512", + "in_reply_to_user_id": 15817736, + "in_reply_to_user_id_str": "15817736", + "in_reply_to_screen_name": "DaveAtErrata", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 25 02:00:30 +0000 2014", + "id": 470383878944075777, + "id_str": "470383878944075777", + "text": "@DaveAtErrata that has absolutely nothing to do with what I said whatsoever, you are deliberately mishearing me", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470383785549504512, + "in_reply_to_status_id_str": "470383785549504512", + "in_reply_to_user_id": 15817736, + "in_reply_to_user_id_str": "15817736", + "in_reply_to_screen_name": "DaveAtErrata", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 25 01:59:33 +0000 2014", + "id": 470383640187502592, + "id_str": "470383640187502592", + "text": "@DaveAtErrata check today’s news for a perfect example of why I’m a little JUMPY around dudes bringing guns near me", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470383283742973952, + "in_reply_to_status_id_str": "470383283742973952", + "in_reply_to_user_id": 15817736, + "in_reply_to_user_id_str": "15817736", + "in_reply_to_screen_name": "DaveAtErrata", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 25 01:59:02 +0000 2014", + "id": 470383510143131648, + "id_str": "470383510143131648", + "text": "@DaveAtErrata I know what I said, I said I find it disrespectful to bring a gun where it’s not welcome, and around me guns are unwelcome", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470383283742973952, + "in_reply_to_status_id_str": "470383283742973952", + "in_reply_to_user_id": 15817736, + "in_reply_to_user_id_str": "15817736", + "in_reply_to_screen_name": "DaveAtErrata", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 25 01:56:38 +0000 2014", + "id": 470382905999761408, + "id_str": "470382905999761408", + "text": "@DaveAtErrata no I am pretty sure I never said that and I’m pretty sure you’re trying to start a second fight for no apparent reason", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470382679696080896, + "in_reply_to_status_id_str": "470382679696080896", + "in_reply_to_user_id": 15817736, + "in_reply_to_user_id_str": "15817736", + "in_reply_to_screen_name": "DaveAtErrata", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 25 01:54:32 +0000 2014", + "id": 470382377030922240, + "id_str": "470382377030922240", + "text": "@DaveAtErrata oh. my. GODS. Why do you think me saying I personally think something is rude INFRINGES ON YOUR RIGHTS", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470381559187791873, + "in_reply_to_status_id_str": "470381559187791873", + "in_reply_to_user_id": 15817736, + "in_reply_to_user_id_str": "15817736", + "in_reply_to_screen_name": "DaveAtErrata", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 25 01:47:48 +0000 2014", + "id": 470380682389520384, + "id_str": "470380682389520384", + "text": "Wearing the evil hoodie again. And of course I’ve got an evil keyboard to match http://t.co/7Ysg7JUFQc", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 13, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sun May 25 01:46:51 +0000 2014", + "id": 470380441363443712, + "id_str": "470380441363443712", + "text": "@demize95 @zhuowei @Talen_Lee “I’m an academic and I couldn’t possibly be more disconnected from the practice; want proof?”", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470380051134156800, + "in_reply_to_status_id_str": "470380051134156800", + "in_reply_to_user_id": 137133048, + "in_reply_to_user_id_str": "137133048", + "in_reply_to_screen_name": "demize95", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 25 01:42:59 +0000 2014", + "id": 470379468717309953, + "id_str": "470379468717309953", + "text": "@tanawts then I'm sorry for your community's massive loss :(", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 470378865731186688, + "in_reply_to_status_id_str": "470378865731186688", + "in_reply_to_user_id": 236170246, + "in_reply_to_user_id_str": "236170246", + "in_reply_to_screen_name": "tanawts", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 25 01:31:57 +0000 2014", + "id": 470376692159369216, + "id_str": "470376692159369216", + "text": "@demize95 @zhuowei @Talen_Lee oh don’t tell me you missed the source of this joke", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470376508671131648, + "in_reply_to_status_id_str": "470376508671131648", + "in_reply_to_user_id": 137133048, + "in_reply_to_user_id_str": "137133048", + "in_reply_to_screen_name": "demize95", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 25 01:30:51 +0000 2014", + "id": 470376415578587137, + "id_str": "470376415578587137", + "text": "@oshepherd this is the first disc case I have ever held in my life which is not the same size as all the other disc cases I have held", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470376124607131648, + "in_reply_to_status_id_str": "470376124607131648", + "in_reply_to_user_id": 39797372, + "in_reply_to_user_id_str": "39797372", + "in_reply_to_screen_name": "oshepherd", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 25 01:26:42 +0000 2014", + "id": 470375371905703936, + "id_str": "470375371905703936", + "text": "@Talen_Lee that’s really quite impressive, it shouldn’t do that", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470370554650710016, + "in_reply_to_status_id_str": "470370554650710016", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 25 01:23:54 +0000 2014", + "id": 470374668621586432, + "id_str": "470374668621586432", + "text": "@demize95 it's an opening scenario configurator. For example: no dragons, start with xyz equipment, in town foo", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 470373637078667264, + "in_reply_to_status_id_str": "470373637078667264", + "in_reply_to_user_id": 137133048, + "in_reply_to_user_id_str": "137133048", + "in_reply_to_screen_name": "demize95", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 25 01:04:35 +0000 2014", + "id": 470369804063629312, + "id_str": "470369804063629312", + "text": "@eevee I’d rather people practice conscientious “I only heard this on the internet” phrasing than repeat everything as absolute fact", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470369001118261248, + "in_reply_to_status_id_str": "470369001118261248", + "in_reply_to_user_id": 14412937, + "in_reply_to_user_id_str": "14412937", + "in_reply_to_screen_name": "eevee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 25 01:03:58 +0000 2014", + "id": 470369652988997632, + "id_str": "470369652988997632", + "text": "@eevee this has all come out as a trickle over the day; I don’t think it’s a *bad* thing people stick to journalistic standards", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470369001118261248, + "in_reply_to_status_id_str": "470369001118261248", + "in_reply_to_user_id": 14412937, + "in_reply_to_user_id_str": "14412937", + "in_reply_to_screen_name": "eevee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 25 00:59:56 +0000 2014", + "id": 470368635551494144, + "id_str": "470368635551494144", + "text": "@eevee whichever it is, it’s definitely the kids who are in the wrong and are failing to live up to the boomers’ special standards", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470367373375979521, + "in_reply_to_status_id_str": "470367373375979521", + "in_reply_to_user_id": 14412937, + "in_reply_to_user_id_str": "14412937", + "in_reply_to_screen_name": "eevee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 25 00:54:09 +0000 2014", + "id": 470367180258025472, + "id_str": "470367180258025472", + "text": "@eevee journalist guidelines are pretty strict about this sort of thing, same as not naming victims before the family is notified", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470357346166640640, + "in_reply_to_status_id_str": "470357346166640640", + "in_reply_to_user_id": 14412937, + "in_reply_to_user_id_str": "14412937", + "in_reply_to_screen_name": "eevee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 25 00:39:13 +0000 2014", + "id": 470363422547542016, + "id_str": "470363422547542016", + "text": "@unixronin :( fiiiiiiiine", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 470360654839173120, + "in_reply_to_status_id_str": "470360654839173120", + "in_reply_to_user_id": 25068712, + "in_reply_to_user_id_str": "25068712", + "in_reply_to_screen_name": "unixronin", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "vi" + }, + { + "created_at": "Sun May 25 00:38:56 +0000 2014", + "id": 470363351592493057, + "id_str": "470363351592493057", + "text": "@szakulec you can't hide a keyboard or mouse in use (nondiscoverable != magically radio silent)", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 470359808583819264, + "in_reply_to_status_id_str": "470359808583819264", + "in_reply_to_user_id": 151256073, + "in_reply_to_user_id_str": "151256073", + "in_reply_to_screen_name": "szakulec", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 25 00:22:16 +0000 2014", + "id": 470359155174154240, + "id_str": "470359155174154240", + "text": "AHHHH WHY ARE PLAYSTATION 4 DISC CASES SMALLER THAN ALL THE OTHERS AHHHH.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 6, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 25 00:21:32 +0000 2014", + "id": 470358972521013249, + "id_str": "470358972521013249", + "text": "@k4dl :(", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 470357660194193408, + "in_reply_to_status_id_str": "470357660194193408", + "in_reply_to_user_id": 268335123, + "in_reply_to_user_id_str": "268335123", + "in_reply_to_screen_name": "k4dl", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Sun May 25 00:12:52 +0000 2014", + "id": 470356789700337664, + "id_str": "470356789700337664", + "text": "@Xaosopher @DocKrog @DelilahSDawson … but you do give off good protector of the innocent vibes 👍", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470356310358106112, + "in_reply_to_status_id_str": "470356310358106112", + "in_reply_to_user_id": 68878049, + "in_reply_to_user_id_str": "68878049", + "in_reply_to_screen_name": "Xaosopher", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 25 00:10:01 +0000 2014", + "id": 470356072893796352, + "id_str": "470356072893796352", + "text": "Oh my gods can this even be real http://t.co/7kO07tqBav", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 8, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sun May 25 00:08:22 +0000 2014", + "id": 470355659243126784, + "id_str": "470355659243126784", + "text": "@Packetknife for the record I consider you an example of a cool single father \n\nGranted I only have your version of your twitter feed :)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470349862207496192, + "in_reply_to_status_id_str": "470349862207496192", + "in_reply_to_user_id": 19564254, + "in_reply_to_user_id_str": "19564254", + "in_reply_to_screen_name": "Packetknife", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 23:43:02 +0000 2014", + "id": 470349282797559808, + "id_str": "470349282797559808", + "text": "Also that run was about 20 seconds behind the entire time and then made it all up and then some in the last five minutes #NeverGiveUp 8)", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 23:41:10 +0000 2014", + "id": 470348814746791936, + "id_str": "470348814746791936", + "text": "Congrats @ThePokeBot another thirty seconds closer to 1:51 world domination http://t.co/bub0CqjhhF", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 7, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 23:40:23 +0000 2014", + "id": 470348615224131584, + "id_str": "470348615224131584", + "text": "@Myriachan @Tuplet \"men's rights activist\" and you really have to look them up to understand the whole situation", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 470346620505452546, + "in_reply_to_status_id_str": "470346620505452546", + "in_reply_to_user_id": 1556497868, + "in_reply_to_user_id_str": "1556497868", + "in_reply_to_screen_name": "Myriachan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 23:39:40 +0000 2014", + "id": 470348437167566848, + "id_str": "470348437167566848", + "text": "@kyhwana we're still a minute and a halfish short of the world record", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 470347835360034817, + "in_reply_to_status_id_str": "470347835360034817", + "in_reply_to_user_id": 30135560, + "in_reply_to_user_id_str": "30135560", + "in_reply_to_screen_name": "kyhwana", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 23:34:08 +0000 2014", + "id": 470347043362594816, + "id_str": "470347043362594816", + "text": "Either about to PB or fail catastrophically in next three minutes http://t.co/d9J4jtemd7", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 23:28:07 +0000 2014", + "id": 470345530053513216, + "id_str": "470345530053513216", + "text": "This is a really particularly excellent first item for a screencap gallery. http://t.co/9fuCGmoaMD", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 6, + "favorite_count": 12, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 23:25:53 +0000 2014", + "id": 470344968121638912, + "id_str": "470344968121638912", + "text": "@MechMK1 mod for picking starting conditions as you please (location, inventory, etc)", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 470344534724214784, + "in_reply_to_status_id_str": "470344534724214784", + "in_reply_to_user_id": 81556825, + "in_reply_to_user_id_str": "81556825", + "in_reply_to_screen_name": "MechMK1", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 23:22:58 +0000 2014", + "id": 470344233506074625, + "id_str": "470344233506074625", + "text": "Think I'm going to install Skyrim Unbound to do some roleplaying as a basis for writing some fanfic. Somebody stop me before I hurt myself", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 23:14:01 +0000 2014", + "id": 470341979067645952, + "id_str": "470341979067645952", + "text": "@ddribin @redtwitdown they spy on you, then offer a refund? :p", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470341777501589504, + "in_reply_to_status_id_str": "470341777501589504", + "in_reply_to_user_id": 4885071, + "in_reply_to_user_id_str": "4885071", + "in_reply_to_screen_name": "ddribin", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 23:13:21 +0000 2014", + "id": 470341811769454592, + "id_str": "470341811769454592", + "text": ".@Tuplet I very specifically do not want an “arrested for precrime” world which is why I opened with the word “defuse”", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470341597708943360, + "in_reply_to_status_id_str": "470341597708943360", + "in_reply_to_user_id": 34310651, + "in_reply_to_user_id_str": "34310651", + "in_reply_to_screen_name": "Tuplet", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 23:05:34 +0000 2014", + "id": 470339856309039104, + "id_str": "470339856309039104", + "text": "@eevee surprise I’ve been 64-bit this entire time", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470339006337536000, + "in_reply_to_status_id_str": "470339006337536000", + "in_reply_to_user_id": 14412937, + "in_reply_to_user_id_str": "14412937", + "in_reply_to_screen_name": "eevee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 6, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 23:00:57 +0000 2014", + "id": 470338692041945091, + "id_str": "470338692041945091", + "text": "@Jennimason0990 put these together and it’s not hard to see why the ideology could manufacture someone like this", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470337441921253376, + "in_reply_to_status_id_str": "470337441921253376", + "in_reply_to_user_id": 485288297, + "in_reply_to_user_id_str": "485288297", + "in_reply_to_screen_name": "Jennimason0990", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 22:59:56 +0000 2014", + "id": 470338438232031232, + "id_str": "470338438232031232", + "text": "@Jennimason0990 so here comes this group that’s like “it’s the fault of women as a whole” which makes the problem entirely external", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470337441921253376, + "in_reply_to_status_id_str": "470337441921253376", + "in_reply_to_user_id": 485288297, + "in_reply_to_user_id_str": "485288297", + "in_reply_to_screen_name": "Jennimason0990", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 22:58:06 +0000 2014", + "id": 470337975604502528, + "id_str": "470337975604502528", + "text": "@Jennimason0990 the social difficulties that frequently accompany being spectrum can be extremely distressful and seemingly inexplicable", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470337441921253376, + "in_reply_to_status_id_str": "470337441921253376", + "in_reply_to_user_id": 485288297, + "in_reply_to_user_id_str": "485288297", + "in_reply_to_screen_name": "Jennimason0990", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 22:57:15 +0000 2014", + "id": 470337763376898048, + "id_str": "470337763376898048", + "text": "@jeremiahfelt @DrPizza ahh, right, forgot about that", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470337641314263041, + "in_reply_to_status_id_str": "470337641314263041", + "in_reply_to_user_id": 9154112, + "in_reply_to_user_id_str": "9154112", + "in_reply_to_screen_name": "jeremiahfelt", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 22:56:56 +0000 2014", + "id": 470337681881591808, + "id_str": "470337681881591808", + "text": "@Jennimason0990 for the record my sister is spectrum and I’ve been told I’m probably spectrum but I’m an adult so lol why bother diagnosing—", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470337441921253376, + "in_reply_to_status_id_str": "470337441921253376", + "in_reply_to_user_id": 485288297, + "in_reply_to_user_id_str": "485288297", + "in_reply_to_screen_name": "Jennimason0990", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 22:55:54 +0000 2014", + "id": 470337423806042112, + "id_str": "470337423806042112", + "text": "@jeremiahfelt @DrPizza he is the motivator of the discussion, yes", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470337177927176192, + "in_reply_to_status_id_str": "470337177927176192", + "in_reply_to_user_id": 9154112, + "in_reply_to_user_id_str": "9154112", + "in_reply_to_screen_name": "jeremiahfelt", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 22:54:42 +0000 2014", + "id": 470337119794503680, + "id_str": "470337119794503680", + "text": "@Jennimason0990 I think MRA ideology targets young spectrum men and offers them the hope of something external to blame", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470336616784220161, + "in_reply_to_status_id_str": "470336616784220161", + "in_reply_to_user_id": 485288297, + "in_reply_to_user_id_str": "485288297", + "in_reply_to_screen_name": "Jennimason0990", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 22:50:30 +0000 2014", + "id": 470336064599511040, + "id_str": "470336064599511040", + "text": "@Jennimason0990 I don’t know why he’d have contact with social workers but allegedly he’s spectrum so that may be why", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470335644041216000, + "in_reply_to_status_id_str": "470335644041216000", + "in_reply_to_user_id": 485288297, + "in_reply_to_user_id_str": "485288297", + "in_reply_to_screen_name": "Jennimason0990", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 22:47:53 +0000 2014", + "id": 470335405003649025, + "id_str": "470335405003649025", + "text": "@DrPizza this is a solution in one sense and a whole new can of ugly worms in another", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470335239488032768, + "in_reply_to_status_id_str": "470335239488032768", + "in_reply_to_user_id": 11375732, + "in_reply_to_user_id_str": "11375732", + "in_reply_to_screen_name": "DrPizza", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 22:46:13 +0000 2014", + "id": 470334986168827904, + "id_str": "470334986168827904", + "text": "@DrPizza … I don’t know what this means", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470334915138318336, + "in_reply_to_status_id_str": "470334915138318336", + "in_reply_to_user_id": 11375732, + "in_reply_to_user_id_str": "11375732", + "in_reply_to_screen_name": "DrPizza", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 22:45:43 +0000 2014", + "id": 470334860545261569, + "id_str": "470334860545261569", + "text": "Murderer’s parents AND his social worker called the cops beforehand. But we genuinely still have NO IDEA how to defuse such people 😔", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 8, + "favorite_count": 10, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 22:17:27 +0000 2014", + "id": 470327746066124802, + "id_str": "470327746066124802", + "text": "RT @pushinghoops: rt if you've ever prolonged your interaction w a guy out of fear that rejecting him might enrage him further", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sat May 24 17:04:49 +0000 2014", + "id": 470249070150582273, + "id_str": "470249070150582273", + "text": "rt if you've ever prolonged your interaction w a guy out of fear that rejecting him might enrage him further", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 108441652, + "id_str": "108441652" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1812, + "favorite_count": 1160, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 1812, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 22:15:34 +0000 2014", + "id": 470327271942000640, + "id_str": "470327271942000640", + "text": "@eevee but then I might find out you’re not *really* an eevee", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470315228526166017, + "in_reply_to_status_id_str": "470315228526166017", + "in_reply_to_user_id": 14412937, + "in_reply_to_user_id_str": "14412937", + "in_reply_to_screen_name": "eevee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 22:14:04 +0000 2014", + "id": 470326892693032960, + "id_str": "470326892693032960", + "text": "@RichardR well yes, but I’m assuming a threshold value here anyway, not a binary activity/no activity", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470326616632348672, + "in_reply_to_status_id_str": "470326616632348672", + "in_reply_to_user_id": 12716732, + "in_reply_to_user_id_str": "12716732", + "in_reply_to_screen_name": "RichardR", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 22:11:41 +0000 2014", + "id": 470326292869824513, + "id_str": "470326292869824513", + "text": "@jonelf most incidents are petty desperation but there’s still a core of actual professional thieves", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470325829873176576, + "in_reply_to_status_id_str": "470325829873176576", + "in_reply_to_user_id": 18484240, + "in_reply_to_user_id_str": "18484240", + "in_reply_to_screen_name": "jonelf", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 22:09:55 +0000 2014", + "id": 470325849158606851, + "id_str": "470325849158606851", + "text": "What I’m saying is that if your ISP complains, say all that bandwidth is to deter thieves by making it seem like you’re watching netflix.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 8, + "favorite_count": 13, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 22:09:11 +0000 2014", + "id": 470325666974806017, + "id_str": "470325666974806017", + "text": "@codedit personal devices that are merely *on* but not in use generate minimal traffic. Unless you’re like, torrenting game of thrones", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470325460338245632, + "in_reply_to_status_id_str": "470325460338245632", + "in_reply_to_user_id": 171054188, + "in_reply_to_user_id_str": "171054188", + "in_reply_to_screen_name": "codedit", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 22:07:26 +0000 2014", + "id": 470325224475721730, + "id_str": "470325224475721730", + "text": "@jwatte most thievery by incident rate is opportunistic but the stuff that hits hardest is professionally planned", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470324938000171008, + "in_reply_to_status_id_str": "470324938000171008", + "in_reply_to_user_id": 27054163, + "in_reply_to_user_id_str": "27054163", + "in_reply_to_screen_name": "jwatte", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 22:06:18 +0000 2014", + "id": 470324939476971523, + "id_str": "470324939476971523", + "text": "@RichardR lots of people have Bluetooth keyboards and mice. Will generate a constant low bandwidth stream when the computer is in use", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470324719116627970, + "in_reply_to_status_id_str": "470324719116627970", + "in_reply_to_user_id": 12716732, + "in_reply_to_user_id_str": "12716732", + "in_reply_to_screen_name": "RichardR", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 22:04:18 +0000 2014", + "id": 470324437653659648, + "id_str": "470324437653659648", + "text": "@JoelBjurman you don’t need to know whose house it is to do this as long as it’s not a cramped apartment area.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470324130055991296, + "in_reply_to_status_id_str": "470324130055991296", + "in_reply_to_user_id": 1104138416, + "in_reply_to_user_id_str": "1104138416", + "in_reply_to_screen_name": "JoelBjurman", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 22:03:48 +0000 2014", + "id": 470324310436237312, + "id_str": "470324310436237312", + "text": "@n0x00 I mean checking if the activity level (packets) as observable over the air is significantly above zero or not.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470323979354664960, + "in_reply_to_status_id_str": "470323979354664960", + "in_reply_to_user_id": 110082356, + "in_reply_to_user_id_str": "110082356", + "in_reply_to_screen_name": "n0x00", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 22:02:47 +0000 2014", + "id": 470324053593845760, + "id_str": "470324053593845760", + "text": "@Blewweh thinking what hackers will do is my job :)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470323861842821120, + "in_reply_to_status_id_str": "470323861842821120", + "in_reply_to_user_id": 399367605, + "in_reply_to_user_id_str": "399367605", + "in_reply_to_screen_name": "Blewweh", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 22:00:39 +0000 2014", + "id": 470323516013690881, + "id_str": "470323516013690881", + "text": "@masanbol @xkeepah attention @eevee your prophecy came true", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470302388335542272, + "in_reply_to_status_id_str": "470302388335542272", + "in_reply_to_user_id": 16549072, + "in_reply_to_user_id_str": "16549072", + "in_reply_to_screen_name": "masanbol", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 22:00:07 +0000 2014", + "id": 470323382962384898, + "id_str": "470323382962384898", + "text": "(Thieves don’t read this) Are there any thieves who look for wifi or bluetooth activity levels to determine whether anyone’s home?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 17, + "favorite_count": 20, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 21:51:48 +0000 2014", + "id": 470321292705804288, + "id_str": "470321292705804288", + "text": "@glassresistor hmm, given the extended context, I \"get\" why they asked but digging into your twitter history seems *weird*", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 470320902681268224, + "in_reply_to_status_id_str": "470320902681268224", + "in_reply_to_user_id": 240102930, + "in_reply_to_user_id_str": "240102930", + "in_reply_to_screen_name": "glassresistor", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 21:51:48 +0000 2014", + "id": 470321292705804288, + "id_str": "470321292705804288", + "text": "@glassresistor hmm, given the extended context, I \"get\" why they asked but digging into your twitter history seems *weird*", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 470320902681268224, + "in_reply_to_status_id_str": "470320902681268224", + "in_reply_to_user_id": 240102930, + "in_reply_to_user_id_str": "240102930", + "in_reply_to_screen_name": "glassresistor", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 21:45:01 +0000 2014", + "id": 470319582595776512, + "id_str": "470319582595776512", + "text": "@glassresistor @ddribin if that was for any reason except to figure out how to pronoun you in a third person address that’s extremely creepy", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470319244849070080, + "in_reply_to_status_id_str": "470319244849070080", + "in_reply_to_user_id": 240102930, + "in_reply_to_user_id_str": "240102930", + "in_reply_to_screen_name": "glassresistor", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 21:42:01 +0000 2014", + "id": 470318826882883585, + "id_str": "470318826882883585", + "text": ".@ddribin @geekable if anyone ever pulls this on me I will flip out", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470297035153747968, + "in_reply_to_status_id_str": "470297035153747968", + "in_reply_to_user_id": 4885071, + "in_reply_to_user_id_str": "4885071", + "in_reply_to_screen_name": "ddribin", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 21:41:22 +0000 2014", + "id": 470318664814985216, + "id_str": "470318664814985216", + "text": "RT @ddribin: Hotel: \"Oh I recognize you from your picture!\"\nMe: \"I don't remember sending you a picture.\"\nH: \"We research our guests before…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sat May 24 20:15:25 +0000 2014", + "id": 470297035153747968, + "id_str": "470297035153747968", + "text": "Hotel: \"Oh I recognize you from your picture!\"\nMe: \"I don't remember sending you a picture.\"\nH: \"We research our guests before they arrive.\"", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 4885071, + "id_str": "4885071" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 36, + "favorite_count": 20, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 36, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 20:56:57 +0000 2014", + "id": 470307488483393536, + "id_str": "470307488483393536", + "text": "Hahahaha allegedly one of the pirate copies of Watch Dogs is bundled with a bitcoin miner", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 21, + "favorite_count": 25, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 20:27:39 +0000 2014", + "id": 470300113622290432, + "id_str": "470300113622290432", + "text": "@ErrataRob we already moved from one bedroom to two and it increased our rent by $500/mo ( #TMI )", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 470299566345302017, + "in_reply_to_status_id_str": "470299566345302017", + "in_reply_to_user_id": 15300995, + "in_reply_to_user_id_str": "15300995", + "in_reply_to_screen_name": "ErrataRob", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 20:26:30 +0000 2014", + "id": 470299823057272832, + "id_str": "470299823057272832", + "text": "@Kufat @m1sp Like I said I very specifically knew this would happen, it was completely deliberate", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 470299434610208768, + "in_reply_to_status_id_str": "470299434610208768", + "in_reply_to_user_id": 207691003, + "in_reply_to_user_id_str": "207691003", + "in_reply_to_screen_name": "Kufat", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 20:22:35 +0000 2014", + "id": 470298836452118528, + "id_str": "470298836452118528", + "text": "So as a result I'm in a constant state of anxiety and guilt about my own house hahahahahahahaha*twitch*", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 20:21:54 +0000 2014", + "id": 470298664477261824, + "id_str": "470298664477261824", + "text": "Some combination of disabling comms ducking, killing Steam, and restarting Chrome may have solved my volume problem. Maybe.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 20:20:50 +0000 2014", + "id": 470298398214881280, + "id_str": "470298398214881280", + "text": "I have this mental block issue where I both really don't want to clean up and really don't want everything to be so cluttered", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 5, + "favorite_count": 9, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 20:20:05 +0000 2014", + "id": 470298209160400896, + "id_str": "470298209160400896", + "text": "@zhuowei :o", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 470297921200455680, + "in_reply_to_status_id_str": "470297921200455680", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Sat May 24 20:18:04 +0000 2014", + "id": 470297701301899264, + "id_str": "470297701301899264", + "text": "@zhuowei yes", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 470297472690962432, + "in_reply_to_status_id_str": "470297472690962432", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Sat May 24 20:12:50 +0000 2014", + "id": 470296385745866752, + "id_str": "470296385745866752", + "text": "@m1sp nah I spent all my emotion points on MRAs. I knew what I was getting into though", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470296251729080320, + "in_reply_to_status_id_str": "470296251729080320", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 20:10:34 +0000 2014", + "id": 470295814326468608, + "id_str": "470295814326468608", + "text": "@m1sp schatje ;-;", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "nl" + }, + { + "created_at": "Sat May 24 20:04:42 +0000 2014", + "id": 470294339793723392, + "id_str": "470294339793723392", + "text": "Today’s goal is to get the living room, just the living room, not a horrible wreck. I… I can do this!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 7, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 20:03:43 +0000 2014", + "id": 470294088903032832, + "id_str": "470294088903032832", + "text": "@Packetknife don’t discount the ability of the internet to unify and strengthen a scattered minority (for good or ill)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470293885097639936, + "in_reply_to_status_id_str": "470293885097639936", + "in_reply_to_user_id": 19564254, + "in_reply_to_user_id_str": "19564254", + "in_reply_to_screen_name": "Packetknife", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 19:59:55 +0000 2014", + "id": 470293134791168001, + "id_str": "470293134791168001", + "text": "@Packetknife clearly they’re not all gonna murder someone but this is only going to happen again", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470292215982723072, + "in_reply_to_status_id_str": "470292215982723072", + "in_reply_to_user_id": 19564254, + "in_reply_to_user_id_str": "19564254", + "in_reply_to_screen_name": "Packetknife", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 19:59:18 +0000 2014", + "id": 470292977014022144, + "id_str": "470292977014022144", + "text": "@Packetknife and there is this subculture under MRA banner of men who are angry they’re not being sexed up like they “deserve”.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470292215982723072, + "in_reply_to_status_id_str": "470292215982723072", + "in_reply_to_user_id": 19564254, + "in_reply_to_user_id_str": "19564254", + "in_reply_to_screen_name": "Packetknife", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 19:58:36 +0000 2014", + "id": 470292802413551616, + "id_str": "470292802413551616", + "text": "@Packetknife what I’m saying is, he very specifically blamed women for not sexing him up like he deserved as his motivation for murder", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470292215982723072, + "in_reply_to_status_id_str": "470292215982723072", + "in_reply_to_user_id": 19564254, + "in_reply_to_user_id_str": "19564254", + "in_reply_to_screen_name": "Packetknife", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 19:57:47 +0000 2014", + "id": 470292597383376896, + "id_str": "470292597383376896", + "text": "@Packetknife I’m not sure I follow. Sure he *might* be genuinely crazy/drug-addled but his manifesto uses MRA terminology and ideas", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470292215982723072, + "in_reply_to_status_id_str": "470292215982723072", + "in_reply_to_user_id": 19564254, + "in_reply_to_user_id_str": "19564254", + "in_reply_to_screen_name": "Packetknife", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 19:54:27 +0000 2014", + "id": 470291758967173120, + "id_str": "470291758967173120", + "text": "@Packetknife the kid who shot up that town in California last night was pretty clearly MRA influenced even if they didn’t *mean* for this.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470290866507378689, + "in_reply_to_status_id_str": "470290866507378689", + "in_reply_to_user_id": 19564254, + "in_reply_to_user_id_str": "19564254", + "in_reply_to_screen_name": "Packetknife", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 19:53:10 +0000 2014", + "id": 470291434877489152, + "id_str": "470291434877489152", + "text": "@Packetknife you can check http://t.co/i5ladCMjcL for some documenting of the more extreme elements", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470290866507378689, + "in_reply_to_status_id_str": "470290866507378689", + "in_reply_to_user_id": 19564254, + "in_reply_to_user_id_str": "19564254", + "in_reply_to_screen_name": "Packetknife", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 19:51:22 +0000 2014", + "id": 470290982656032768, + "id_str": "470290982656032768", + "text": "@Packetknife who then model obtaining sex as this sort of adversarial relationship against women, who are withholding it out of spite ofc", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470289934226845696, + "in_reply_to_status_id_str": "470289934226845696", + "in_reply_to_user_id": 19564254, + "in_reply_to_user_id_str": "19564254", + "in_reply_to_screen_name": "Packetknife", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 19:50:04 +0000 2014", + "id": 470290656276250624, + "id_str": "470290656276250624", + "text": "@Packetknife many are fairly tame about it but there are sizable factions of young men angry they can’t seem to get laid because feminism", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470289934226845696, + "in_reply_to_status_id_str": "470289934226845696", + "in_reply_to_user_id": 19564254, + "in_reply_to_user_id_str": "19564254", + "in_reply_to_screen_name": "Packetknife", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 19:48:50 +0000 2014", + "id": 470290344069050369, + "id_str": "470290344069050369", + "text": "@Packetknife MRA is a euphemism (chosen by themselves) for anti-feminism, usually presented in terms of restoring manliness.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470289934226845696, + "in_reply_to_status_id_str": "470289934226845696", + "in_reply_to_user_id": 19564254, + "in_reply_to_user_id_str": "19564254", + "in_reply_to_screen_name": "Packetknife", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 19:44:55 +0000 2014", + "id": 470289360538312704, + "id_str": "470289360538312704", + "text": "@Packetknife but that’s also a concern of feminism yet they aren’t generally inclined to work with us because, as mothers, we’re the enemy", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470288309592547329, + "in_reply_to_status_id_str": "470288309592547329", + "in_reply_to_user_id": 19564254, + "in_reply_to_user_id_str": "19564254", + "in_reply_to_screen_name": "Packetknife", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 19:44:14 +0000 2014", + "id": 470289186118172672, + "id_str": "470289186118172672", + "text": "@Packetknife IMO, MRAs have one really good point, and that is fathers being treated unfairly vs. mothers by the court system", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470288309592547329, + "in_reply_to_status_id_str": "470288309592547329", + "in_reply_to_user_id": 19564254, + "in_reply_to_user_id_str": "19564254", + "in_reply_to_screen_name": "Packetknife", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 19:41:40 +0000 2014", + "id": 470288539914342400, + "id_str": "470288539914342400", + "text": "@Packetknife http://t.co/Y8K9KgMHKf obviously not every single person there is totally bonkers but this is a high visibility hub", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470287965068197890, + "in_reply_to_status_id_str": "470287965068197890", + "in_reply_to_user_id": 19564254, + "in_reply_to_user_id_str": "19564254", + "in_reply_to_screen_name": "Packetknife", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 19:28:41 +0000 2014", + "id": 470285275697254400, + "id_str": "470285275697254400", + "text": "@dan_crowley @hypatiadotca “girls won’t put out for you?? Man you need to take control and make them give you what you deserve”", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470284807281201152, + "in_reply_to_status_id_str": "470284807281201152", + "in_reply_to_user_id": 20532907, + "in_reply_to_user_id_str": "20532907", + "in_reply_to_screen_name": "dan_crowley", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 19:28:09 +0000 2014", + "id": 470285140082847744, + "id_str": "470285140082847744", + "text": "@dan_crowley @hypatiadotca their philosophy is basically custom-tailored to radicalize people with otherwise manageable mental health issues", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470284807281201152, + "in_reply_to_status_id_str": "470284807281201152", + "in_reply_to_user_id": 20532907, + "in_reply_to_user_id_str": "20532907", + "in_reply_to_screen_name": "dan_crowley", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 19:27:11 +0000 2014", + "id": 470284895793979392, + "id_str": "470284895793979392", + "text": "@Furyhunter nope!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470284768563572736, + "in_reply_to_status_id_str": "470284768563572736", + "in_reply_to_user_id": 34740894, + "in_reply_to_user_id_str": "34740894", + "in_reply_to_screen_name": "Furyhunter", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "lv" + }, + { + "created_at": "Sat May 24 19:24:22 +0000 2014", + "id": 470284189187964928, + "id_str": "470284189187964928", + "text": "@dan_crowley @hypatiadotca no-one advocates murder but they do advocate “stop being a p*ssy and take control of how women treat you”", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470283928331251712, + "in_reply_to_status_id_str": "470283928331251712", + "in_reply_to_user_id": 20532907, + "in_reply_to_user_id_str": "20532907", + "in_reply_to_screen_name": "dan_crowley", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 19:23:17 +0000 2014", + "id": 470283915509628928, + "id_str": "470283915509628928", + "text": "@omf scratch that idea", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470283125961281536, + "in_reply_to_status_id_str": "470283125961281536", + "in_reply_to_user_id": 14471241, + "in_reply_to_user_id_str": "14471241", + "in_reply_to_screen_name": "omf", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 19:22:25 +0000 2014", + "id": 470283696860569600, + "id_str": "470283696860569600", + "text": "@omf doesn’t seem to. I just decided the problem is probably steam being terrible though (it’s open and idling)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470283125961281536, + "in_reply_to_status_id_str": "470283125961281536", + "in_reply_to_user_id": 14471241, + "in_reply_to_user_id_str": "14471241", + "in_reply_to_screen_name": "omf", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 19:18:37 +0000 2014", + "id": 470282740722847744, + "id_str": "470282740722847744", + "text": "@omf it’s not cutting, it’s ducking to a lower volume like when you get skype calls or whatever", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470282386157363200, + "in_reply_to_status_id_str": "470282386157363200", + "in_reply_to_user_id": 14471241, + "in_reply_to_user_id_str": "14471241", + "in_reply_to_screen_name": "omf", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 19:16:48 +0000 2014", + "id": 470282281970851841, + "id_str": "470282281970851841", + "text": "@Furyhunter I’ll try that, but there’s no communications that I know of", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470282019335725056, + "in_reply_to_status_id_str": "470282019335725056", + "in_reply_to_user_id": 34740894, + "in_reply_to_user_id_str": "34740894", + "in_reply_to_screen_name": "Furyhunter", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 19:15:45 +0000 2014", + "id": 470282021194174464, + "id_str": "470282021194174464", + "text": "On a scale of seconds that is, like, several times a minute the volume will drop for a second or two.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 19:14:03 +0000 2014", + "id": 470281591642923008, + "id_str": "470281591642923008", + "text": "My windows laptop does this thing where, when the headphones aren’t plugged in, it randomly ducks volume and I can’t figure out why", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 19:09:02 +0000 2014", + "id": 470280329404878848, + "id_str": "470280329404878848", + "text": "@zhuowei lol", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470279415155261441, + "in_reply_to_status_id_str": "470279415155261441", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Sat May 24 19:08:39 +0000 2014", + "id": 470280232629727232, + "id_str": "470280232629727232", + "text": "@Tuplet failing to criticize them will only let the worst corners of their movement fester and feed unhindered", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470279610081370112, + "in_reply_to_status_id_str": "470279610081370112", + "in_reply_to_user_id": 34310651, + "in_reply_to_user_id_str": "34310651", + "in_reply_to_screen_name": "Tuplet", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 19:07:46 +0000 2014", + "id": 470280010155446272, + "id_str": "470280010155446272", + "text": "@Tuplet they named themselves, and they exist whether you know about them or not: heck, one might even up and murder strangers.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470279610081370112, + "in_reply_to_status_id_str": "470279610081370112", + "in_reply_to_user_id": 34310651, + "in_reply_to_user_id_str": "34310651", + "in_reply_to_screen_name": "Tuplet", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 19:02:25 +0000 2014", + "id": 470278665767772161, + "id_str": "470278665767772161", + "text": "@dan_crowley which is not to say all MRAs are one twitch away from mass murder but that this outcome is foreseeable in the extreme case", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470275053909581824, + "in_reply_to_status_id_str": "470275053909581824", + "in_reply_to_user_id": 20532907, + "in_reply_to_user_id_str": "20532907", + "in_reply_to_screen_name": "dan_crowley", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 18:58:01 +0000 2014", + "id": 470277557406158848, + "id_str": "470277557406158848", + "text": "@dan_crowley and actively and specifically glorifying of violent attitudes as manly.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470275053909581824, + "in_reply_to_status_id_str": "470275053909581824", + "in_reply_to_user_id": 20532907, + "in_reply_to_user_id_str": "20532907", + "in_reply_to_screen_name": "dan_crowley", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 18:57:42 +0000 2014", + "id": 470277476598697984, + "id_str": "470277476598697984", + "text": "@dan_crowley the MRAs I have come into contact with are actively and specifically adversarial to my gender", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470275053909581824, + "in_reply_to_status_id_str": "470275053909581824", + "in_reply_to_user_id": 20532907, + "in_reply_to_user_id_str": "20532907", + "in_reply_to_screen_name": "dan_crowley", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 18:52:25 +0000 2014", + "id": 470276145707905024, + "id_str": "470276145707905024", + "text": "@acfoltzer @eevee well the whole thing pretty much is a scam preying on insecurities but I suspect tier 2 isn't enlightenment", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 470275192057372672, + "in_reply_to_status_id_str": "470275192057372672", + "in_reply_to_user_id": 14234848, + "in_reply_to_user_id_str": "14234848", + "in_reply_to_screen_name": "acfoltzer", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 18:48:30 +0000 2014", + "id": 470275162714013696, + "id_str": "470275162714013696", + "text": "@drunknbass they've already been uninvited for a year now. Not banned, but uninvited. I don't think banning would be constructive.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 470274917208834048, + "in_reply_to_status_id_str": "470274917208834048", + "in_reply_to_user_id": 16604957, + "in_reply_to_user_id_str": "16604957", + "in_reply_to_screen_name": "drunknbass", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 18:39:56 +0000 2014", + "id": 470273007701983232, + "id_str": "470273007701983232", + "text": "Well, today is the day a lot of people learned the term “MRA” and looked up what they believe in!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 6, + "favorite_count": 10, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 18:38:32 +0000 2014", + "id": 470272654545780736, + "id_str": "470272654545780736", + "text": "@xkeepah the MRAs are scrambling to come up with excuses like he just wasn’t MRA enough", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470271679738810368, + "in_reply_to_status_id_str": "470271679738810368", + "in_reply_to_user_id": 61653331, + "in_reply_to_user_id_str": "61653331", + "in_reply_to_screen_name": "xkeepah", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 18:34:06 +0000 2014", + "id": 470271538554765312, + "id_str": "470271538554765312", + "text": "http://t.co/108jV6nVPt <— I am opposed to my government deciding who can and can’t attend Def Con. If there’s no warrant there’s no problem", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 26, + "favorite_count": 12, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 18:31:24 +0000 2014", + "id": 470270857336848385, + "id_str": "470270857336848385", + "text": "@xkeepah last night technically buuuuut yeah.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470270381480103936, + "in_reply_to_status_id_str": "470270381480103936", + "in_reply_to_user_id": 61653331, + "in_reply_to_user_id_str": "61653331", + "in_reply_to_screen_name": "xkeepah", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 18:28:53 +0000 2014", + "id": 470270224802250752, + "id_str": "470270224802250752", + "text": "@eevee I’m also puzzled by how this person keeps using MRA and PUA terminology while simultaneously distancing himself from them like wut", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470269882039152640, + "in_reply_to_status_id_str": "470269882039152640", + "in_reply_to_user_id": 14412937, + "in_reply_to_user_id_str": "14412937", + "in_reply_to_screen_name": "eevee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 18:25:48 +0000 2014", + "id": 470269450902851585, + "id_str": "470269450902851585", + "text": "@eevee (this is not a request to engage, he’s highly engaged, I just needed to tell someone)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 14412937, + "in_reply_to_user_id_str": "14412937", + "in_reply_to_screen_name": "eevee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 18:25:26 +0000 2014", + "id": 470269356535185408, + "id_str": "470269356535185408", + "text": "@eevee venting: an MRA is filling my mentions tab with how if only this kid had been a better MRA he’d have been alpha and swimming in babes", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 14412937, + "in_reply_to_user_id_str": "14412937", + "in_reply_to_screen_name": "eevee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 18:01:59 +0000 2014", + "id": 470263456269365248, + "id_str": "470263456269365248", + "text": "@DoktorJeep @mollycrabapple @octal but MRA and PUA ideas are inherently toxic adversarial models of human interaction", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470263127838175232, + "in_reply_to_status_id_str": "470263127838175232", + "in_reply_to_user_id": 135258477, + "in_reply_to_user_id_str": "135258477", + "in_reply_to_screen_name": "DoktorJeep", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 18:01:23 +0000 2014", + "id": 470263304917897218, + "id_str": "470263304917897218", + "text": "@DoktorJeep @mollycrabapple @octal oh my gods nobody said that all MRAs and PUAs have the failure mode of mass murder", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470263127838175232, + "in_reply_to_status_id_str": "470263127838175232", + "in_reply_to_user_id": 135258477, + "in_reply_to_user_id_str": "135258477", + "in_reply_to_screen_name": "DoktorJeep", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 17:53:06 +0000 2014", + "id": 470261219065348096, + "id_str": "470261219065348096", + "text": "@DoktorJeep @octal @mollycrabapple no offense but your use of MRA terminology & mindset shows you are precisely part of the culture problem", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470260834191413248, + "in_reply_to_status_id_str": "470260834191413248", + "in_reply_to_user_id": 135258477, + "in_reply_to_user_id_str": "135258477", + "in_reply_to_screen_name": "DoktorJeep", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 17:47:57 +0000 2014", + "id": 470259923771994112, + "id_str": "470259923771994112", + "text": "@DoktorJeep @mollycrabapple …… and IMO categorizing men as alpha and beta is only actively contributing to the culture problem :|", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470259559479529472, + "in_reply_to_status_id_str": "470259559479529472", + "in_reply_to_user_id": 135258477, + "in_reply_to_user_id_str": "135258477", + "in_reply_to_screen_name": "DoktorJeep", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 17:47:25 +0000 2014", + "id": 470259790317625344, + "id_str": "470259790317625344", + "text": "@DoktorJeep @mollycrabapple “learning game” is largely a myth to begin with, used to reap book sales off the desperate", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470259238044856320, + "in_reply_to_status_id_str": "470259238044856320", + "in_reply_to_user_id": 135258477, + "in_reply_to_user_id_str": "135258477", + "in_reply_to_screen_name": "DoktorJeep", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 17:45:39 +0000 2014", + "id": 470259343905288192, + "id_str": "470259343905288192", + "text": ".@mollycrabapple @eevee if only there was a way to let a guy know he’s giving off murderer vibes without risking being suddenly murdered :\\", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470241068454518784, + "in_reply_to_status_id_str": "470241068454518784", + "in_reply_to_user_id": 15644999, + "in_reply_to_user_id_str": "15644999", + "in_reply_to_screen_name": "mollycrabapple", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 5, + "favorite_count": 11, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 17:42:27 +0000 2014", + "id": 470258538280140801, + "id_str": "470258538280140801", + "text": "RT @mollycrabapple: Do MRA terrorists who murder women for refusing to fuck them ever think they're not getting sex cause they come off as …", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sat May 24 16:33:02 +0000 2014", + "id": 470241068454518784, + "id_str": "470241068454518784", + "text": "Do MRA terrorists who murder women for refusing to fuck them ever think they're not getting sex cause they come off as future serial killers", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 15644999, + "id_str": "15644999" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 489, + "favorite_count": 485, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 489, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 17:41:11 +0000 2014", + "id": 470258219685007360, + "id_str": "470258219685007360", + "text": "RT @sciencecomic: Another FYI while I'm at it- Trying to be supportive by attacking the shooters masculinity? You're actually part of the g…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sat May 24 16:57:42 +0000 2014", + "id": 470247276901072896, + "id_str": "470247276901072896", + "text": "Another FYI while I'm at it- Trying to be supportive by attacking the shooters masculinity? You're actually part of the greater problem.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 222302211, + "id_str": "222302211" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 18, + "favorite_count": 28, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 18, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 17:39:57 +0000 2014", + "id": 470257910304751618, + "id_str": "470257910304751618", + "text": "@DrPizza @MarkMruss rather stuck in a state of “I don’t know what to do about this kid” for years on end of vague worry", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470257068340162562, + "in_reply_to_status_id_str": "470257068340162562", + "in_reply_to_user_id": 11375732, + "in_reply_to_user_id_str": "11375732", + "in_reply_to_screen_name": "DrPizza", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 17:39:20 +0000 2014", + "id": 470257756206030849, + "id_str": "470257756206030849", + "text": "@DrPizza @MarkMruss I read a really long piece about the father of the Sandy Hook murderer. Doesn’t seem he did anything wrong in particular", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470257068340162562, + "in_reply_to_status_id_str": "470257068340162562", + "in_reply_to_user_id": 11375732, + "in_reply_to_user_id_str": "11375732", + "in_reply_to_screen_name": "DrPizza", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 17:32:31 +0000 2014", + "id": 470256040756645890, + "id_str": "470256040756645890", + "text": "@DrPizza @MarkMruss I was referring to in general. I hadn’t read anything about his parents in particular. Maybe they did really try…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470255726397775872, + "in_reply_to_status_id_str": "470255726397775872", + "in_reply_to_user_id": 11375732, + "in_reply_to_user_id_str": "11375732", + "in_reply_to_screen_name": "DrPizza", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 17:30:49 +0000 2014", + "id": 470255613717803008, + "id_str": "470255613717803008", + "text": "@MarkMruss @DrPizza it really depends on the sort of parents. (After all, most people still live at home at 22 these days afaict)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470243541177081856, + "in_reply_to_status_id_str": "470243541177081856", + "in_reply_to_user_id": 348552824, + "in_reply_to_user_id_str": "348552824", + "in_reply_to_screen_name": "MarkMruss", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 17:26:36 +0000 2014", + "id": 470254551803908096, + "id_str": "470254551803908096", + "text": "RT @stavvers: If you wondered how long it'd be till a Pookip councillor got investigated for racism and homophobia, answer's a day http://t…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sat May 24 16:11:54 +0000 2014", + "id": 470235750093824000, + "id_str": "470235750093824000", + "text": "If you wondered how long it'd be till a Pookip councillor got investigated for racism and homophobia, answer's a day http://t.co/wnNqvsexh3", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 67319718, + "id_str": "67319718" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 28, + "favorite_count": 6, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/wnNqvsexh3", + "expanded_url": "http://www.pinknews.co.uk/2014/05/24/newly-elected-ukip-councillor-under-investigation-for-claiming-poofs-and-dykes-are-perverts/", + "display_url": "pinknews.co.uk/2014/05/24/new…", + "indices": [ + 117, + 139 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 28, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 17:24:12 +0000 2014", + "id": 470253946087686144, + "id_str": "470253946087686144", + "text": "@GreenPirate_org everything but. I do own a nexus 7 which is the least awful android device but my husband uses it these days", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 470253798720405506, + "in_reply_to_status_id_str": "470253798720405506", + "in_reply_to_user_id": 213296734, + "in_reply_to_user_id_str": "213296734", + "in_reply_to_screen_name": "GreenPirate_org", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 17:21:14 +0000 2014", + "id": 470253201724145664, + "id_str": "470253201724145664", + "text": "@GreenPirate_org well the name suggests it's for android so probably not", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 470252807933526016, + "in_reply_to_status_id_str": "470252807933526016", + "in_reply_to_user_id": 213296734, + "in_reply_to_user_id_str": "213296734", + "in_reply_to_screen_name": "GreenPirate_org", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 17:16:18 +0000 2014", + "id": 470251957836210177, + "id_str": "470251957836210177", + "text": "@ArtByAlida @GreenPirate_org I was, however, mocking Men's Rights Activists.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 470251112470044672, + "in_reply_to_status_id_str": "470251112470044672", + "in_reply_to_user_id": 15662838, + "in_reply_to_user_id_str": "15662838", + "in_reply_to_screen_name": "ArtByAlida", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 17:16:02 +0000 2014", + "id": 470251891041902592, + "id_str": "470251891041902592", + "text": "@ArtByAlida @GreenPirate_org nor was I ever mocking men, the vast majority of whom are not Men's Rights Activists, because they have decency", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 470251112470044672, + "in_reply_to_status_id_str": "470251112470044672", + "in_reply_to_user_id": 15662838, + "in_reply_to_user_id_str": "15662838", + "in_reply_to_screen_name": "ArtByAlida", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 17:15:33 +0000 2014", + "id": 470251771630477312, + "id_str": "470251771630477312", + "text": "@ArtByAlida @GreenPirate_org um.... I feel like there might have been a massive disconnect somewhere, I was never joking about the murderer", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 470251112470044672, + "in_reply_to_status_id_str": "470251112470044672", + "in_reply_to_user_id": 15662838, + "in_reply_to_user_id_str": "15662838", + "in_reply_to_screen_name": "ArtByAlida", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 17:09:02 +0000 2014", + "id": 470250129875042304, + "id_str": "470250129875042304", + "text": "@ArtByAlida @GreenPirate_org um, what? I defined MRA for you", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 470249993299701760, + "in_reply_to_status_id_str": "470249993299701760", + "in_reply_to_user_id": 15662838, + "in_reply_to_user_id_str": "15662838", + "in_reply_to_screen_name": "ArtByAlida", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 17:04:36 +0000 2014", + "id": 470249014500548608, + "id_str": "470249014500548608", + "text": "@null_ptr men's rights activist", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 470248870576795648, + "in_reply_to_status_id_str": "470248870576795648", + "in_reply_to_user_id": 64901517, + "in_reply_to_user_id_str": "64901517", + "in_reply_to_screen_name": "null_ptr", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 17:03:55 +0000 2014", + "id": 470248843893047296, + "id_str": "470248843893047296", + "text": "@ArtByAlida @GreenPirate_org men's rights activist \n\nhelp help they're oppressing my right to oppress them", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 470248733599207425, + "in_reply_to_status_id_str": "470248733599207425", + "in_reply_to_user_id": 15662838, + "in_reply_to_user_id_str": "15662838", + "in_reply_to_screen_name": "ArtByAlida", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 17:02:49 +0000 2014", + "id": 470248563629256704, + "id_str": "470248563629256704", + "text": "RT @KJV_Programming: 13:18 And he said, I will not rend away all the kingdom; but they could not read the writing, nor make... http://t.co/…", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sat May 24 16:03:44 +0000 2014", + "id": 470233695777873921, + "id_str": "470233695777873921", + "text": "13:18 And he said, I will not rend away all the kingdom; but they could not read the writing, nor make... http://t.co/vCQlsRldnA", + "source": "Tumblr", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2209168532, + "id_str": "2209168532" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 1, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/vCQlsRldnA", + "expanded_url": "http://tmblr.co/ZPJihp1GlkSgl", + "display_url": "tmblr.co/ZPJihp1GlkSgl", + "indices": [ + 106, + 128 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 1, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 16:56:53 +0000 2014", + "id": 470247073338904577, + "id_str": "470247073338904577", + "text": "@ryansroberts they all live in the same first world I do, the context is they think it's \"manly\" to use fisticuffs as first resort.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 470246913758216193, + "in_reply_to_status_id_str": "470246913758216193", + "in_reply_to_user_id": 15612415, + "in_reply_to_user_id_str": "15612415", + "in_reply_to_screen_name": "ryansroberts", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 16:54:08 +0000 2014", + "id": 470246379042795520, + "id_str": "470246379042795520", + "text": "@andreasdotorg yeah, we're far enough in the news cycle that people have looked up his youtube subscriptions, forum accounts, etc", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 470246209823993856, + "in_reply_to_status_id_str": "470246209823993856", + "in_reply_to_user_id": 14285735, + "in_reply_to_user_id_str": "14285735", + "in_reply_to_screen_name": "andreasdotorg", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 16:53:27 +0000 2014", + "id": 470246209933037568, + "id_str": "470246209933037568", + "text": "(They responded with disbelief at a vision of a world where constant petty violence isn't around every corner.)", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 5, + "favorite_count": 9, + "favorited": true, + "retweeted": true, + "lang": "en" + }, + { + "created_at": "Sat May 24 16:53:05 +0000 2014", + "id": 470246114051244032, + "id_str": "470246114051244032", + "text": "(The only time I *posted* to an MRA forum was to say none of MY friends kept getting in bar fights and maybe they needed better friends)", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 5, + "favorite_count": 7, + "favorited": true, + "retweeted": true, + "lang": "en" + }, + { + "created_at": "Sat May 24 16:48:33 +0000 2014", + "id": 470244973380902912, + "id_str": "470244973380902912", + "text": "@kwanre well I'm not about to quit the internet so", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 470244729662480384, + "in_reply_to_status_id_str": "470244729662480384", + "in_reply_to_user_id": 1526102340, + "in_reply_to_user_id_str": "1526102340", + "in_reply_to_screen_name": "kwanre", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 16:47:17 +0000 2014", + "id": 470244657977634817, + "id_str": "470244657977634817", + "text": "@ral1sh what internet are you on that you *aren't* exposed to them", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 470244321044623360, + "in_reply_to_status_id_str": "470244321044623360", + "in_reply_to_user_id": 1166206466, + "in_reply_to_user_id_str": "1166206466", + "in_reply_to_screen_name": "ral1sh", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 16:45:05 +0000 2014", + "id": 470244101619589120, + "id_str": "470244101619589120", + "text": "@ral1sh I'm puzzled that you think me awaiting their new failures means I'm attempting to directly engage with them", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 470243975136153600, + "in_reply_to_status_id_str": "470243975136153600", + "in_reply_to_user_id": 1166206466, + "in_reply_to_user_id_str": "1166206466", + "in_reply_to_screen_name": "ral1sh", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 16:44:23 +0000 2014", + "id": 470243925987311616, + "id_str": "470243925987311616", + "text": "@kwanre Oh, just ignore them. I'm sure this exact thing won't happen again in six months at some other college", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 470243749994708992, + "in_reply_to_status_id_str": "470243749994708992", + "in_reply_to_user_id": 1526102340, + "in_reply_to_user_id_str": "1526102340", + "in_reply_to_screen_name": "kwanre", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 16:43:37 +0000 2014", + "id": 470243732756123648, + "id_str": "470243732756123648", + "text": "@ral1sh right, because ignoring them and letting them do their own little thing will definitely work out, this won't ever happen again", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 470243520960155649, + "in_reply_to_status_id_str": "470243520960155649", + "in_reply_to_user_id": 1166206466, + "in_reply_to_user_id_str": "1166206466", + "in_reply_to_screen_name": "ral1sh", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 16:43:05 +0000 2014", + "id": 470243597930205184, + "id_str": "470243597930205184", + "text": "It'd be fallacious to imply *all* MRAs are murderous psychopaths. Systematic glorification of faux \"manliness\" isn't *inherently* violent.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 5, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 16:41:35 +0000 2014", + "id": 470243221084590080, + "id_str": "470243221084590080", + "text": "@Kufat yes", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470242845170085888, + "in_reply_to_status_id_str": "470242845170085888", + "in_reply_to_user_id": 207691003, + "in_reply_to_user_id_str": "207691003", + "in_reply_to_screen_name": "Kufat", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Sat May 24 16:41:28 +0000 2014", + "id": 470243192735281154, + "id_str": "470243192735281154", + "text": "@ral1sh you know what’s also mind cancer? Getting shot in the head by a snapped MRA", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470243025986138112, + "in_reply_to_status_id_str": "470243025986138112", + "in_reply_to_user_id": 1166206466, + "in_reply_to_user_id_str": "1166206466", + "in_reply_to_screen_name": "ral1sh", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 16:39:35 +0000 2014", + "id": 470242719915585536, + "id_str": "470242719915585536", + "text": "Apparently an MRA snapped and murdered six people over being incel. I await some new lows in comments from MRA blogs and forums.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 16:27:41 +0000 2014", + "id": 470239725807497216, + "id_str": "470239725807497216", + "text": "@ayaz_khan but yeah I am really sorry the woefully inadequate xbox ruined it for you… they should never have shipped for it IMO", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470239302878642176, + "in_reply_to_status_id_str": "470239302878642176", + "in_reply_to_user_id": 15711296, + "in_reply_to_user_id_str": "15711296", + "in_reply_to_screen_name": "ayaz_khan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 16:26:53 +0000 2014", + "id": 470239523499409408, + "id_str": "470239523499409408", + "text": "@ayaz_khan the “scripting console” is only available on the PC version. Hence the pun about no consoles on consoles.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470239302878642176, + "in_reply_to_status_id_str": "470239302878642176", + "in_reply_to_user_id": 15711296, + "in_reply_to_user_id_str": "15711296", + "in_reply_to_screen_name": "ayaz_khan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 15:43:58 +0000 2014", + "id": 470228721996419072, + "id_str": "470228721996419072", + "text": "@hackerfantastic oh. Tweetbot problems.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470227887199883264, + "in_reply_to_status_id_str": "470227887199883264", + "in_reply_to_user_id": 19026149, + "in_reply_to_user_id_str": "19026149", + "in_reply_to_screen_name": "hackerfantastic", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "tl" + }, + { + "created_at": "Sat May 24 15:38:52 +0000 2014", + "id": 470227437172047872, + "id_str": "470227437172047872", + "text": "@hackerfantastic (I feel like this may be the wrong picture)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470211619692482560, + "in_reply_to_status_id_str": "470211619692482560", + "in_reply_to_user_id": 19026149, + "in_reply_to_user_id_str": "19026149", + "in_reply_to_screen_name": "hackerfantastic", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 15:26:12 +0000 2014", + "id": 470224249085759488, + "id_str": "470224249085759488", + "text": "RT @marktimemedia: By popular demand, Git Frost poetry poster for sale!! http://t.co/2cCADDKURv http://t.co/CNg9jpL2xU", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Fri May 23 19:05:19 +0000 2014", + "id": 469917005257375744, + "id_str": "469917005257375744", + "text": "By popular demand, Git Frost poetry poster for sale!! http://t.co/2cCADDKURv http://t.co/CNg9jpL2xU", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 469462640314421248, + "in_reply_to_status_id_str": "469462640314421248", + "in_reply_to_user_id": 140183551, + "in_reply_to_user_id_str": "140183551", + "in_reply_to_screen_name": "marktimemedia", + "user": { + "id": 140183551, + "id_str": "140183551" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 409, + "favorite_count": 332, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/2cCADDKURv", + "expanded_url": "http://www.mynameismichelle.com/shop", + "display_url": "mynameismichelle.com/shop", + "indices": [ + 54, + 76 + ] + } + ], + "user_mentions": [ + + ], + "media": [ + { + "id": 469917004338450432, + "id_str": "469917004338450432", + "indices": [ + 77, + 99 + ], + "media_url": "http://pbs.twimg.com/media/BoV7BpWCUAAi8Qg.png", + "media_url_https": "https://pbs.twimg.com/media/BoV7BpWCUAAi8Qg.png", + "url": "http://t.co/CNg9jpL2xU", + "display_url": "pic.twitter.com/CNg9jpL2xU", + "expanded_url": "http://twitter.com/marktimemedia/status/469917005257375744/photo/1", + "type": "photo", + "sizes": { + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 453, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 800, + "resize": "fit" + }, + "large": { + "w": 899, + "h": 1199, + "resize": "fit" + } + } + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 409, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 15:00:05 +0000 2014", + "id": 470217677093744640, + "id_str": "470217677093744640", + "text": "@stoftis that one, I think, we can agree is a sloppily drawn slash-zero :)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470204479766544385, + "in_reply_to_status_id_str": "470204479766544385", + "in_reply_to_user_id": 443483479, + "in_reply_to_user_id_str": "443483479", + "in_reply_to_screen_name": "stoftis", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 14:57:55 +0000 2014", + "id": 470217134543757312, + "id_str": "470217134543757312", + "text": "@ayaz_khan there’d be no console on consoles, if that makes any sense. Never play elder scrolls on console! Do use a console controller :)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470087699656110081, + "in_reply_to_status_id_str": "470087699656110081", + "in_reply_to_user_id": 15711296, + "in_reply_to_user_id_str": "15711296", + "in_reply_to_screen_name": "ayaz_khan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 05:00:18 +0000 2014", + "id": 470066737787191296, + "id_str": "470066737787191296", + "text": "@Talen_Lee I specific things like “in a video game” because people seem willing to believe I’ve cracked.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470062389644111872, + "in_reply_to_status_id_str": "470062389644111872", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 04:42:46 +0000 2014", + "id": 470062326289551360, + "id_str": "470062326289551360", + "text": "#skyrim Possibly the worst feeling in the world is being quite certain you just saw a giant spider, but now you are unable to locate it", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 10, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 03:47:43 +0000 2014", + "id": 470048471794601984, + "id_str": "470048471794601984", + "text": "RT @shelajev: Stunning Linux performance tools map by @brendangregg. More info and links are here http://t.co/Y9G9BjkT7S http://t.co/ysGdH2…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Fri May 23 07:06:02 +0000 2014", + "id": 469735994464690177, + "id_str": "469735994464690177", + "text": "Stunning Linux performance tools map by @brendangregg. More info and links are here http://t.co/Y9G9BjkT7S http://t.co/ysGdH2rp3a", + "source": "Buffer", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 53321388, + "id_str": "53321388" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 957, + "favorite_count": 1322, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/Y9G9BjkT7S", + "expanded_url": "http://j.mp/1o9GpeO", + "display_url": "j.mp/1o9GpeO", + "indices": [ + 84, + 106 + ] + } + ], + "user_mentions": [ + { + "screen_name": "brendangregg", + "name": "Brendan Gregg", + "id": 208212889, + "id_str": "208212889", + "indices": [ + 40, + 53 + ] + } + ], + "media": [ + { + "id": 469735994192039936, + "id_str": "469735994192039936", + "indices": [ + 107, + 129 + ], + "media_url": "http://pbs.twimg.com/media/BoTWZeAIEAAPJr3.png", + "media_url_https": "https://pbs.twimg.com/media/BoTWZeAIEAAPJr3.png", + "url": "http://t.co/ysGdH2rp3a", + "display_url": "pic.twitter.com/ysGdH2rp3a", + "expanded_url": "http://twitter.com/shelajev/status/469735994464690177/photo/1", + "type": "photo", + "sizes": { + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 197, + "resize": "fit" + }, + "large": { + "w": 1024, + "h": 593, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 347, + "resize": "fit" + } + } + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 957, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 03:35:51 +0000 2014", + "id": 470045486788149248, + "id_str": "470045486788149248", + "text": "Anyway re: the dead vampire they’re hovering over, I nearly died of fright when the guard pulled his sword right next to me to fight him", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 03:32:44 +0000 2014", + "id": 470044701568294912, + "id_str": "470044701568294912", + "text": "RT @torvos: @0xabad1dea oh no they finally realized they can't be hurt and have started their rebellion against the oppressive adults", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sat May 24 03:32:02 +0000 2014", + "id": 470044523612372992, + "id_str": "470044523612372992", + "text": "@0xabad1dea oh no they finally realized they can't be hurt and have started their rebellion against the oppressive adults", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470043182764290048, + "in_reply_to_status_id_str": "470043182764290048", + "in_reply_to_user_id": 126030998, + "in_reply_to_user_id_str": "126030998", + "in_reply_to_screen_name": "0xabad1dea", + "user": { + "id": 15399231, + "id_str": "15399231" + }, + "geo": { + "type": "Point", + "coordinates": [ + 45.32061037, + -75.894108 + ] + }, + "coordinates": { + "type": "Point", + "coordinates": [ + -75.894108, + 45.32061037 + ] + }, + "place": { + "id": "38d5974e82ed1a6c", + "url": "https://api.twitter.com/1.1/geo/id/38d5974e82ed1a6c.json", + "place_type": "city", + "name": "Ottawa", + "full_name": "Ottawa, Ontario", + "country_code": "CA", + "country": "Canada", + "contained_within": [ + + ], + "bounding_box": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.353876, + 44.961937 + ], + [ + -75.246407, + 44.961937 + ], + [ + -75.246407, + 45.534511 + ], + [ + -76.353876, + 45.534511 + ] + ] + ] + }, + "attributes": { + } + }, + "contributors": null, + "retweet_count": 3, + "favorite_count": 4, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "0xabad1dea", + "name": "Melissa", + "id": 126030998, + "id_str": "126030998", + "indices": [ + 0, + 11 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 3, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 03:26:42 +0000 2014", + "id": 470043182764290048, + "id_str": "470043182764290048", + "text": "This is it. The best Skyrim screenshot I will ever take. http://t.co/H8g7tgN6an", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 10, + "favorite_count": 21, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 02:57:54 +0000 2014", + "id": 470035934780874752, + "id_str": "470035934780874752", + "text": "@Myriachan I just opened my laptop and it was waiting. I figured it was patch Tuesday but I guess it’s 8.1.1", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470035829012705280, + "in_reply_to_status_id_str": "470035829012705280", + "in_reply_to_user_id": 1556497868, + "in_reply_to_user_id_str": "1556497868", + "in_reply_to_screen_name": "Myriachan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 02:50:38 +0000 2014", + "id": 470034106110459905, + "id_str": "470034106110459905", + "text": "@Xakkun I mean, I have HOPES they’ll follow through, but I’m not super confident they’ll do much.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470033768292823042, + "in_reply_to_status_id_str": "470033768292823042", + "in_reply_to_user_id": 52240754, + "in_reply_to_user_id_str": "52240754", + "in_reply_to_screen_name": "Xakkun", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 02:50:12 +0000 2014", + "id": 470033995674443777, + "id_str": "470033995674443777", + "text": "@Xakkun no actually they didn’t they said they would maybe consider it, they did not commit to anything in particular", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470033768292823042, + "in_reply_to_status_id_str": "470033768292823042", + "in_reply_to_user_id": 52240754, + "in_reply_to_user_id_str": "52240754", + "in_reply_to_screen_name": "Xakkun", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 02:45:54 +0000 2014", + "id": 470032916568100864, + "id_str": "470032916568100864", + "text": "@Xakkun drawing links between the two, both being facets of Gaming’s Social Responsibility Problem", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470031470334320640, + "in_reply_to_status_id_str": "470031470334320640", + "in_reply_to_user_id": 52240754, + "in_reply_to_user_id_str": "52240754", + "in_reply_to_screen_name": "Xakkun", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 02:44:46 +0000 2014", + "id": 470032632265576448, + "id_str": "470032632265576448", + "text": "@Xakkun and I was also criticizing Nintendo’s complete PR fiasco which essentially declared that social responsibility is not their job", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470031470334320640, + "in_reply_to_status_id_str": "470031470334320640", + "in_reply_to_user_id": 52240754, + "in_reply_to_user_id_str": "52240754", + "in_reply_to_screen_name": "Xakkun", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 02:43:53 +0000 2014", + "id": 470032409543860224, + "id_str": "470032409543860224", + "text": "@Xakkun to a frequency and an extent that is not matched by male villains.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470031470334320640, + "in_reply_to_status_id_str": "470031470334320640", + "in_reply_to_user_id": 52240754, + "in_reply_to_user_id_str": "52240754", + "in_reply_to_screen_name": "Xakkun", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 02:43:33 +0000 2014", + "id": 470032323149586433, + "id_str": "470032323149586433", + "text": "@Xakkun I was criticizing the systematic cultural problem of making a female character veeeery sexual to show she’s evil", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470031470334320640, + "in_reply_to_status_id_str": "470031470334320640", + "in_reply_to_user_id": 52240754, + "in_reply_to_user_id_str": "52240754", + "in_reply_to_screen_name": "Xakkun", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 02:34:30 +0000 2014", + "id": 470030046703665152, + "id_str": "470030046703665152", + "text": "@Xakkun uh… another example of exactly the trope I was criticizing, yes?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470026228528058369, + "in_reply_to_status_id_str": "470026228528058369", + "in_reply_to_user_id": 52240754, + "in_reply_to_user_id_str": "52240754", + "in_reply_to_screen_name": "Xakkun", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 02:17:01 +0000 2014", + "id": 470025647763771393, + "id_str": "470025647763771393", + "text": "@Xakkun I was busy being negative two years old sorry.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470024446280220672, + "in_reply_to_status_id_str": "470024446280220672", + "in_reply_to_user_id": 52240754, + "in_reply_to_user_id_str": "52240754", + "in_reply_to_screen_name": "Xakkun", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 02:07:43 +0000 2014", + "id": 470023307694456832, + "id_str": "470023307694456832", + "text": "@Talen_Lee 🔔🔔🔔", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470023212122648576, + "in_reply_to_status_id_str": "470023212122648576", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Sat May 24 02:07:25 +0000 2014", + "id": 470023229663641600, + "id_str": "470023229663641600", + "text": "Nintendo’s brand, Nintendo’s franchise, Nintendo’s publishing house, Nintendo’s money, oh but no we can’t criticize Nintendo for the content", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 4, + "favorite_count": 10, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 02:06:34 +0000 2014", + "id": 470023018186809345, + "id_str": "470023018186809345", + "text": "In particular I find it baffling that so many ppl think, because Nintendo is outsourcing the new Zelda game, they’re not responsible for it", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 02:03:48 +0000 2014", + "id": 470022322540519424, + "id_str": "470022322540519424", + "text": "@zauspar MORROWIND IS BEST WORLD, SKYRIM IS BEST ENGINE, WE CAN COEXIST", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470022190608297984, + "in_reply_to_status_id_str": "470022190608297984", + "in_reply_to_user_id": 216571343, + "in_reply_to_user_id_str": "216571343", + "in_reply_to_screen_name": "zauspar", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 02:02:29 +0000 2014", + "id": 470021987327545344, + "id_str": "470021987327545344", + "text": "— WELL EXCUSE ME PRINCESS 👸 I can hold the artwork *I* play with to high standards of responsibility", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 11, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 02:01:24 +0000 2014", + "id": 470021717780615168, + "id_str": "470021717780615168", + "text": "I’ve drawn out a lot of people today who have told me, word for word, to “stop complaining” about Nintendo and their cultural issues —", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 01:59:32 +0000 2014", + "id": 470021246798032896, + "id_str": "470021246798032896", + "text": "@Corrack who are these people who keep telling me not to criticize games published by Nintendo for Nintendo franchises ಠ_ಠ", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470017727298809856, + "in_reply_to_status_id_str": "470017727298809856", + "in_reply_to_user_id": 1465722715, + "in_reply_to_user_id_str": "1465722715", + "in_reply_to_screen_name": "Corrack", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 01:58:01 +0000 2014", + "id": 470020867070885888, + "id_str": "470020867070885888", + "text": "@Xakkun @ZJemptv … I don’t see how these (VERY mild compared to the new girl btw) contradict my point about cultural issues.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470018703766331392, + "in_reply_to_status_id_str": "470018703766331392", + "in_reply_to_user_id": 52240754, + "in_reply_to_user_id_str": "52240754", + "in_reply_to_screen_name": "Xakkun", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 01:30:05 +0000 2014", + "id": 470013835563520000, + "id_str": "470013835563520000", + "text": "Thank goodness for the scripting console; how else would I live-debug all the gamebreaking glitches still in Skyrim", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 7, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 01:17:35 +0000 2014", + "id": 470010689986523136, + "id_str": "470010689986523136", + "text": "@lucid1ty and the choice to cover her face just plays into the trope of she’s walking evil boobs even more.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470009873560657920, + "in_reply_to_status_id_str": "470009873560657920", + "in_reply_to_user_id": 241765238, + "in_reply_to_user_id_str": "241765238", + "in_reply_to_screen_name": "lucid1ty", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 01:16:55 +0000 2014", + "id": 470010521140211712, + "id_str": "470010521140211712", + "text": "@lucid1ty note that if this had not been done over and over for THOUSANDS OF YEARS it wouldn’t be a problem to see occasionally.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470009873560657920, + "in_reply_to_status_id_str": "470009873560657920", + "in_reply_to_user_id": 241765238, + "in_reply_to_user_id_str": "241765238", + "in_reply_to_screen_name": "lucid1ty", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 01:16:06 +0000 2014", + "id": 470010315485085696, + "id_str": "470010315485085696", + "text": "@lucid1ty the problem is it’s yet ANOTHER portrayal of “female sexuality is evil and evil is femininely sexual”", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470009873560657920, + "in_reply_to_status_id_str": "470009873560657920", + "in_reply_to_user_id": 241765238, + "in_reply_to_user_id_str": "241765238", + "in_reply_to_screen_name": "lucid1ty", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 01:15:08 +0000 2014", + "id": 470010075050803200, + "id_str": "470010075050803200", + "text": "@lucid1ty you are completely misunderstanding my criticism, I think.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 470009873560657920, + "in_reply_to_status_id_str": "470009873560657920", + "in_reply_to_user_id": 241765238, + "in_reply_to_user_id_str": "241765238", + "in_reply_to_screen_name": "lucid1ty", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 01:11:27 +0000 2014", + "id": 470009146486849536, + "id_str": "470009146486849536", + "text": "@typed @eevee for a split second I *GENUINELY BELIEVED* you were a BoA employee", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469999900134871040, + "in_reply_to_status_id_str": "469999900134871040", + "in_reply_to_user_id": 15248891, + "in_reply_to_user_id_str": "15248891", + "in_reply_to_screen_name": "typed", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 01:11:17 +0000 2014", + "id": 470009103952003073, + "id_str": "470009103952003073", + "text": "@hoodiespek @regentoforigin no it's absolutely a hoodie. An Elder Scrolls hoodie", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 470009022830358528, + "in_reply_to_status_id_str": "470009022830358528", + "in_reply_to_user_id": 2361598756, + "in_reply_to_user_id_str": "2361598756", + "in_reply_to_screen_name": "hoodiespek", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 01:09:35 +0000 2014", + "id": 470008676414414848, + "id_str": "470008676414414848", + "text": "Dressing appropriately for Skyrim binge. Doesn’t everyone http://t.co/FCeV12gs7V", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 28, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 00:54:31 +0000 2014", + "id": 470004885513977857, + "id_str": "470004885513977857", + "text": ".@zhuowei we went over this already, Skyrim is definitely Real Life (this is a series of my screenshots)", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 470004522866069504, + "in_reply_to_status_id_str": "470004522866069504", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 00:51:35 +0000 2014", + "id": 470004147023261696, + "id_str": "470004147023261696", + "text": "Aurora over Solitude, timelapse. http://t.co/4GLdWtbKBY", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 5, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "no" + }, + { + "created_at": "Sat May 24 00:30:49 +0000 2014", + "id": 469998918718087168, + "id_str": "469998918718087168", + "text": "Oh look Windows helpfully put a hideous green App Store button directly on my desktop taskbar ಠ_____ಠ", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 5, + "favorite_count": 9, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 00:27:56 +0000 2014", + "id": 469998195431735296, + "id_str": "469998195431735296", + "text": "I’m pretty sure this regularly scheduled Windows update is taking longer to apply than Windows 8 originally took to install", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 6, + "favorite_count": 13, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 24 00:22:12 +0000 2014", + "id": 469996751123144706, + "id_str": "469996751123144706", + "text": "@zhuowei means they expect it to crash a lot", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469994286407102464, + "in_reply_to_status_id_str": "469994286407102464", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 23:57:14 +0000 2014", + "id": 469990467980238848, + "id_str": "469990467980238848", + "text": "RT @TweetsofOld: It is not permissible, the use of too much punctuation. Thankfully, the exclamation point is almost obsolete. HI1905", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Fri May 23 21:45:22 +0000 2014", + "id": 469957284081053696, + "id_str": "469957284081053696", + "text": "It is not permissible, the use of too much punctuation. Thankfully, the exclamation point is almost obsolete. HI1905", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 66666549, + "id_str": "66666549" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 70, + "favorite_count": 53, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 70, + "favorite_count": 0, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 23:40:52 +0000 2014", + "id": 469986348586504194, + "id_str": "469986348586504194", + "text": ".@iRonNCSU I do in fact have a blog dedicated to screencaps of No Really Actually Skyrim This Time http://t.co/sb8GbSsttY", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 469985884129853441, + "in_reply_to_status_id_str": "469985884129853441", + "in_reply_to_user_id": 545616689, + "in_reply_to_user_id_str": "545616689", + "in_reply_to_screen_name": "iRonNCSU", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 23:35:50 +0000 2014", + "id": 469985083370110977, + "id_str": "469985083370110977", + "text": "Documentation of my trip to Literally Skyrim, if you really like pictures of damp granite. http://t.co/HjzrcluShZ", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 23:26:56 +0000 2014", + "id": 469982841846382592, + "id_str": "469982841846382592", + "text": "@pwnallthethings in the case of the company in question I think we're on a scale of tens of thousands of users if not a few hundred thousand", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 469982352161394688, + "in_reply_to_status_id_str": "469982352161394688", + "in_reply_to_user_id": 2237808535, + "in_reply_to_user_id_str": "2237808535", + "in_reply_to_screen_name": "pwnallthethings", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 23:19:23 +0000 2014", + "id": 469980941876617217, + "id_str": "469980941876617217", + "text": "Ghosts in the cave, apparently http://t.co/kd5yjtRfrp", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 12, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 23:18:53 +0000 2014", + "id": 469980817175756801, + "id_str": "469980817175756801", + "text": "@pwnallthethings I am assuming that one would be running it on a server CPU and not a cracker GPU, for the record", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 469978821941555200, + "in_reply_to_status_id_str": "469978821941555200", + "in_reply_to_user_id": 2237808535, + "in_reply_to_user_id_str": "2237808535", + "in_reply_to_screen_name": "pwnallthethings", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 23:07:51 +0000 2014", + "id": 469978040161026048, + "id_str": "469978040161026048", + "text": "@kevinmarks @pwnallthethings @raphlinus unless I just misread you and you're explaining how to Trivially Crack things", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 469977598425305088, + "in_reply_to_status_id_str": "469977598425305088", + "in_reply_to_user_id": 57203, + "in_reply_to_user_id_str": "57203", + "in_reply_to_screen_name": "kevinmarks", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 23:06:41 +0000 2014", + "id": 469977745699528704, + "id_str": "469977745699528704", + "text": "@kevinmarks @pwnallthethings @raphlinus You cannot compare to SALTED hashes without an absurdly large expenditure of CPU.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 469977598425305088, + "in_reply_to_status_id_str": "469977598425305088", + "in_reply_to_user_id": 57203, + "in_reply_to_user_id_str": "57203", + "in_reply_to_screen_name": "kevinmarks", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 22:43:25 +0000 2014", + "id": 469971893706321921, + "id_str": "469971893706321921", + "text": "@DanTup @kevinmarks but my thoughts on this are that all systems should be designed to minimize fallout when the database is stolen.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 469969842939117568, + "in_reply_to_status_id_str": "469969842939117568", + "in_reply_to_user_id": 61238575, + "in_reply_to_user_id_str": "61238575", + "in_reply_to_screen_name": "DanTup", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 22:42:56 +0000 2014", + "id": 469971769999511552, + "id_str": "469971769999511552", + "text": "@DanTup @kevinmarks @NCsoftGames it also *doesn't* suggest enforcing universal uniqueness as a goal - only banning over-common passwords.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 469969842939117568, + "in_reply_to_status_id_str": "469969842939117568", + "in_reply_to_user_id": 61238575, + "in_reply_to_user_id_str": "61238575", + "in_reply_to_screen_name": "DanTup", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 22:33:15 +0000 2014", + "id": 469969332534251520, + "id_str": "469969332534251520", + "text": "@DanTup @kevinmarks @NCsoftGames namely, that their database is trivially crackable.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 469968904090308608, + "in_reply_to_status_id_str": "469968904090308608", + "in_reply_to_user_id": 61238575, + "in_reply_to_user_id_str": "61238575", + "in_reply_to_screen_name": "DanTup", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 22:33:02 +0000 2014", + "id": 469969278310309888, + "id_str": "469969278310309888", + "text": "@DanTup @kevinmarks @NCsoftGames the technical implications of this being possible in their design is what makes it stupid.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 469968904090308608, + "in_reply_to_status_id_str": "469968904090308608", + "in_reply_to_user_id": 61238575, + "in_reply_to_user_id_str": "61238575", + "in_reply_to_screen_name": "DanTup", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 22:32:14 +0000 2014", + "id": 469969079722586113, + "id_str": "469969079722586113", + "text": "@iamcoreyevans @Furyhunter absolutely critical for contextualizing tumblr is that it has a much lower average age than most other sites.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 469968885937360897, + "in_reply_to_status_id_str": "469968885937360897", + "in_reply_to_user_id": 60155118, + "in_reply_to_user_id_str": "60155118", + "in_reply_to_screen_name": "iamcoreyevans", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 22:19:03 +0000 2014", + "id": 469965759636979712, + "id_str": "469965759636979712", + "text": "@korikisulda wow it's like I won the blocking lottery", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 469965563327156224, + "in_reply_to_status_id_str": "469965563327156224", + "in_reply_to_user_id": 600961272, + "in_reply_to_user_id_str": "600961272", + "in_reply_to_screen_name": "korikisulda", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 22:12:31 +0000 2014", + "id": 469964115034013696, + "id_str": "469964115034013696", + "text": "@jesster_king wow, diseases are awesome!", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 469962885615980544, + "in_reply_to_status_id_str": "469962885615980544", + "in_reply_to_user_id": 46763517, + "in_reply_to_user_id_str": "46763517", + "in_reply_to_screen_name": "jesster_king", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 22:11:10 +0000 2014", + "id": 469963774691385344, + "id_str": "469963774691385344", + "text": "@IveGotMyDoubts @m1sp he's saying \"alright m8\" because that was just the blithestly young businessdude thing I could think of", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 469962038991532032, + "in_reply_to_status_id_str": "469962038991532032", + "in_reply_to_user_id": 114987497, + "in_reply_to_user_id_str": "114987497", + "in_reply_to_screen_name": "IveGotMyDoubts", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 22:04:45 +0000 2014", + "id": 469962163268767744, + "id_str": "469962163268767744", + "text": "@m1sp @IveGotMyDoubts I portray Mispy with sandy hair, not pure blonde! Yes I ignore the canon of his avatar", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 469961778974052352, + "in_reply_to_status_id_str": "469961778974052352", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 21:51:17 +0000 2014", + "id": 469958771611934722, + "id_str": "469958771611934722", + "text": "Via anonymous tip: Google suggestions for @onswipe http://t.co/bNSKrPDCR8", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 5, + "favorite_count": 7, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 21:50:28 +0000 2014", + "id": 469958568616013825, + "id_str": "469958568616013825", + "text": "@Tuplet even if I *fully agree* UKIP is bad and UK should feel bad for electing them, bloviating about 50% of people are dumb is... behhh", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 469957956629696512, + "in_reply_to_status_id_str": "469957956629696512", + "in_reply_to_user_id": 34310651, + "in_reply_to_user_id_str": "34310651", + "in_reply_to_screen_name": "Tuplet", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 21:49:26 +0000 2014", + "id": 469958307944218624, + "id_str": "469958307944218624", + "text": "@Tuplet but I didn't say he doesn't know statistics; I said he's doing that numbers thing that deceitful groups like Fox News do.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 469957956629696512, + "in_reply_to_status_id_str": "469957956629696512", + "in_reply_to_user_id": 34310651, + "in_reply_to_user_id_str": "34310651", + "in_reply_to_screen_name": "Tuplet", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 21:48:54 +0000 2014", + "id": 469958170983419908, + "id_str": "469958170983419908", + "text": "@Tuplet well in theory the average falls dead on IQ 100 but I doubt that's really true in practice / doubt IQ is how we should measure it.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 469957956629696512, + "in_reply_to_status_id_str": "469957956629696512", + "in_reply_to_user_id": 34310651, + "in_reply_to_user_id_str": "34310651", + "in_reply_to_screen_name": "Tuplet", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 21:43:06 +0000 2014", + "id": 469956713777356800, + "id_str": "469956713777356800", + "text": "@eevee lol thanks for the sound warning on your mega mewtwo viewer", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 14412937, + "in_reply_to_user_id_str": "14412937", + "in_reply_to_screen_name": "eevee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 21:34:27 +0000 2014", + "id": 469954535905959937, + "id_str": "469954535905959937", + "text": "Someone should probably tell @Siliconera their onswipe may be broken. And to not use onswipe because it’s awful and crashy.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 21:24:25 +0000 2014", + "id": 469952011337605120, + "id_str": "469952011337605120", + "text": "@m1sp @jtstrocel a scientist should know better than to speak without reference to the average, or to ignore that most people are ≈average", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469950728711073792, + "in_reply_to_status_id_str": "469950728711073792", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 21:22:29 +0000 2014", + "id": 469951525331009536, + "id_str": "469951525331009536", + "text": "@m1sp @jtstrocel intensely bothered by “Fox News truths” like “50% are below average.” (I don’t think one could say it was spoken in jest)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469950728711073792, + "in_reply_to_status_id_str": "469950728711073792", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 21:18:25 +0000 2014", + "id": 469950501916663808, + "id_str": "469950501916663808", + "text": "@admittedlyhuman gahh", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469950175772168192, + "in_reply_to_status_id_str": "469950175772168192", + "in_reply_to_user_id": 19892410, + "in_reply_to_user_id_str": "19892410", + "in_reply_to_screen_name": "admittedlyhuman", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Fri May 23 21:15:18 +0000 2014", + "id": 469949717472747520, + "id_str": "469949717472747520", + "text": "@frkbmb I read this as sympathizer and was like well yeah it’s well known the commies are robots", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469938058180452355, + "in_reply_to_status_id_str": "469938058180452355", + "in_reply_to_user_id": 540721095, + "in_reply_to_user_id_str": "540721095", + "in_reply_to_screen_name": "frkbmb", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 21:12:16 +0000 2014", + "id": 469948954356875264, + "id_str": "469948954356875264", + "text": "@ghostqueer I don’t mean to brag but… yeah. Definitely have that going for me, assuming I want to rep femme.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469946466471903232, + "in_reply_to_status_id_str": "469946466471903232", + "in_reply_to_user_id": 2337742344, + "in_reply_to_user_id_str": "2337742344", + "in_reply_to_screen_name": "ghostqueer", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 21:09:19 +0000 2014", + "id": 469948209662394368, + "id_str": "469948209662394368", + "text": "@comex @geekable I will concede he does have a point that getting involved in public feminism is, for anyone 🚻, a media storm risk.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469947885921243136, + "in_reply_to_status_id_str": "469947885921243136", + "in_reply_to_user_id": 14550962, + "in_reply_to_user_id_str": "14550962", + "in_reply_to_screen_name": "comex", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 21:07:56 +0000 2014", + "id": 469947863263223809, + "id_str": "469947863263223809", + "text": "@StoleTarts @elfhybrid_ while I enjoy many aspects of .jp culture I won’t give them a free pass on their objectification problem", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469945510082904064, + "in_reply_to_status_id_str": "469945510082904064", + "in_reply_to_user_id": 443686814, + "in_reply_to_user_id_str": "443686814", + "in_reply_to_screen_name": "StoleTarts", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 21:06:19 +0000 2014", + "id": 469947458127003649, + "id_str": "469947458127003649", + "text": "@zackkitzmiller @joestump deliberate tactic of patriarchal preservers to make people believe the crazy rabid feminists are out to get you.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469947164857470976, + "in_reply_to_status_id_str": "469947164857470976", + "in_reply_to_user_id": 756242, + "in_reply_to_user_id_str": "756242", + "in_reply_to_screen_name": "zackkitzmiller", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 21:04:32 +0000 2014", + "id": 469947006728015872, + "id_str": "469947006728015872", + "text": "@j4cob @NCsoftGames O(n) for a large and ever-increasing n or bust", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469946724757536768, + "in_reply_to_status_id_str": "469946724757536768", + "in_reply_to_user_id": 41329897, + "in_reply_to_user_id_str": "41329897", + "in_reply_to_screen_name": "j4cob", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 21:01:54 +0000 2014", + "id": 469946343528890368, + "id_str": "469946343528890368", + "text": "@ghostqueer I literally could not find men’s pants that could get over my hips. What even are legs indeed", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469923960256475136, + "in_reply_to_status_id_str": "469923960256475136", + "in_reply_to_user_id": 2337742344, + "in_reply_to_user_id_str": "2337742344", + "in_reply_to_screen_name": "ghostqueer", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 20:59:03 +0000 2014", + "id": 469945627133366272, + "id_str": "469945627133366272", + "text": "@geekable but allies centering the spotlight on themselves and shooing the minority voices off stage is a Known Bug in activism in general", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469945221812191233, + "in_reply_to_status_id_str": "469945221812191233", + "in_reply_to_user_id": 755035, + "in_reply_to_user_id_str": "755035", + "in_reply_to_screen_name": "geekable", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 20:58:21 +0000 2014", + "id": 469945451429376001, + "id_str": "469945451429376001", + "text": "@geekable I certainly don’t agree with everything she’s ever said, nor with many things Mr. Codinghorror said either", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469945221812191233, + "in_reply_to_status_id_str": "469945221812191233", + "in_reply_to_user_id": 755035, + "in_reply_to_user_id_str": "755035", + "in_reply_to_screen_name": "geekable", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 20:55:28 +0000 2014", + "id": 469944728117870592, + "id_str": "469944728117870592", + "text": "@geekable so the issue isn’t he’s a man with opinions on feminism— it’s he’s a man w/ a huge audience who invisibled a smaller-time woman", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 755035, + "in_reply_to_user_id_str": "755035", + "in_reply_to_screen_name": "geekable", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 20:53:00 +0000 2014", + "id": 469944107364646912, + "id_str": "469944107364646912", + "text": "@geekable the whole thing felt like a variation of embrace extend extinguish", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469942821701427201, + "in_reply_to_status_id_str": "469942821701427201", + "in_reply_to_user_id": 755035, + "in_reply_to_user_id_str": "755035", + "in_reply_to_screen_name": "geekable", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 20:52:23 +0000 2014", + "id": 469943951190130689, + "id_str": "469943951190130689", + "text": "@geekable and yes he did eventually go back and add a header that his blog was essentially in response to hers, after a day or two", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469942821701427201, + "in_reply_to_status_id_str": "469942821701427201", + "in_reply_to_user_id": 755035, + "in_reply_to_user_id_str": "755035", + "in_reply_to_screen_name": "geekable", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 20:51:10 +0000 2014", + "id": 469943644049645569, + "id_str": "469943644049645569", + "text": "@geekable refocusing the discussion as entirely about his ideas without reference to who or what he was disagreeing with", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469942821701427201, + "in_reply_to_status_id_str": "469942821701427201", + "in_reply_to_user_id": 755035, + "in_reply_to_user_id_str": "755035", + "in_reply_to_screen_name": "geekable", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 20:50:49 +0000 2014", + "id": 469943554153140224, + "id_str": "469943554153140224", + "text": "@geekable reused her exact blog title without mentioning that this was rooted in disagreement with her, writing her out of the narrative", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469942821701427201, + "in_reply_to_status_id_str": "469942821701427201", + "in_reply_to_user_id": 755035, + "in_reply_to_user_id_str": "755035", + "in_reply_to_screen_name": "geekable", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 20:49:51 +0000 2014", + "id": 469943314561503233, + "id_str": "469943314561503233", + "text": "@geekable he disagreed with her, which is fine, compared himself implicitly to MLK, not really fine, I think he deleted that,", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469942821701427201, + "in_reply_to_status_id_str": "469942821701427201", + "in_reply_to_user_id": 755035, + "in_reply_to_user_id_str": "755035", + "in_reply_to_screen_name": "geekable", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 20:47:09 +0000 2014", + "id": 469942632396107776, + "id_str": "469942632396107776", + "text": "@geekable okay, this probably isn’t productive to rehash, but you know the issue is not “we didn’t like his blog post” right", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 755035, + "in_reply_to_user_id_str": "755035", + "in_reply_to_screen_name": "geekable", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 20:31:48 +0000 2014", + "id": 469938768565125120, + "id_str": "469938768565125120", + "text": "@torvos well they'd run out of disk space first :)", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 469938510171217920, + "in_reply_to_status_id_str": "469938510171217920", + "in_reply_to_user_id": 15399231, + "in_reply_to_user_id_str": "15399231", + "in_reply_to_screen_name": "torvos", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 20:22:44 +0000 2014", + "id": 469936489644568576, + "id_str": "469936489644568576", + "text": "@kylemaxwell @zhuowei haha no. (Twitter treats those as ephemeral anyway: either party can delete it from both party's DM history)", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 469936308505165827, + "in_reply_to_status_id_str": "469936308505165827", + "in_reply_to_user_id": 727603, + "in_reply_to_user_id_str": "727603", + "in_reply_to_screen_name": "kylemaxwell", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 20:21:22 +0000 2014", + "id": 469936145791340544, + "id_str": "469936145791340544", + "text": "@geekable ............... I've never followed Shanley. On Twitter or any other site.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 469935913338818560, + "in_reply_to_status_id_str": "469935913338818560", + "in_reply_to_user_id": 755035, + "in_reply_to_user_id_str": "755035", + "in_reply_to_screen_name": "geekable", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 20:18:51 +0000 2014", + "id": 469935511377690624, + "id_str": "469935511377690624", + "text": "In a move that will really excite @zhuowei and only @zhuowei, my public complete twitter archive has updated https://t.co/LeVWrlW51A", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 20:13:40 +0000 2014", + "id": 469934204784893952, + "id_str": "469934204784893952", + "text": "@TonyYarusso @matthew_d_green @mikko but none of the people who do that sort of research have the budget to just buy one of everything", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 469933226933223424, + "in_reply_to_status_id_str": "469933226933223424", + "in_reply_to_user_id": 11742922, + "in_reply_to_user_id_str": "11742922", + "in_reply_to_screen_name": "TonyYarusso", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 20:13:05 +0000 2014", + "id": 469934059087343616, + "id_str": "469934059087343616", + "text": "@TonyYarusso @matthew_d_green @mikko I would say that all are guilty until proven innocent since the category has such a poor track record", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 469933226933223424, + "in_reply_to_status_id_str": "469933226933223424", + "in_reply_to_user_id": 11742922, + "in_reply_to_user_id_str": "11742922", + "in_reply_to_screen_name": "TonyYarusso", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 20:11:51 +0000 2014", + "id": 469933748322983936, + "id_str": "469933748322983936", + "text": "@systmkor a major issue of strict academic treatises on feminism is they're completely impenetrable if you don't have a degree in the field", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 469932346309767168, + "in_reply_to_status_id_str": "469932346309767168", + "in_reply_to_user_id": 16796332, + "in_reply_to_user_id_str": "16796332", + "in_reply_to_screen_name": "systmkor", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 20:10:21 +0000 2014", + "id": 469933373234745348, + "id_str": "469933373234745348", + "text": "@systmkor you may find this helpful as a launchpad http://t.co/iadKHAao0p", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 469932346309767168, + "in_reply_to_status_id_str": "469932346309767168", + "in_reply_to_user_id": 16796332, + "in_reply_to_user_id_str": "16796332", + "in_reply_to_screen_name": "systmkor", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 19:47:32 +0000 2014", + "id": 469927630406688768, + "id_str": "469927630406688768", + "text": "@acostoss @thecharrr understanding everything about password storage is hard, whence all these broken designs.", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 469927248163012609, + "in_reply_to_status_id_str": "469927248163012609", + "in_reply_to_user_id": 41753255, + "in_reply_to_user_id_str": "41753255", + "in_reply_to_screen_name": "acostoss", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 19:45:25 +0000 2014", + "id": 469927095683276800, + "id_str": "469927095683276800", + "text": "@acostoss @thecharrr especially if one is using a properly deliberately slow algorithm", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 469926244285706240, + "in_reply_to_status_id_str": "469926244285706240", + "in_reply_to_user_id": 41753255, + "in_reply_to_user_id_str": "41753255", + "in_reply_to_screen_name": "acostoss", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 19:44:47 +0000 2014", + "id": 469926939915198465, + "id_str": "469926939915198465", + "text": "@acostoss @thecharrr salted == only way to do this is to rehash against n salts where n is your user count: computationally expensive", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 469926244285706240, + "in_reply_to_status_id_str": "469926244285706240", + "in_reply_to_user_id": 41753255, + "in_reply_to_user_id_str": "41753255", + "in_reply_to_screen_name": "acostoss", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 19:44:04 +0000 2014", + "id": 469926757135417344, + "id_str": "469926757135417344", + "text": "@acostoss @thecharrr not salted == SELECT FROM hashes WHERE equal. Fast operation at any scale.", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 469926244285706240, + "in_reply_to_status_id_str": "469926244285706240", + "in_reply_to_user_id": 41753255, + "in_reply_to_user_id_str": "41753255", + "in_reply_to_screen_name": "acostoss", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 19:42:54 +0000 2014", + "id": 469926465052901376, + "id_str": "469926465052901376", + "text": "@acostoss @thecharrr and if they're not salting, they might as well not even be hashing for all that does against modern cracking power", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 469925087341469697, + "in_reply_to_status_id_str": "469925087341469697", + "in_reply_to_user_id": 41753255, + "in_reply_to_user_id_str": "41753255", + "in_reply_to_screen_name": "acostoss", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 19:41:12 +0000 2014", + "id": 469926034679533568, + "id_str": "469926034679533568", + "text": "@acostoss @NCsoftGames @thecharrr if they are salting then they CANNOT compare to all users without huge CPU expenditure", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 469925087341469697, + "in_reply_to_status_id_str": "469925087341469697", + "in_reply_to_user_id": 41753255, + "in_reply_to_user_id_str": "41753255", + "in_reply_to_screen_name": "acostoss", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 19:39:12 +0000 2014", + "id": 469925534575906817, + "id_str": "469925534575906817", + "text": "@axelgneiting @NCsoftGames that's a lot of extra infrastructure over the Easy and Wrong method- and still crazy dangerous if stored in DB", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 469924335491481600, + "in_reply_to_status_id_str": "469924335491481600", + "in_reply_to_user_id": 15811834, + "in_reply_to_user_id_str": "15811834", + "in_reply_to_screen_name": "axelgneiting", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 19:32:21 +0000 2014", + "id": 469923807172775936, + "id_str": "469923807172775936", + "text": "RT @me_irl: @0xabad1dea @NCsoftGames lol I used to store passwords in naked md5 with a uniqueness constraint when i was a 15 year old php p…", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Fri May 23 19:30:28 +0000 2014", + "id": 469923335225495552, + "id_str": "469923335225495552", + "text": "@0xabad1dea @NCsoftGames lol I used to store passwords in naked md5 with a uniqueness constraint when i was a 15 year old php programmer too", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 469922868940505088, + "in_reply_to_status_id_str": "469922868940505088", + "in_reply_to_user_id": 126030998, + "in_reply_to_user_id_str": "126030998", + "in_reply_to_screen_name": "0xabad1dea", + "user": { + "id": 16142493, + "id_str": "16142493" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 9, + "favorite_count": 7, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "0xabad1dea", + "name": "Melissa", + "id": 126030998, + "id_str": "126030998", + "indices": [ + 0, + 11 + ] + }, + { + "screen_name": "NCsoftGames", + "name": "NCsoft", + "id": 23039989, + "id_str": "23039989", + "indices": [ + 12, + 24 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 9, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 19:28:37 +0000 2014", + "id": 469922868940505088, + "id_str": "469922868940505088", + "text": "Does @NCsoftGames understand this implies they are doing password storage COMPLETELY WRONG http://t.co/9nnrrhtUhc", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 18, + "favorite_count": 9, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 19:27:23 +0000 2014", + "id": 469922559275065344, + "id_str": "469922559275065344", + "text": ".@iPlop VICTORY", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 469922437157879808, + "in_reply_to_status_id_str": "469922437157879808", + "in_reply_to_user_id": 38547376, + "in_reply_to_user_id_str": "38547376", + "in_reply_to_screen_name": "iPlop", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 19:27:07 +0000 2014", + "id": 469922493399310338, + "id_str": "469922493399310338", + "text": "RT @iPlop: @0xabad1dea just so you know, thanks to your nintendo tweet, i found a critical url parsing bug in my twitter client.", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Fri May 23 19:26:54 +0000 2014", + "id": 469922437157879808, + "id_str": "469922437157879808", + "text": "@0xabad1dea just so you know, thanks to your nintendo tweet, i found a critical url parsing bug in my twitter client.", + "source": "Tweetbot for Mac", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 126030998, + "in_reply_to_user_id_str": "126030998", + "in_reply_to_screen_name": "0xabad1dea", + "user": { + "id": 38547376, + "id_str": "38547376" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 4, + "favorite_count": 9, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "0xabad1dea", + "name": "Melissa", + "id": 126030998, + "id_str": "126030998", + "indices": [ + 0, + 11 + ] + } + ] + }, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 4, + "favorite_count": 0, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 19:22:37 +0000 2014", + "id": 469921358831706113, + "id_str": "469921358831706113", + "text": "@leoofborg @thegrugq I'm familiar with Ms. Tunney's overall political stance which includes petitioning to replace the US govt with Google", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 469920976030150656, + "in_reply_to_status_id_str": "469920976030150656", + "in_reply_to_user_id": 55874022, + "in_reply_to_user_id_str": "55874022", + "in_reply_to_screen_name": "leoofborg", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 19:18:00 +0000 2014", + "id": 469920199156957185, + "id_str": "469920199156957185", + "text": "@thegrugq @leoofborg if she's a troll then she has taken sticking to the joke to a whole new tier", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 469919995846090752, + "in_reply_to_status_id_str": "469919995846090752", + "in_reply_to_user_id": 18983429, + "in_reply_to_user_id_str": "18983429", + "in_reply_to_screen_name": "thegrugq", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 19:16:35 +0000 2014", + "id": 469919839947980802, + "id_str": "469919839947980802", + "text": "@leoofborg @thegrugq \n\ncould u not", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 469918075736043521, + "in_reply_to_status_id_str": "469918075736043521", + "in_reply_to_user_id": 55874022, + "in_reply_to_user_id_str": "55874022", + "in_reply_to_screen_name": "leoofborg", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 19:12:34 +0000 2014", + "id": 469918830559772672, + "id_str": "469918830559772672", + "text": "@barrucadu 😎", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 469918545326137344, + "in_reply_to_status_id_str": "469918545326137344", + "in_reply_to_user_id": 1708672298, + "in_reply_to_user_id_str": "1708672298", + "in_reply_to_screen_name": "barrucadu", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Fri May 23 19:10:43 +0000 2014", + "id": 469918365520117761, + "id_str": "469918365520117761", + "text": "RT @mftb: @_yossi_ @0xabad1dea I’ve not changed mine (you know, for Science) and I’ve not got an email yet.", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Fri May 23 18:53:16 +0000 2014", + "id": 469913974088433664, + "id_str": "469913974088433664", + "text": "@_yossi_ @0xabad1dea I’ve not changed mine (you know, for Science) and I’ve not got an email yet.", + "source": "Tweetbot for Mac", + "truncated": false, + "in_reply_to_status_id": 469912109741273089, + "in_reply_to_status_id_str": "469912109741273089", + "in_reply_to_user_id": 14330235, + "in_reply_to_user_id_str": "14330235", + "in_reply_to_screen_name": "_yossi_", + "user": { + "id": 15089349, + "id_str": "15089349" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 0, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "_yossi_", + "name": "_yossi_", + "id": 14330235, + "id_str": "14330235", + "indices": [ + 0, + 8 + ] + }, + { + "screen_name": "0xabad1dea", + "name": "Melissa", + "id": 126030998, + "id_str": "126030998", + "indices": [ + 9, + 20 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 1, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 19:10:29 +0000 2014", + "id": 469918304488808448, + "id_str": "469918304488808448", + "text": "@barrucadu I don't see how -- painting the infosec community as above average in infosec seems fair :)", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 469914761753554947, + "in_reply_to_status_id_str": "469914761753554947", + "in_reply_to_user_id": 1708672298, + "in_reply_to_user_id_str": "1708672298", + "in_reply_to_screen_name": "barrucadu", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 18:52:57 +0000 2014", + "id": 469913892135911425, + "id_str": "469913892135911425", + "text": ".@_yossi_ good point: everyone I know is above average in probability to be proactively secure", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 469912109741273089, + "in_reply_to_status_id_str": "469912109741273089", + "in_reply_to_user_id": 14330235, + "in_reply_to_user_id_str": "14330235", + "in_reply_to_screen_name": "_yossi_", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 18:52:00 +0000 2014", + "id": 469913653018648577, + "id_str": "469913653018648577", + "text": "RT @_yossi_: @0xabad1dea maybe if you change it without prompting, they wont email you. I know I didn't get an email yet.", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Fri May 23 18:45:52 +0000 2014", + "id": 469912109741273089, + "id_str": "469912109741273089", + "text": "@0xabad1dea maybe if you change it without prompting, they wont email you. I know I didn't get an email yet.", + "source": "Janetter for Android", + "truncated": false, + "in_reply_to_status_id": 469904047458516992, + "in_reply_to_status_id_str": "469904047458516992", + "in_reply_to_user_id": 126030998, + "in_reply_to_user_id_str": "126030998", + "in_reply_to_screen_name": "0xabad1dea", + "user": { + "id": 14330235, + "id_str": "14330235" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 1, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "0xabad1dea", + "name": "Melissa", + "id": 126030998, + "id_str": "126030998", + "indices": [ + 0, + 11 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 1, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 18:52:00 +0000 2014", + "id": 469913653018648577, + "id_str": "469913653018648577", + "text": "RT @_yossi_: @0xabad1dea maybe if you change it without prompting, they wont email you. I know I didn't get an email yet.", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Fri May 23 18:45:52 +0000 2014", + "id": 469912109741273089, + "id_str": "469912109741273089", + "text": "@0xabad1dea maybe if you change it without prompting, they wont email you. I know I didn't get an email yet.", + "source": "Janetter for Android", + "truncated": false, + "in_reply_to_status_id": 469904047458516992, + "in_reply_to_status_id_str": "469904047458516992", + "in_reply_to_user_id": 126030998, + "in_reply_to_user_id_str": "126030998", + "in_reply_to_screen_name": "0xabad1dea", + "user": { + "id": 14330235, + "id_str": "14330235" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 1, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "0xabad1dea", + "name": "Melissa", + "id": 126030998, + "id_str": "126030998", + "indices": [ + 0, + 11 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 1, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 18:46:24 +0000 2014", + "id": 469912245003370497, + "id_str": "469912245003370497", + "text": ".@Eldritchreality ahh, this actually is my evil plan\n\nHere’s a funny cartoon about programming! Now that I have your attention…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469911625550798848, + "in_reply_to_status_id_str": "469911625550798848", + "in_reply_to_user_id": 106061815, + "in_reply_to_user_id_str": "106061815", + "in_reply_to_screen_name": "Eldritchreality", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 8, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 18:43:31 +0000 2014", + "id": 469911521112629252, + "id_str": "469911521112629252", + "text": "@GreggJaskiewicz @theory user was banned for this post", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469910770269315072, + "in_reply_to_status_id_str": "469910770269315072", + "in_reply_to_user_id": 137109749, + "in_reply_to_user_id_str": "137109749", + "in_reply_to_screen_name": "GreggJaskiewicz", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 18:35:02 +0000 2014", + "id": 469909382512541697, + "id_str": "469909382512541697", + "text": "@aspects_ebooks not all blades", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469895710234902529, + "in_reply_to_status_id_str": "469895710234902529", + "in_reply_to_user_id": 2345404375, + "in_reply_to_user_id_str": "2345404375", + "in_reply_to_screen_name": "aspects_ebooks", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 18:34:13 +0000 2014", + "id": 469909180124774401, + "id_str": "469909180124774401", + "text": "@travisgoodspeed #FF Travis Goodspeed. He hates being @’d on tweets which lack a meaningful message directed at him", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469893413953732608, + "in_reply_to_status_id_str": "469893413953732608", + "in_reply_to_user_id": 81458523, + "in_reply_to_user_id_str": "81458523", + "in_reply_to_screen_name": "travisgoodspeed", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 18:29:15 +0000 2014", + "id": 469907930763243520, + "id_str": "469907930763243520", + "text": "@AcidRampage it’s its own word because the patriarchal gender binary is a profound and obvious shaper of culture at large", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469907507268583425, + "in_reply_to_status_id_str": "469907507268583425", + "in_reply_to_user_id": 183951584, + "in_reply_to_user_id_str": "183951584", + "in_reply_to_screen_name": "AcidRampage", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 18:28:27 +0000 2014", + "id": 469907729180815361, + "id_str": "469907729180815361", + "text": "@AcidRampage you can’t be “equalist” and not also be feminist: it’s a subset of the broad goal", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469907507268583425, + "in_reply_to_status_id_str": "469907507268583425", + "in_reply_to_user_id": 183951584, + "in_reply_to_user_id_str": "183951584", + "in_reply_to_screen_name": "AcidRampage", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 18:26:16 +0000 2014", + "id": 469907177118113792, + "id_str": "469907177118113792", + "text": "@ghostqueer in particular it was a preemptive move against the coming wave of cheap genetic sequencing being abused", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469906267809390592, + "in_reply_to_status_id_str": "469906267809390592", + "in_reply_to_user_id": 2337742344, + "in_reply_to_user_id_str": "2337742344", + "in_reply_to_screen_name": "ghostqueer", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 18:23:42 +0000 2014", + "id": 469906533203968000, + "id_str": "469906533203968000", + "text": "@ghostqueer I think they were trying to encode a bunch of things into one bullet point", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469906267809390592, + "in_reply_to_status_id_str": "469906267809390592", + "in_reply_to_user_id": 2337742344, + "in_reply_to_user_id_str": "2337742344", + "in_reply_to_screen_name": "ghostqueer", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 18:22:24 +0000 2014", + "id": 469906207235641344, + "id_str": "469906207235641344", + "text": "@chriseng stupid autocorrect.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469906086624243712, + "in_reply_to_status_id_str": "469906086624243712", + "in_reply_to_user_id": 13752192, + "in_reply_to_user_id_str": "13752192", + "in_reply_to_screen_name": "chriseng", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "it" + }, + { + "created_at": "Fri May 23 18:20:55 +0000 2014", + "id": 469905833812561922, + "id_str": "469905833812561922", + "text": "@ghostqueer I apologize if I’m being blunt but it’s important to make sure you know you have rights against this type of discrimination", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469904308075773952, + "in_reply_to_status_id_str": "469904308075773952", + "in_reply_to_user_id": 2337742344, + "in_reply_to_user_id_str": "2337742344", + "in_reply_to_screen_name": "ghostqueer", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 18:20:05 +0000 2014", + "id": 469905621832462336, + "id_str": "469905621832462336", + "text": "@Kufat the only extra cables I’ve bought any time recently were lightning and trust me: don’t get used or 🇨🇳-brand lightning cables", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469905348954832896, + "in_reply_to_status_id_str": "469905348954832896", + "in_reply_to_user_id": 207691003, + "in_reply_to_user_id_str": "207691003", + "in_reply_to_screen_name": "Kufat", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 18:19:27 +0000 2014", + "id": 469905462100754433, + "id_str": "469905462100754433", + "text": "@Kufat yeah, not that needing free floating cables is a problem I frequently have", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469905348954832896, + "in_reply_to_status_id_str": "469905348954832896", + "in_reply_to_user_id": 207691003, + "in_reply_to_user_id_str": "207691003", + "in_reply_to_screen_name": "Kufat", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 18:18:41 +0000 2014", + "id": 469905270098124800, + "id_str": "469905270098124800", + "text": "@Kufat 🇨🇳", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469905042804588544, + "in_reply_to_status_id_str": "469905042804588544", + "in_reply_to_user_id": 207691003, + "in_reply_to_user_id_str": "207691003", + "in_reply_to_screen_name": "Kufat", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Fri May 23 18:18:21 +0000 2014", + "id": 469905186539204609, + "id_str": "469905186539204609", + "text": "@ghostqueer they don’t; but the point is, trans discrimination would fall under making calls based on them thinking you’re “really” XY", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469904308075773952, + "in_reply_to_status_id_str": "469904308075773952", + "in_reply_to_user_id": 2337742344, + "in_reply_to_user_id_str": "2337742344", + "in_reply_to_screen_name": "ghostqueer", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 18:17:13 +0000 2014", + "id": 469904901217476608, + "id_str": "469904901217476608", + "text": "@Kufat I bought one thing on eBay once about eight years ago", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469904316686692352, + "in_reply_to_status_id_str": "469904316686692352", + "in_reply_to_user_id": 207691003, + "in_reply_to_user_id_str": "207691003", + "in_reply_to_screen_name": "Kufat", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 18:14:24 +0000 2014", + "id": 469904193546092544, + "id_str": "469904193546092544", + "text": "@ghostqueer it’s illegal to rent discriminate based on knowledge of someone’s genetics.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469904064382517248, + "in_reply_to_status_id_str": "469904064382517248", + "in_reply_to_user_id": 2337742344, + "in_reply_to_user_id_str": "2337742344", + "in_reply_to_screen_name": "ghostqueer", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 18:13:49 +0000 2014", + "id": 469904047458516992, + "id_str": "469904047458516992", + "text": "So I notice that despite them saying they started two days ago, my contacts with eBay accounts say they still haven’t gotten an email", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 18:12:02 +0000 2014", + "id": 469903595983630336, + "id_str": "469903595983630336", + "text": "@ghostqueer in particular you should know that Massachusetts classifies genetics as a protested class", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469903097385742336, + "in_reply_to_status_id_str": "469903097385742336", + "in_reply_to_user_id": 2337742344, + "in_reply_to_user_id_str": "2337742344", + "in_reply_to_screen_name": "ghostqueer", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 18:11:17 +0000 2014", + "id": 469903407491588097, + "id_str": "469903407491588097", + "text": "@ghostqueer this is a legitimate worry, but you’re at much lower risk overall than in many states, both for landlords and courts.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469903097385742336, + "in_reply_to_status_id_str": "469903097385742336", + "in_reply_to_user_id": 2337742344, + "in_reply_to_user_id_str": "2337742344", + "in_reply_to_screen_name": "ghostqueer", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 18:09:14 +0000 2014", + "id": 469902892997283840, + "id_str": "469902892997283840", + "text": "@glyph it’s been a while since I got in a good Tweeter vs Twitter spat", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469902679381000193, + "in_reply_to_status_id_str": "469902679381000193", + "in_reply_to_user_id": 9859562, + "in_reply_to_user_id_str": "9859562", + "in_reply_to_screen_name": "glyph", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 18:08:13 +0000 2014", + "id": 469902634867236865, + "id_str": "469902634867236865", + "text": "@ghostqueer Massachusetts puts pretty much everything under protected class for rental rights", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469880649105432576, + "in_reply_to_status_id_str": "469880649105432576", + "in_reply_to_user_id": 2337742344, + "in_reply_to_user_id_str": "2337742344", + "in_reply_to_screen_name": "ghostqueer", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 18:01:34 +0000 2014", + "id": 469900960580775936, + "id_str": "469900960580775936", + "text": "@chead I'm expecting a similar reply from ... ... ... the person with the girl murdering Snoo as an avatar. Blanking on the handle.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 469900477971578880, + "in_reply_to_status_id_str": "469900477971578880", + "in_reply_to_user_id": 1268431, + "in_reply_to_user_id_str": "1268431", + "in_reply_to_screen_name": "chead", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 17:59:05 +0000 2014", + "id": 469900337378492416, + "id_str": "469900337378492416", + "text": "Sorry I got angry and yelled everyone. But if we never make a point about it not being true, people will keep equating feminism and misandry", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 7, + "favorite_count": 12, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 17:48:00 +0000 2014", + "id": 469897547382005761, + "id_str": "469897547382005761", + "text": "@11rcombs and sure, Twitter CAN choose to start another international incident with them as the focal point between US and Russia, but, yeah", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 469896976968843264, + "in_reply_to_status_id_str": "469896976968843264", + "in_reply_to_user_id": 98022472, + "in_reply_to_user_id_str": "98022472", + "in_reply_to_screen_name": "11rcombs", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 17:47:16 +0000 2014", + "id": 469897363843481601, + "id_str": "469897363843481601", + "text": "@11rcombs because it's an international political incident if they do anything else", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 469896976968843264, + "in_reply_to_status_id_str": "469896976968843264", + "in_reply_to_user_id": 98022472, + "in_reply_to_user_id_str": "98022472", + "in_reply_to_screen_name": "11rcombs", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 17:46:34 +0000 2014", + "id": 469897188324421632, + "id_str": "469897188324421632", + "text": "@Furyhunter @Chispshot not in the sense of \"wimmin shouldn't larn to read\" but in slightly more toned down ways", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 469896770693386240, + "in_reply_to_status_id_str": "469896770693386240", + "in_reply_to_user_id": 34740894, + "in_reply_to_user_id_str": "34740894", + "in_reply_to_screen_name": "Furyhunter", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 17:46:08 +0000 2014", + "id": 469897079104765952, + "id_str": "469897079104765952", + "text": "@Furyhunter @Chispshot the deep south I lived in was, in broad overall strokes, very definitely against actual gender equality", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 469896770693386240, + "in_reply_to_status_id_str": "469896770693386240", + "in_reply_to_user_id": 34740894, + "in_reply_to_user_id_str": "34740894", + "in_reply_to_screen_name": "Furyhunter", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 17:41:44 +0000 2014", + "id": 469895972357935104, + "id_str": "469895972357935104", + "text": "@Furyhunter you can't support gender equality in all its facets and also not be a feminist. It's part of the package deal", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 469895749841723393, + "in_reply_to_status_id_str": "469895749841723393", + "in_reply_to_user_id": 34740894, + "in_reply_to_user_id_str": "34740894", + "in_reply_to_screen_name": "Furyhunter", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 17:40:27 +0000 2014", + "id": 469895650411573248, + "id_str": "469895650411573248", + "text": "@davidpetschull almost all of which are.... addressed by feminism, by dismantling the patriarchal pressure on men to act superior.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 469895502491037696, + "in_reply_to_status_id_str": "469895502491037696", + "in_reply_to_user_id": 134184281, + "in_reply_to_user_id_str": "134184281", + "in_reply_to_screen_name": "davidpetschull", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 17:38:26 +0000 2014", + "id": 469895140640055296, + "id_str": "469895140640055296", + "text": "@rubbsdecvik this heart-stopping rage is good for me I'm sure", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 469895022905552896, + "in_reply_to_status_id_str": "469895022905552896", + "in_reply_to_user_id": 13949182, + "in_reply_to_user_id_str": "13949182", + "in_reply_to_screen_name": "rubbsdecvik", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 17:37:01 +0000 2014", + "id": 469894783587323904, + "id_str": "469894783587323904", + "text": ".@Furyhunter the term has been hijacked by the opposition who WANTS you to conflate feminism with some crazy tiny minority of fem-superiors", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 469894494792740864, + "in_reply_to_status_id_str": "469894494792740864", + "in_reply_to_user_id": 34740894, + "in_reply_to_user_id_str": "34740894", + "in_reply_to_screen_name": "Furyhunter", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 6, + "favorite_count": 15, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 17:36:01 +0000 2014", + "id": 469894532054908928, + "id_str": "469894532054908928", + "text": "@chvest Bamboo app from Wacom, with dollar stylus", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 469894421107212288, + "in_reply_to_status_id_str": "469894421107212288", + "in_reply_to_user_id": 40892481, + "in_reply_to_user_id_str": "40892481", + "in_reply_to_screen_name": "chvest", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 17:34:04 +0000 2014", + "id": 469894043288469504, + "id_str": "469894043288469504", + "text": "Favorite that tweet kiddos, it's rare to find objective proof abadidea knows a bad word", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 9, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 17:32:23 +0000 2014", + "id": 469893618715856897, + "id_str": "469893618715856897", + "text": "@CyshieTan uhhh hang on let me check\n\nNope!", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 469893460531879936, + "in_reply_to_status_id_str": "469893460531879936", + "in_reply_to_user_id": 55934293, + "in_reply_to_user_id_str": "55934293", + "in_reply_to_screen_name": "CyshieTan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 17:31:12 +0000 2014", + "id": 469893319641018368, + "id_str": "469893319641018368", + "text": "\"I'm not a feminist! I believe we are all equal!\" \n\n WHAT THE *FUCK* DO YOU THINK FEMINISM MEANS", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 60, + "favorite_count": 108, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 17:29:58 +0000 2014", + "id": 469893012248887296, + "id_str": "469893012248887296", + "text": "@ShawnGorton uhhhh \n\nNo. \n\n I'm blocking you now.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 469892768962461697, + "in_reply_to_status_id_str": "469892768962461697", + "in_reply_to_user_id": 185808242, + "in_reply_to_user_id_str": "185808242", + "in_reply_to_screen_name": "ShawnGorton", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 17:28:40 +0000 2014", + "id": 469892682954076161, + "id_str": "469892682954076161", + "text": "@SunnyBunnyMilk https://t.co/xKu4A8z0fz", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 469892077061693441, + "in_reply_to_status_id_str": "469892077061693441", + "in_reply_to_user_id": 595981743, + "in_reply_to_user_id_str": "595981743", + "in_reply_to_screen_name": "SunnyBunnyMilk", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "quoted_status_id": 469888968734306305, + "quoted_status_id_str": "469888968734306305", + "quoted_status": { + "created_at": "Fri May 23 17:13:54 +0000 2014", + "id": 469888968734306305, + "id_str": "469888968734306305", + "text": "Attn everyone: I am aware that Nintendo is outsourcing this Zelda game\n\n~ That doesn't make it not a Zelda, therefore Nintendo, game ~", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 2, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Fri May 23 17:28:15 +0000 2014", + "id": 469892577739538433, + "id_str": "469892577739538433", + "text": "@ShawnGorton THAT IS LITERALLY FEMINISM. YOU'RE A FEMINIST", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 469892465445453824, + "in_reply_to_status_id_str": "469892465445453824", + "in_reply_to_user_id": 185808242, + "in_reply_to_user_id_str": "185808242", + "in_reply_to_screen_name": "ShawnGorton", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 17:26:37 +0000 2014", + "id": 469892167713161216, + "id_str": "469892167713161216", + "text": "@ShawnGorton no no no no back up\n\n**what do you think feminism is**", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 469892106446983168, + "in_reply_to_status_id_str": "469892106446983168", + "in_reply_to_user_id": 185808242, + "in_reply_to_user_id_str": "185808242", + "in_reply_to_screen_name": "ShawnGorton", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 17:26:18 +0000 2014", + "id": 469892088042385408, + "id_str": "469892088042385408", + "text": "@CubeMelon @eevee I refuse to accept a real distinction, on the basis of 20 years of Nintendo being meticulous about brand image control.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 469891876926267392, + "in_reply_to_status_id_str": "469891876926267392", + "in_reply_to_user_id": 16639123, + "in_reply_to_user_id_str": "16639123", + "in_reply_to_screen_name": "CubeMelon", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 17:24:48 +0000 2014", + "id": 469891708441100290, + "id_str": "469891708441100290", + "text": "@ShawnGorton ..... oh my gods the problem is you literally don't know the definition of feminism", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 469891630963507200, + "in_reply_to_status_id_str": "469891630963507200", + "in_reply_to_user_id": 185808242, + "in_reply_to_user_id_str": "185808242", + "in_reply_to_screen_name": "ShawnGorton", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 17:23:31 +0000 2014", + "id": 469891386888945664, + "id_str": "469891386888945664", + "text": "@ShawnGorton what does being fiction have to do with anything? It's culture, almost all culture is fiction and it has PROFOUND effect on us", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 469891040967540737, + "in_reply_to_status_id_str": "469891040967540737", + "in_reply_to_user_id": 185808242, + "in_reply_to_user_id_str": "185808242", + "in_reply_to_screen_name": "ShawnGorton", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 17:22:44 +0000 2014", + "id": 469891188909412353, + "id_str": "469891188909412353", + "text": "@ShawnGorton telling people to stop \"overreacting\" when they criticize toxic cultural problems is a silencing tactic of the privileged group", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 469890583264129024, + "in_reply_to_status_id_str": "469890583264129024", + "in_reply_to_user_id": 185808242, + "in_reply_to_user_id_str": "185808242", + "in_reply_to_screen_name": "ShawnGorton", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 17:21:02 +0000 2014", + "id": 469890761283358720, + "id_str": "469890761283358720", + "text": "@ShawnGorton then why do you think I would do anything but take feminism and gay representation in geek culture as serious freaking business", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 469890583264129024, + "in_reply_to_status_id_str": "469890583264129024", + "in_reply_to_user_id": 185808242, + "in_reply_to_user_id_str": "185808242", + "in_reply_to_screen_name": "ShawnGorton", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 17:20:06 +0000 2014", + "id": 469890527358636032, + "id_str": "469890527358636032", + "text": "@ShawnGorton serious question: did you just follow me yesterday?", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 469890317039042560, + "in_reply_to_status_id_str": "469890317039042560", + "in_reply_to_user_id": 185808242, + "in_reply_to_user_id_str": "185808242", + "in_reply_to_screen_name": "ShawnGorton", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 17:18:02 +0000 2014", + "id": 469890005872414720, + "id_str": "469890005872414720", + "text": "@ShawnGorton over-held producers of culture as responsible for what they put out under their brand name????", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 469889309982855168, + "in_reply_to_status_id_str": "469889309982855168", + "in_reply_to_user_id": 185808242, + "in_reply_to_user_id_str": "185808242", + "in_reply_to_screen_name": "ShawnGorton", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 17:17:40 +0000 2014", + "id": 469889915212546049, + "id_str": "469889915212546049", + "text": "@ShawnGorton over-pointed-out that they're making use of the same female-sexuality-as-evil-incarnate used in overtly sexist material?", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 469889309982855168, + "in_reply_to_status_id_str": "469889309982855168", + "in_reply_to_user_id": 185808242, + "in_reply_to_user_id_str": "185808242", + "in_reply_to_screen_name": "ShawnGorton", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 17:16:48 +0000 2014", + "id": 469889696794169344, + "id_str": "469889696794169344", + "text": "@ShawnGorton What exactly have I \"over\"-anything? Over-pointed-out that Nintendo uses \"family friendly\" as a faux excuse for gay exclusion?", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 469889309982855168, + "in_reply_to_status_id_str": "469889309982855168", + "in_reply_to_user_id": 185808242, + "in_reply_to_user_id_str": "185808242", + "in_reply_to_screen_name": "ShawnGorton", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 17:15:10 +0000 2014", + "id": 469889286159208450, + "id_str": "469889286159208450", + "text": "RT @cr1901: @0xabad1dea *waits for CDi references*", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Fri May 23 17:14:57 +0000 2014", + "id": 469889229397696512, + "id_str": "469889229397696512", + "text": "@0xabad1dea *waits for CDi references*", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 469888968734306305, + "in_reply_to_status_id_str": "469888968734306305", + "in_reply_to_user_id": 126030998, + "in_reply_to_user_id_str": "126030998", + "in_reply_to_screen_name": "0xabad1dea", + "user": { + "id": 347486511, + "id_str": "347486511" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 3, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "0xabad1dea", + "name": "Melissa", + "id": 126030998, + "id_str": "126030998", + "indices": [ + 0, + 11 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 1, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 17:14:37 +0000 2014", + "id": 469889145956233216, + "id_str": "469889145956233216", + "text": "@ShawnGorton ... ... ... ... ... ... ... (╯°□°)╯︵ ┻━┻", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 469888987985768448, + "in_reply_to_status_id_str": "469888987985768448", + "in_reply_to_user_id": 185808242, + "in_reply_to_user_id_str": "185808242", + "in_reply_to_screen_name": "ShawnGorton", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "ja" + }, + { + "created_at": "Fri May 23 17:13:54 +0000 2014", + "id": 469888968734306305, + "id_str": "469888968734306305", + "text": "Attn everyone: I am aware that Nintendo is outsourcing this Zelda game\n\n~ That doesn't make it not a Zelda, therefore Nintendo, game ~", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 17:12:39 +0000 2014", + "id": 469888652106289152, + "id_str": "469888652106289152", + "text": "@ShawnGorton literally the only thing more \"Nintendo\" than the Zelda franchise is Mario himself", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 469888333599223808, + "in_reply_to_status_id_str": "469888333599223808", + "in_reply_to_user_id": 185808242, + "in_reply_to_user_id_str": "185808242", + "in_reply_to_screen_name": "ShawnGorton", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 17:11:50 +0000 2014", + "id": 469888448204378113, + "id_str": "469888448204378113", + "text": "@ShawnGorton > Hyrule\n\n> Hyrule \n\n> H Y R U L E", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 469888333599223808, + "in_reply_to_status_id_str": "469888333599223808", + "in_reply_to_user_id": 185808242, + "in_reply_to_user_id_str": "185808242", + "in_reply_to_screen_name": "ShawnGorton", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 17:09:59 +0000 2014", + "id": 469887982871519232, + "id_str": "469887982871519232", + "text": "@thecharrr It's a Zelda game. It's directly tied to the very core of Nintendo's brand. Doesn't really matter who they ship it out to.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 469887395727302658, + "in_reply_to_status_id_str": "469887395727302658", + "in_reply_to_user_id": 145878390, + "in_reply_to_user_id_str": "145878390", + "in_reply_to_screen_name": "thecharrr", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 17:09:01 +0000 2014", + "id": 469887739115364352, + "id_str": "469887739115364352", + "text": "Nintendo: \"We can't be gay-inclusive; that's not family friendly. Here's a nearly naked buxom villainess for Zelda\"", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 164, + "favorite_count": 105, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 17:05:48 +0000 2014", + "id": 469886927181979649, + "id_str": "469886927181979649", + "text": "Thanks Nintendo. The \"embodiment of evil\" is a nearly naked woman who hides her face, depersonalizing her sexuality http://t.co/rgl9AMb1i0", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 37, + "favorite_count": 18, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 16:51:43 +0000 2014", + "id": 469883384546603008, + "id_str": "469883384546603008", + "text": "Unicode support in the terminal, a short story http://t.co/mxHOPu7DyR", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 9, + "favorite_count": 18, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 16:35:12 +0000 2014", + "id": 469879226314022912, + "id_str": "469879226314022912", + "text": "@JZdziarski I imagine there were conversations with 🇺🇸 we’re not party to where they begged Twitter not to start stuff with Russia", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469878002466455552, + "in_reply_to_status_id_str": "469878002466455552", + "in_reply_to_user_id": 1267770224, + "in_reply_to_user_id_str": "1267770224", + "in_reply_to_screen_name": "JZdziarski", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 16:27:21 +0000 2014", + "id": 469877250729738242, + "id_str": "469877250729738242", + "text": "I am going to freaking well murder iOS autocorrect for removing an apostrophe from the middle of my tweet literally AFTER I hit send button", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 9, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 16:25:45 +0000 2014", + "id": 469876851603947520, + "id_str": "469876851603947520", + "text": "Twitter (3000 employees) can’t single-handedly save intl free speech in the face of opponents like Russia: they need political support", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 4, + "favorite_count": 12, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 16:20:41 +0000 2014", + "id": 469875572848726016, + "id_str": "469875572848726016", + "text": "RT @tdierks: I was recently asked why TLS is called \"TLS\" and not \"SSL 3.1\" (a fairer description). Here's why: http://t.co/cvuHnxG0GK", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Fri May 23 13:59:33 +0000 2014", + "id": 469840057856434176, + "id_str": "469840057856434176", + "text": "I was recently asked why TLS is called \"TLS\" and not \"SSL 3.1\" (a fairer description). Here's why: http://t.co/cvuHnxG0GK", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 15845390, + "id_str": "15845390" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 61, + "favorite_count": 53, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/cvuHnxG0GK", + "expanded_url": "http://tim.dierks.org/2014/05/security-standards-and-name-changes-in.html", + "display_url": "tim.dierks.org/2014/05/securi…", + "indices": [ + 99, + 121 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 61, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 16:17:57 +0000 2014", + "id": 469874886950027264, + "id_str": "469874886950027264", + "text": "I understand WHY Twitter caved — because it’s a relatively small company suddenly sitting at Nation-State table https://t.co/NCIpv02xcF", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 9, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 16:12:00 +0000 2014", + "id": 469873387264045057, + "id_str": "469873387264045057", + "text": "@MarkKriegsman whoa cool", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469860026992300032, + "in_reply_to_status_id_str": "469860026992300032", + "in_reply_to_user_id": 2121681, + "in_reply_to_user_id_str": "2121681", + "in_reply_to_screen_name": "MarkKriegsman", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 16:08:24 +0000 2014", + "id": 469872482175180800, + "id_str": "469872482175180800", + "text": "@DrPizza @sjvn not to imply I think everyone who buys cheap can magically come up with more cash to get a proper machine", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469856503583633409, + "in_reply_to_status_id_str": "469856503583633409", + "in_reply_to_user_id": 11375732, + "in_reply_to_user_id_str": "11375732", + "in_reply_to_screen_name": "DrPizza", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 16:07:46 +0000 2014", + "id": 469872325652148224, + "id_str": "469872325652148224", + "text": "@DrPizza @sjvn I have to take the doctor’s side here, there’s a huge correlation between buying cheap and having constant computer problems", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469856503583633409, + "in_reply_to_status_id_str": "469856503583633409", + "in_reply_to_user_id": 11375732, + "in_reply_to_user_id_str": "11375732", + "in_reply_to_screen_name": "DrPizza", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 16:05:17 +0000 2014", + "id": 469871700373696512, + "id_str": "469871700373696512", + "text": "@filcab it’s on topics on which we are on the same side that he generally speaks", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469871511860310016, + "in_reply_to_status_id_str": "469871511860310016", + "in_reply_to_user_id": 15319713, + "in_reply_to_user_id_str": "15319713", + "in_reply_to_screen_name": "filcab", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 16:01:38 +0000 2014", + "id": 469870780491522048, + "id_str": "469870780491522048", + "text": "@TakoArishi @m1sp I draw Mispy with more of a sandy color of hair. Also I’d never force him to sound Australian <3", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469870139757060098, + "in_reply_to_status_id_str": "469870139757060098", + "in_reply_to_user_id": 22107482, + "in_reply_to_user_id_str": "22107482", + "in_reply_to_screen_name": "TakoArishi", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 16:01:01 +0000 2014", + "id": 469870624555675648, + "id_str": "469870624555675648", + "text": "@needshortername http://t.co/dOoO82gBa4", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469870179821043713, + "in_reply_to_status_id_str": "469870179821043713", + "in_reply_to_user_id": 26157562, + "in_reply_to_user_id_str": "26157562", + "in_reply_to_screen_name": "needshortername", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Fri May 23 15:58:41 +0000 2014", + "id": 469870038644973568, + "id_str": "469870038644973568", + "text": "@vogon that was the first way I figured to take the picture without having to move", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469869870331346944, + "in_reply_to_status_id_str": "469869870331346944", + "in_reply_to_user_id": 6326912, + "in_reply_to_user_id_str": "6326912", + "in_reply_to_screen_name": "vogon", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 15:57:39 +0000 2014", + "id": 469869777897680896, + "id_str": "469869777897680896", + "text": ".@vogon generic dollar stylus bought in bulk http://t.co/TUtCsxbPea", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469869416335691776, + "in_reply_to_status_id_str": "469869416335691776", + "in_reply_to_user_id": 6326912, + "in_reply_to_user_id_str": "6326912", + "in_reply_to_screen_name": "vogon", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 5, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 15:54:05 +0000 2014", + "id": 469868878433382400, + "id_str": "469868878433382400", + "text": "Forget computer science, I have a promising career in 🇮🇳🇫🇴🇬🇷🇦🇵🇭🇮🇨🇸 (full size: https://t.co/SNP2gOllrY ) http://t.co/6nIJc6sCtL", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 67, + "favorite_count": 85, + "favorited": true, + "retweeted": true, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 15:41:47 +0000 2014", + "id": 469865786178543616, + "id_str": "469865786178543616", + "text": "@jtstrocel which is precisely the sort of useless playing with numbers that an intellectual of his station should avoid", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469862491389190145, + "in_reply_to_status_id_str": "469862491389190145", + "in_reply_to_user_id": 11766252, + "in_reply_to_user_id_str": "11766252", + "in_reply_to_screen_name": "jtstrocel", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 15:41:11 +0000 2014", + "id": 469865633346514944, + "id_str": "469865633346514944", + "text": "@jtstrocel the thing that raised my eyebrows this morning was him saying that UKIP won because 50% of people are below average IQ", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469862491389190145, + "in_reply_to_status_id_str": "469862491389190145", + "in_reply_to_user_id": 11766252, + "in_reply_to_user_id_str": "11766252", + "in_reply_to_screen_name": "jtstrocel", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 15:08:12 +0000 2014", + "id": 469857332261027840, + "id_str": "469857332261027840", + "text": "@McGrewSecurity now I have to go programmatically crash a car to not let you down.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469857064697987072, + "in_reply_to_status_id_str": "469857064697987072", + "in_reply_to_user_id": 13275122, + "in_reply_to_user_id_str": "13275122", + "in_reply_to_screen_name": "McGrewSecurity", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 15:06:37 +0000 2014", + "id": 469856933999280129, + "id_str": "469856933999280129", + "text": "@McGrewSecurity by retweeting this you have consented to my rock star status", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469856665639325696, + "in_reply_to_status_id_str": "469856665639325696", + "in_reply_to_user_id": 13275122, + "in_reply_to_user_id_str": "13275122", + "in_reply_to_screen_name": "McGrewSecurity", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 15:04:22 +0000 2014", + "id": 469856367025848321, + "id_str": "469856367025848321", + "text": "@McGrewSecurity it’s not a car but it will have to do http://t.co/hZxGieLTd4", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469831959116787713, + "in_reply_to_status_id_str": "469831959116787713", + "in_reply_to_user_id": 13275122, + "in_reply_to_user_id_str": "13275122", + "in_reply_to_screen_name": "McGrewSecurity", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 15:02:30 +0000 2014", + "id": 469855899902029824, + "id_str": "469855899902029824", + "text": "@zauspar about half the towns in my story are directly based on my dreams.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469827718788710400, + "in_reply_to_status_id_str": "469827718788710400", + "in_reply_to_user_id": 216571343, + "in_reply_to_user_id_str": "216571343", + "in_reply_to_screen_name": "zauspar", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 14:58:55 +0000 2014", + "id": 469854996637679616, + "id_str": "469854996637679616", + "text": "@turpit @samuelpepys … but that is a pretty unfortunate name ripe for the punning now that I think about it.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469813053073416192, + "in_reply_to_status_id_str": "469813053073416192", + "in_reply_to_user_id": 22623075, + "in_reply_to_user_id_str": "22623075", + "in_reply_to_screen_name": "turpit", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 14:57:40 +0000 2014", + "id": 469854684807974912, + "id_str": "469854684807974912", + "text": "@turpit @samuelpepys but it’s true, that really does happen. People were just fundamentally misinformed as to why.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469813053073416192, + "in_reply_to_status_id_str": "469813053073416192", + "in_reply_to_user_id": 22623075, + "in_reply_to_user_id_str": "22623075", + "in_reply_to_screen_name": "turpit", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 14:52:49 +0000 2014", + "id": 469853462541643778, + "id_str": "469853462541643778", + "text": "For as much as me and Dawkins are theoretically on the same side, he sure says a lot of stuff that makes me ಠ_ಠ or even (ㆆ▃ㆆ)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 6, + "favorite_count": 13, + "favorited": true, + "retweeted": false, + "lang": "ko" + }, + { + "created_at": "Fri May 23 14:41:39 +0000 2014", + "id": 469850651028369409, + "id_str": "469850651028369409", + "text": "@mirell this isn’t the first time but it’s been a while", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469849064616361988, + "in_reply_to_status_id_str": "469849064616361988", + "in_reply_to_user_id": 12733992, + "in_reply_to_user_id_str": "12733992", + "in_reply_to_screen_name": "mirell", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 14:41:16 +0000 2014", + "id": 469850555305975808, + "id_str": "469850555305975808", + "text": "@tapbot_paul actually— I do have twitter 2FA— which just goes to show that I model the phone being outside of my control as impossible", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469846490282618880, + "in_reply_to_status_id_str": "469846490282618880", + "in_reply_to_user_id": 18247541, + "in_reply_to_user_id_str": "18247541", + "in_reply_to_screen_name": "tapbot_paul", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 14:35:10 +0000 2014", + "id": 469849019150499840, + "id_str": "469849019150499840", + "text": "@tapbot_paul ¯\\(º_o)/¯ 99% of all texts I've ever gotten have been content-free pings for attention", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 469846490282618880, + "in_reply_to_status_id_str": "469846490282618880", + "in_reply_to_user_id": 18247541, + "in_reply_to_user_id_str": "18247541", + "in_reply_to_screen_name": "tapbot_paul", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 14:29:50 +0000 2014", + "id": 469847679325835264, + "id_str": "469847679325835264", + "text": "If the NSA is monitoring my debit card purchases, I'll find out when they get exasperated and send me a stern note about my food choices", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 7, + "favorite_count": 14, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 14:22:34 +0000 2014", + "id": 469845849171062784, + "id_str": "469845849171062784", + "text": "@zauspar whoops infoleak", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 469844409983713280, + "in_reply_to_status_id_str": "469844409983713280", + "in_reply_to_user_id": 216571343, + "in_reply_to_user_id_str": "216571343", + "in_reply_to_screen_name": "zauspar", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 14:16:27 +0000 2014", + "id": 469844308678279168, + "id_str": "469844308678279168", + "text": "Oh good. Incoming wave of iMessage spam http://t.co/g1k60L8W2n", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 14:09:39 +0000 2014", + "id": 469842599746871298, + "id_str": "469842599746871298", + "text": "My husband is the kind of guy who, if you wake him up and say “it’s ten o’ clock,” will go back to sleep because you didn’t say to get up", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 14, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 14:02:33 +0000 2014", + "id": 469840811916804096, + "id_str": "469840811916804096", + "text": "@Talen_Lee — given the chapter by chapter nature it’s totally acceptable IMO to put in a few retroactive edits", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469728863975514114, + "in_reply_to_status_id_str": "469728863975514114", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 14:01:50 +0000 2014", + "id": 469840632614096896, + "id_str": "469840632614096896", + "text": "@Talen_Lee so you left me a question while I was sleeping and I forgot to answer it —", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469728863975514114, + "in_reply_to_status_id_str": "469728863975514114", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 13:56:09 +0000 2014", + "id": 469839201425297408, + "id_str": "469839201425297408", + "text": "@implyinCostanza @thegrugq they actually didn’t post the unredacted slide in question?… but it’d be trivial to fake unredact it anyway", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469838414725255168, + "in_reply_to_status_id_str": "469838414725255168", + "in_reply_to_user_id": 29002413, + "in_reply_to_user_id_str": "29002413", + "in_reply_to_screen_name": "implyinCostanza", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 13:50:31 +0000 2014", + "id": 469837785939976193, + "id_str": "469837785939976193", + "text": ".@thegrugq isn’t this the second time in a row they’ve claimed to have been surprised by something everyone on twitter anticipated", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469712412015218688, + "in_reply_to_status_id_str": "469712412015218688", + "in_reply_to_user_id": 18983429, + "in_reply_to_user_id_str": "18983429", + "in_reply_to_screen_name": "thegrugq", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 4, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 13:48:14 +0000 2014", + "id": 469837211001970690, + "id_str": "469837211001970690", + "text": "RT @thegrugq: “@W7VOA: US Amb. @KristieKenney tells me #ThaiCoup came \"as a bit of a surprise.\"”< splendid intelligence work CIA! next time…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Fri May 23 05:32:20 +0000 2014", + "id": 469712412015218688, + "id_str": "469712412015218688", + "text": "“@W7VOA: US Amb. @KristieKenney tells me #ThaiCoup came \"as a bit of a surprise.\"”< splendid intelligence work CIA! next time read the news", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 18983429, + "id_str": "18983429" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 20, + "favorite_count": 6, + "entities": { + "hashtags": [ + { + "text": "ThaiCoup", + "indices": [ + 41, + 50 + ] + } + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "W7VOA", + "name": "Steve Herman", + "id": 17919393, + "id_str": "17919393", + "indices": [ + 1, + 7 + ] + }, + { + "screen_name": "KristieKenney", + "name": "Kristie Kenney", + "id": 49276934, + "id_str": "49276934", + "indices": [ + 17, + 31 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 20, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 13:43:54 +0000 2014", + "id": 469836120772341760, + "id_str": "469836120772341760", + "text": "Everyone who didn’t think the “X” country in the phone tapping docs was Afghanistan owes @thegrugq ten dollars. You can send it through me", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 5, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 13:33:24 +0000 2014", + "id": 469833474460094464, + "id_str": "469833474460094464", + "text": "@kyhwana @m1sp which bot??", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469786582484938753, + "in_reply_to_status_id_str": "469786582484938753", + "in_reply_to_user_id": 30135560, + "in_reply_to_user_id_str": "30135560", + "in_reply_to_screen_name": "kyhwana", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 13:30:14 +0000 2014", + "id": 469832678653849600, + "id_str": "469832678653849600", + "text": "@reversemode 🌟", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469749661960765442, + "in_reply_to_status_id_str": "469749661960765442", + "in_reply_to_user_id": 95664135, + "in_reply_to_user_id_str": "95664135", + "in_reply_to_screen_name": "reversemode", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Fri May 23 04:57:09 +0000 2014", + "id": 469703558913609728, + "id_str": "469703558913609728", + "text": "@Kufat @afreak looks like something that might be fixable with just the knobs, assuming you can get to them", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469703093433552896, + "in_reply_to_status_id_str": "469703093433552896", + "in_reply_to_user_id": 207691003, + "in_reply_to_user_id_str": "207691003", + "in_reply_to_screen_name": "Kufat", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 04:53:10 +0000 2014", + "id": 469702557292843008, + "id_str": "469702557292843008", + "text": "@zhuowei but I watched you live tweet hacking on steam. Not having actionable results != you didn’t learn anything", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469695633893257217, + "in_reply_to_status_id_str": "469695633893257217", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 04:42:13 +0000 2014", + "id": 469699799189819392, + "id_str": "469699799189819392", + "text": "GCHQ hates her http://t.co/XsJ7JCKQrd", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 11, + "favorite_count": 6, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 04:41:02 +0000 2014", + "id": 469699503105134593, + "id_str": "469699503105134593", + "text": "@Talen_Lee .............", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 469698284928245760, + "in_reply_to_status_id_str": "469698284928245760", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 04:31:48 +0000 2014", + "id": 469697177921413121, + "id_str": "469697177921413121", + "text": "Why do I have so many \"that's my fetish\" reaction gifs saved to my computer. When do I think I am going to use these", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 10, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 04:22:56 +0000 2014", + "id": 469694945813479425, + "id_str": "469694945813479425", + "text": "I feel like “not turing complete” is a personal challenge http://t.co/CTrZmI2UuN", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 5, + "favorite_count": 14, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 03:39:04 +0000 2014", + "id": 469683907487481856, + "id_str": "469683907487481856", + "text": "@sambowne I phrased it very particularly to say I was referring to consensual marriage between adults… … …", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469683515798212610, + "in_reply_to_status_id_str": "469683515798212610", + "in_reply_to_user_id": 20961162, + "in_reply_to_user_id_str": "20961162", + "in_reply_to_screen_name": "sambowne", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 03:36:44 +0000 2014", + "id": 469683318447804416, + "id_str": "469683318447804416", + "text": "@sambowne … I phrased this tweet very particularly.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469683104743817216, + "in_reply_to_status_id_str": "469683104743817216", + "in_reply_to_user_id": 20961162, + "in_reply_to_user_id_str": "20961162", + "in_reply_to_screen_name": "sambowne", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 03:28:34 +0000 2014", + "id": 469681266087178241, + "id_str": "469681266087178241", + "text": "@demize95 6yo me had slim pickings for friends. I doubt it would have worked out long term", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469680499263557632, + "in_reply_to_status_id_str": "469680499263557632", + "in_reply_to_user_id": 137133048, + "in_reply_to_user_id_str": "137133048", + "in_reply_to_screen_name": "demize95", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 03:20:06 +0000 2014", + "id": 469679135883673600, + "id_str": "469679135883673600", + "text": "@mendel this is a lot creepier if you realize I'm quoting the song Hellfire from The Hunchback of Notre Dame", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 469678944426274816, + "in_reply_to_status_id_str": "469678944426274816", + "in_reply_to_user_id": 2352121, + "in_reply_to_user_id_str": "2352121", + "in_reply_to_screen_name": "mendel", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 03:19:01 +0000 2014", + "id": 469678862767386624, + "id_str": "469678862767386624", + "text": "@hectoroid I ~very specifically~ went back and added the clause \"when I grew up\" so no one could make this cheap joke", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 469678751878369282, + "in_reply_to_status_id_str": "469678751878369282", + "in_reply_to_user_id": 348569430, + "in_reply_to_user_id_str": "348569430", + "in_reply_to_screen_name": "hectoroid", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 03:17:34 +0000 2014", + "id": 469678498714382336, + "id_str": "469678498714382336", + "text": ".@mendel a particular Christina! The sun caught in her raven hair.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 469677877693128705, + "in_reply_to_status_id_str": "469677877693128705", + "in_reply_to_user_id": 2352121, + "in_reply_to_user_id_str": "2352121", + "in_reply_to_screen_name": "mendel", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 5, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 03:14:47 +0000 2014", + "id": 469677798013935616, + "id_str": "469677798013935616", + "text": "When I was six years old, I wanted to marry a girl named Christina when I grew up. This was, at the time, legal in zero states. Progress.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 18, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 03:04:50 +0000 2014", + "id": 469675293998067714, + "id_str": "469675293998067714", + "text": "@semibogan oh there was plenty of messed up to go around, most of which I did not appreciate as messed up at the time", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 469674267282399232, + "in_reply_to_status_id_str": "469674267282399232", + "in_reply_to_user_id": 168436347, + "in_reply_to_user_id_str": "168436347", + "in_reply_to_screen_name": "semibogan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 03:04:21 +0000 2014", + "id": 469675168986853376, + "id_str": "469675168986853376", + "text": "@CaptJgvex @comex no, catholics are also workers of the devil, silly.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 469673936998113281, + "in_reply_to_status_id_str": "469673936998113281", + "in_reply_to_user_id": 385035631, + "in_reply_to_user_id_str": "385035631", + "in_reply_to_screen_name": "CaptJgvex", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 02:56:57 +0000 2014", + "id": 469673307609251840, + "id_str": "469673307609251840", + "text": "@semibogan even if I did say I was going to marry that girl named Christina (my mom explained that girls can't do that)", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 469669633054621698, + "in_reply_to_status_id_str": "469669633054621698", + "in_reply_to_user_id": 168436347, + "in_reply_to_user_id_str": "168436347", + "in_reply_to_screen_name": "semibogan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 02:56:36 +0000 2014", + "id": 469673219503689728, + "id_str": "469673219503689728", + "text": "@semibogan yeah pretty much and of course it'd turn out I was bi and stuff but I didn't know that when I was six", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 469669633054621698, + "in_reply_to_status_id_str": "469669633054621698", + "in_reply_to_user_id": 168436347, + "in_reply_to_user_id_str": "168436347", + "in_reply_to_screen_name": "semibogan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 02:39:24 +0000 2014", + "id": 469668891237437440, + "id_str": "469668891237437440", + "text": "@semibogan but yeah, it's a tool of control of repressive relig to tell you that all positive thoughts you have about yourself are dangerous", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 469668532301488128, + "in_reply_to_status_id_str": "469668532301488128", + "in_reply_to_user_id": 168436347, + "in_reply_to_user_id_str": "168436347", + "in_reply_to_screen_name": "semibogan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 02:37:12 +0000 2014", + "id": 469668338797248512, + "id_str": "469668338797248512", + "text": "@semibogan not sure if worried I'm unraveling because I'm responding to myself, or response to the original statement", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 469667781709795329, + "in_reply_to_status_id_str": "469667781709795329", + "in_reply_to_user_id": 168436347, + "in_reply_to_user_id_str": "168436347", + "in_reply_to_screen_name": "semibogan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 02:36:34 +0000 2014", + "id": 469668177203302401, + "id_str": "469668177203302401", + "text": "@0x00string so it's mostly just these intense bursts of normalized emotional and mental abuse", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 469667721509339137, + "in_reply_to_status_id_str": "469667721509339137", + "in_reply_to_user_id": 265096889, + "in_reply_to_user_id_str": "265096889", + "in_reply_to_screen_name": "0x00string", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 02:36:15 +0000 2014", + "id": 469668099742896128, + "id_str": "469668099742896128", + "text": "@0x00string I spent most of my childhood \"American poor\" which was occasionally stressful but otherwise not some sort of trauma", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 469667721509339137, + "in_reply_to_status_id_str": "469667721509339137", + "in_reply_to_user_id": 265096889, + "in_reply_to_user_id_str": "265096889", + "in_reply_to_screen_name": "0x00string", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 02:33:30 +0000 2014", + "id": 469667407481802752, + "id_str": "469667407481802752", + "text": "@0x00string It's weird. I feel like it \"overall\" wasn't that bad, just a few rough spots, but then stories like that freak people out", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 469667188409106432, + "in_reply_to_status_id_str": "469667188409106432", + "in_reply_to_user_id": 265096889, + "in_reply_to_user_id_str": "265096889", + "in_reply_to_screen_name": "0x00string", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 02:32:44 +0000 2014", + "id": 469667215705649153, + "id_str": "469667215705649153", + "text": "@0xabad1dea where did all my mental health problems come from as I got older? Gee what a mystery", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 469666669187858432, + "in_reply_to_status_id_str": "469666669187858432", + "in_reply_to_user_id": 126030998, + "in_reply_to_user_id_str": "126030998", + "in_reply_to_screen_name": "0xabad1dea", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 4, + "favorite_count": 11, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 02:31:34 +0000 2014", + "id": 469666921151885312, + "id_str": "469666921151885312", + "text": "@MaruZenunim someone isn't watching the irc channel :p but yes. Really.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 469666751719157760, + "in_reply_to_status_id_str": "469666751719157760", + "in_reply_to_user_id": 628721558, + "in_reply_to_user_id_str": "628721558", + "in_reply_to_screen_name": "MaruZenunim", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 02:30:34 +0000 2014", + "id": 469666669187858432, + "id_str": "469666669187858432", + "text": "When I was a small child, a teacher told me that \"self esteem\" is a tool of the devil and his workers will tell you to have more of it.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 20, + "favorite_count": 21, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 02:02:49 +0000 2014", + "id": 469659684207861760, + "id_str": "469659684207861760", + "text": "Some of my friends got put on a \"social justice extremist\" list and I didn't. I'm upset that senpai didn't notice me", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 19, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 01:47:21 +0000 2014", + "id": 469655792795136000, + "id_str": "469655792795136000", + "text": "@hectoroid @demize @demize95 whoops.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 469655695248617472, + "in_reply_to_status_id_str": "469655695248617472", + "in_reply_to_user_id": 348569430, + "in_reply_to_user_id_str": "348569430", + "in_reply_to_screen_name": "hectoroid", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 01:45:06 +0000 2014", + "id": 469655228396998656, + "id_str": "469655228396998656", + "text": "<@demize> This person doesn't seem... what's the word, I don't even know... he just doesn't seem.\n<@Talen_Lee> they're unseemly", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 11, + "favorited": true, + "retweeted": true, + "lang": "en" + }, + { + "created_at": "Fri May 23 01:38:19 +0000 2014", + "id": 469653521730506752, + "id_str": "469653521730506752", + "text": "@Talen_Lee plz don’t put me on any more lists", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469653350636478464, + "in_reply_to_status_id_str": "469653350636478464", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 01:37:10 +0000 2014", + "id": 469653229131677696, + "id_str": "469653229131677696", + "text": "@aspects_ebooks OH MY GODS.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469647898645643264, + "in_reply_to_status_id_str": "469647898645643264", + "in_reply_to_user_id": 2345404375, + "in_reply_to_user_id_str": "2345404375", + "in_reply_to_screen_name": "aspects_ebooks", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 01:36:22 +0000 2014", + "id": 469653028669095936, + "id_str": "469653028669095936", + "text": "@Talen_Lee high five, fellow radical extremist! Let us go and do whatever it is “be humane to people” extremists do!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469646667067568128, + "in_reply_to_status_id_str": "469646667067568128", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 23 00:05:28 +0000 2014", + "id": 469630153711046656, + "id_str": "469630153711046656", + "text": "why computer so lag http://t.co/KyaoAR8Y1p", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 8, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu May 22 23:49:34 +0000 2014", + "id": 469626150717632512, + "id_str": "469626150717632512", + "text": "@alt_m1sp :<", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469624499646631936, + "in_reply_to_status_id_str": "469624499646631936", + "in_reply_to_user_id": 2401670173, + "in_reply_to_user_id_str": "2401670173", + "in_reply_to_screen_name": "alt_m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "vi" + }, + { + "created_at": "Thu May 22 23:40:09 +0000 2014", + "id": 469623783624421376, + "id_str": "469623783624421376", + "text": "I like how Pokemon XY lets you become obscenely wealthy by abusing a country club’s willingness to believe they’re better than you", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 9, + "favorite_count": 19, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 22 23:29:58 +0000 2014", + "id": 469621221357649921, + "id_str": "469621221357649921", + "text": "@puellavulnerata http://t.co/He8MI4OD6j", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469620102300594176, + "in_reply_to_status_id_str": "469620102300594176", + "in_reply_to_user_id": 54666727, + "in_reply_to_user_id_str": "54666727", + "in_reply_to_screen_name": "puellavulnerata", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Thu May 22 23:22:03 +0000 2014", + "id": 469619225603346432, + "id_str": "469619225603346432", + "text": "@bcrypt has anyone asked you out with any of these methods?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469613752812179457, + "in_reply_to_status_id_str": "469613752812179457", + "in_reply_to_user_id": 968881477, + "in_reply_to_user_id_str": "968881477", + "in_reply_to_screen_name": "bcrypt", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 5, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 22 23:21:01 +0000 2014", + "id": 469618968861622273, + "id_str": "469618968861622273", + "text": "@Talen_Lee nobody tell Talen I used his joke as a springboard into a comic that got, like, three hundred retweets", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 22 23:12:20 +0000 2014", + "id": 469616781682675712, + "id_str": "469616781682675712", + "text": "@zhuowei tremble at the OneDrive", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469601999114100736, + "in_reply_to_status_id_str": "469601999114100736", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 22 23:09:12 +0000 2014", + "id": 469615991891435520, + "id_str": "469615991891435520", + "text": "@zhuowei if it only communicates with steam’s servers that’s not really a problem (you got the exe from them anyway)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469615665020563456, + "in_reply_to_status_id_str": "469615665020563456", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 22 23:06:36 +0000 2014", + "id": 469615338389135360, + "id_str": "469615338389135360", + "text": "@eevee @TakoArishi I’ve placed a curse that will give you a horrible, nonsensical heisenbug in production code", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469615153567133696, + "in_reply_to_status_id_str": "469615153567133696", + "in_reply_to_user_id": 14412937, + "in_reply_to_user_id_str": "14412937", + "in_reply_to_screen_name": "eevee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 22 23:05:12 +0000 2014", + "id": 469614984742178817, + "id_str": "469614984742178817", + "text": "@FioraAeterna @Myriachan so, semi-reliable", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469614432281460736, + "in_reply_to_status_id_str": "469614432281460736", + "in_reply_to_user_id": 2468699718, + "in_reply_to_user_id_str": "2468699718", + "in_reply_to_screen_name": "FioraAeterna", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "tl" + }, + { + "created_at": "Thu May 22 23:02:15 +0000 2014", + "id": 469614242187210752, + "id_str": "469614242187210752", + "text": "@zhuowei afaik OpenSSL was the only production library to use heartbeat, so, if it’s enabled, then yes", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469591778652209152, + "in_reply_to_status_id_str": "469591778652209152", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 22 22:59:23 +0000 2014", + "id": 469613522436243457, + "id_str": "469613522436243457", + "text": "RT @dangoodin001: FBI withdraws national security letter following Microsoft challenge http://t.co/FcUPE89RVA by @dmkravets", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Thu May 22 21:19:53 +0000 2014", + "id": 469588480801005568, + "id_str": "469588480801005568", + "text": "FBI withdraws national security letter following Microsoft challenge http://t.co/FcUPE89RVA by @dmkravets", + "source": "TweetDeck", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 14150736, + "id_str": "14150736" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 8, + "favorite_count": 2, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/FcUPE89RVA", + "expanded_url": "http://ars.to/1tpWjBm", + "display_url": "ars.to/1tpWjBm", + "indices": [ + 69, + 91 + ] + } + ], + "user_mentions": [ + { + "screen_name": "dmkravets", + "name": "David Kravets", + "id": 14118608, + "id_str": "14118608", + "indices": [ + 95, + 105 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 8, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu May 22 22:57:23 +0000 2014", + "id": 469613019261968384, + "id_str": "469613019261968384", + "text": "@zhuowei 3.3 designates 1.2 if I recall correctly. Because reasons.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469587678166384640, + "in_reply_to_status_id_str": "469587678166384640", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 22 22:55:45 +0000 2014", + "id": 469612607780192256, + "id_str": "469612607780192256", + "text": "@nickdepetrillo do you keep accidentally pressing the camera button when you’re Touch ID unlocking?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469587460507594753, + "in_reply_to_status_id_str": "469587460507594753", + "in_reply_to_user_id": 40222002, + "in_reply_to_user_id_str": "40222002", + "in_reply_to_screen_name": "nickdepetrillo", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 22 22:52:42 +0000 2014", + "id": 469611842310901761, + "id_str": "469611842310901761", + "text": "@eevee I’ll find a way to make you rue those words", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469584227294388225, + "in_reply_to_status_id_str": "469584227294388225", + "in_reply_to_user_id": 14412937, + "in_reply_to_user_id_str": "14412937", + "in_reply_to_screen_name": "eevee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 22 22:50:01 +0000 2014", + "id": 469611167116034049, + "id_str": "469611167116034049", + "text": "@Myriachan is this a new bug? Can one even say that open bus can be meaningfully emulated??", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469580980521418752, + "in_reply_to_status_id_str": "469580980521418752", + "in_reply_to_user_id": 1556497868, + "in_reply_to_user_id_str": "1556497868", + "in_reply_to_screen_name": "Myriachan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 22 22:44:02 +0000 2014", + "id": 469609660727570432, + "id_str": "469609660727570432", + "text": "@geekable @osxreverser world’s highest density of “sartorial”\n\n(Yes I read all of it)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469606981804646400, + "in_reply_to_status_id_str": "469606981804646400", + "in_reply_to_user_id": 755035, + "in_reply_to_user_id_str": "755035", + "in_reply_to_screen_name": "geekable", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 22 22:43:16 +0000 2014", + "id": 469609468053839873, + "id_str": "469609468053839873", + "text": "@kx001 @sakjur rather notoriously it was formally proposed in 2007 and the internet had a field day photoshopping the thing.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469608776652570624, + "in_reply_to_status_id_str": "469608776652570624", + "in_reply_to_user_id": 35222788, + "in_reply_to_user_id_str": "35222788", + "in_reply_to_screen_name": "kx001", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 22 22:32:50 +0000 2014", + "id": 469606840733806592, + "id_str": "469606840733806592", + "text": "RT @mistydemeo: “the mere presence of… women characters, characters of color, and queer characters is viewed as inherently political” http:…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Thu May 22 20:20:20 +0000 2014", + "id": 469573498630070272, + "id_str": "469573498630070272", + "text": "“the mere presence of… women characters, characters of color, and queer characters is viewed as inherently political” http://t.co/pkrx2eypL4", + "source": "YoruFukurou", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 296622166, + "id_str": "296622166" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 50, + "favorite_count": 42, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/pkrx2eypL4", + "expanded_url": "http://www.polygon.com/2014/5/22/5741992/tomodachi-life-heroes-of-the-storm-blizzard-nintendo", + "display_url": "polygon.com/2014/5/22/5741…", + "indices": [ + 118, + 140 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 50, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu May 22 22:23:20 +0000 2014", + "id": 469604450319884289, + "id_str": "469604450319884289", + "text": "@osxreverser are you genuinely unable to treat someone with basic human decency while they have opted in to a particular style of dress?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469577572955590658, + "in_reply_to_status_id_str": "469577572955590658", + "in_reply_to_user_id": 260782997, + "in_reply_to_user_id_str": "260782997", + "in_reply_to_screen_name": "osxreverser", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 22 22:18:02 +0000 2014", + "id": 469603117697208320, + "id_str": "469603117697208320", + "text": "@helen_bleep that would be the crux of the issue yes", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469602972222369792, + "in_reply_to_status_id_str": "469602972222369792", + "in_reply_to_user_id": 17863520, + "in_reply_to_user_id_str": "17863520", + "in_reply_to_screen_name": "helen_bleep", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 22 22:17:30 +0000 2014", + "id": 469602981974142977, + "id_str": "469602981974142977", + "text": "@therulerofchina that’s the point yes :p", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469602885932949504, + "in_reply_to_status_id_str": "469602885932949504", + "in_reply_to_user_id": 315201548, + "in_reply_to_user_id_str": "315201548", + "in_reply_to_screen_name": "therulerofchina", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 22 22:17:06 +0000 2014", + "id": 469602881063362560, + "id_str": "469602881063362560", + "text": "@sakjur apparently the official excuse is some distinction between a principality and a kingdom because like that really matters these days", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469602577118932992, + "in_reply_to_status_id_str": "469602577118932992", + "in_reply_to_user_id": 63478005, + "in_reply_to_user_id_str": "63478005", + "in_reply_to_screen_name": "sakjur", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 22 22:15:27 +0000 2014", + "id": 469602466385113088, + "id_str": "469602466385113088", + "text": "Incorporating a dragon could only possibly improve the Union Jack (this is true of all flags) so I don’t understand the hesitation 🇬🇧🐉", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 4, + "favorite_count": 8, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 22 21:58:33 +0000 2014", + "id": 469598213935087616, + "id_str": "469598213935087616", + "text": "RT @derickr: \"Personal names around the world\": http://t.co/XQKLCeOCkQ /cc @cczona #phptek", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Thu May 22 19:27:57 +0000 2014", + "id": 469560311842750464, + "id_str": "469560311842750464", + "text": "\"Personal names around the world\": http://t.co/XQKLCeOCkQ /cc @cczona #phptek", + "source": "Haunt", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 14310583, + "id_str": "14310583" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 13, + "favorite_count": 12, + "entities": { + "hashtags": [ + { + "text": "phptek", + "indices": [ + 70, + 77 + ] + } + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/XQKLCeOCkQ", + "expanded_url": "http://www.w3.org/International/questions/qa-personal-names", + "display_url": "w3.org/International/…", + "indices": [ + 35, + 57 + ] + } + ], + "user_mentions": [ + { + "screen_name": "cczona", + "name": "Carina C. Zona", + "id": 39617149, + "id_str": "39617149", + "indices": [ + 62, + 69 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 13, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu May 22 21:13:33 +0000 2014", + "id": 469586887410458625, + "id_str": "469586887410458625", + "text": "RT @carolrhartsell: An Unexpected Interview http://t.co/EvFZ7VJOwB", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Thu May 22 18:19:39 +0000 2014", + "id": 469543126328414208, + "id_str": "469543126328414208", + "text": "An Unexpected Interview http://t.co/EvFZ7VJOwB", + "source": "TweetDeck", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 11679342, + "id_str": "11679342" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 293, + "favorite_count": 274, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ], + "media": [ + { + "id": 469543125656928256, + "id_str": "469543125656928256", + "indices": [ + 24, + 46 + ], + "media_url": "http://pbs.twimg.com/media/BoQm_CuCAAAoLgS.jpg", + "media_url_https": "https://pbs.twimg.com/media/BoQm_CuCAAAoLgS.jpg", + "url": "http://t.co/EvFZ7VJOwB", + "display_url": "pic.twitter.com/EvFZ7VJOwB", + "expanded_url": "http://twitter.com/carolrhartsell/status/469543126328414208/photo/1", + "type": "photo", + "sizes": { + "large": { + "w": 600, + "h": 431, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 600, + "h": 431, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 244, + "resize": "fit" + } + } + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 293, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu May 22 20:45:30 +0000 2014", + "id": 469579829025968129, + "id_str": "469579829025968129", + "text": "(If you think about it, \"quick, lend me your time machine\" doesn't make much sense unless there's an imminent meteor strike.)", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 7, + "favorite_count": 14, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 22 20:44:07 +0000 2014", + "id": 469579482949767168, + "id_str": "469579482949767168", + "text": "–Quick, lend me your time machine to save humanity\n–No, killing Hitler never works!\n–Hitler? I just looked up the inventor of little endian", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 30, + "favorite_count": 45, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 22 20:03:05 +0000 2014", + "id": 469569157340856320, + "id_str": "469569157340856320", + "text": "@amazingant byod is out of the question for the purposes of this device", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 469568794189660160, + "in_reply_to_status_id_str": "469568794189660160", + "in_reply_to_user_id": 20122387, + "in_reply_to_user_id_str": "20122387", + "in_reply_to_screen_name": "amazingant", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 22 20:02:40 +0000 2014", + "id": 469569052621688832, + "id_str": "469569052621688832", + "text": "@amazingant I'm baffled that our IT dept ever stocked them to begin with.", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 469568141061013504, + "in_reply_to_status_id_str": "469568141061013504", + "in_reply_to_user_id": 20122387, + "in_reply_to_user_id_str": "20122387", + "in_reply_to_screen_name": "amazingant", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 22 20:00:09 +0000 2014", + "id": 469568418182856704, + "id_str": "469568418182856704", + "text": "@amazingant because I needed a new laptop on short notice and this bottom of the barrel trash was all they had ready to go", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 469568141061013504, + "in_reply_to_status_id_str": "469568141061013504", + "in_reply_to_user_id": 20122387, + "in_reply_to_user_id_str": "20122387", + "in_reply_to_screen_name": "amazingant", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 22 19:59:51 +0000 2014", + "id": 469568342639259648, + "id_str": "469568342639259648", + "text": "@amazingant work condemned me to use an enormous, 768px, megaton slow laptop as of about a month ago", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 469568141061013504, + "in_reply_to_status_id_str": "469568141061013504", + "in_reply_to_user_id": 20122387, + "in_reply_to_user_id_str": "20122387", + "in_reply_to_screen_name": "amazingant", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 22 19:59:04 +0000 2014", + "id": 469568143023939584, + "id_str": "469568143023939584", + "text": "@USSJoin oh, *I* condemned it the same day I got it. But there's paperwork and process involved.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 469567844842500097, + "in_reply_to_status_id_str": "469567844842500097", + "in_reply_to_user_id": 7084032, + "in_reply_to_user_id_str": "7084032", + "in_reply_to_screen_name": "USSJoin", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 22 19:57:06 +0000 2014", + "id": 469567650335830017, + "id_str": "469567650335830017", + "text": "Good news, the Terrible Worktop has been slated for execution. It was fun while it lasted, pernicious hellbeast of poor hardware quality", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 22 19:25:17 +0000 2014", + "id": 469559644852322304, + "id_str": "469559644852322304", + "text": "I’ve gotten so used to The One Photograph Of Snowden as his sole representation that these new ones all look photoshopped", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 10, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 22 19:09:49 +0000 2014", + "id": 469555749212160000, + "id_str": "469555749212160000", + "text": "\"Super-rich white man in direct position of national power: 'Myself, I'm not offended by this racial slur for another people-group'\"", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 469554482209366017, + "in_reply_to_status_id_str": "469554482209366017", + "in_reply_to_user_id": 126030998, + "in_reply_to_user_id_str": "126030998", + "in_reply_to_screen_name": "0xabad1dea", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 8, + "favorite_count": 9, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 22 19:06:16 +0000 2014", + "id": 469554857234685952, + "id_str": "469554857234685952", + "text": "RT @mikko: Oh, Google Maps... http://t.co/jzyqoawElo", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Thu May 22 18:52:51 +0000 2014", + "id": 469551481423945728, + "id_str": "469551481423945728", + "text": "Oh, Google Maps... http://t.co/jzyqoawElo", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 23566038, + "id_str": "23566038" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1057, + "favorite_count": 488, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ], + "media": [ + { + "id": 469551479314206720, + "id_str": "469551479314206720", + "indices": [ + 19, + 41 + ], + "media_url": "http://pbs.twimg.com/media/BoQulShIUAAT5Ir.png", + "media_url_https": "https://pbs.twimg.com/media/BoQulShIUAAT5Ir.png", + "url": "http://t.co/jzyqoawElo", + "display_url": "pic.twitter.com/jzyqoawElo", + "expanded_url": "http://twitter.com/mikko/status/469551481423945728/photo/1", + "type": "photo", + "sizes": { + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 956, + "h": 656, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 412, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 233, + "resize": "fit" + } + } + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "de" + }, + "retweet_count": 1057, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "de" + }, + { + "created_at": "Thu May 22 19:04:47 +0000 2014", + "id": 469554482209366017, + "id_str": "469554482209366017", + "text": "I like that McCain took the time to let us know that he personally is not offended by the name “Redskins” http://t.co/B7hKS89bez 😐", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu May 22 18:45:01 +0000 2014", + "id": 469549510537265153, + "id_str": "469549510537265153", + "text": "RT @leeflower: The idea that 'geek' is the opposite of 'bully' allows bullying geeks to wrap bad behavior in entitlement. It's gross.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Thu May 22 16:26:39 +0000 2014", + "id": 469514686850162688, + "id_str": "469514686850162688", + "text": "The idea that 'geek' is the opposite of 'bully' allows bullying geeks to wrap bad behavior in entitlement. It's gross.", + "source": "TweetDeck", + "truncated": false, + "in_reply_to_status_id": 469514461527961600, + "in_reply_to_status_id_str": "469514461527961600", + "in_reply_to_user_id": 30861631, + "in_reply_to_user_id_str": "30861631", + "in_reply_to_screen_name": "leeflower", + "user": { + "id": 30861631, + "id_str": "30861631" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 272, + "favorite_count": 265, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 272, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 22 18:29:26 +0000 2014", + "id": 469545588854640641, + "id_str": "469545588854640641", + "text": "@HadleyTheDog programming reddit attracts all skill levels — it’s *usually* constructive to patiently explain their error.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469545259471745024, + "in_reply_to_status_id_str": "469545259471745024", + "in_reply_to_user_id": 252002068, + "in_reply_to_user_id_str": "252002068", + "in_reply_to_screen_name": "HadleyTheDog", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 22 18:14:06 +0000 2014", + "id": 469541728828280832, + "id_str": "469541728828280832", + "text": "Programmers: a short story (high quality: http://t.co/2H8JT49H23 ) http://t.co/ewu6phQxb8", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 574, + "favorite_count": 315, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu May 22 17:58:33 +0000 2014", + "id": 469537815861424130, + "id_str": "469537815861424130", + "text": "@zhuowei @Talen_Lee you’re confusing code that has been written with the code we say we are going to write", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469537682381475842, + "in_reply_to_status_id_str": "469537682381475842", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 22 17:57:02 +0000 2014", + "id": 469537431998705665, + "id_str": "469537431998705665", + "text": "@Talen_Lee um\n\nokay", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 469537320845062144, + "in_reply_to_status_id_str": "469537320845062144", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 5, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 22 17:55:46 +0000 2014", + "id": 469537116930990080, + "id_str": "469537116930990080", + "text": "@Talen_Lee if you had used a LED bulb it wouldn't have burned out so fast\n\nWas already typing this before you replied", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 469536879742701568, + "in_reply_to_status_id_str": "469536879742701568", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 22 17:54:05 +0000 2014", + "id": 469536689485250560, + "id_str": "469536689485250560", + "text": "\"Let me explain how you should have written this code by ignoring all the constraints you actually had.\" -- programmer commenters", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 35, + "favorite_count": 48, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 22 17:30:09 +0000 2014", + "id": 469530669451055104, + "id_str": "469530669451055104", + "text": "@jesster_king @zephoria if you mean you just see a blue overlay of old magazine text... scroll down", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 469528169414815744, + "in_reply_to_status_id_str": "469528169414815744", + "in_reply_to_user_id": 46763517, + "in_reply_to_user_id_str": "46763517", + "in_reply_to_screen_name": "jesster_king", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 22 17:11:04 +0000 2014", + "id": 469525867350077441, + "id_str": "469525867350077441", + "text": "@JaafarTrull everyone is allowed one devastating civil war on their record before their democracy insurance goes up", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 469522719545896960, + "in_reply_to_status_id_str": "469522719545896960", + "in_reply_to_user_id": 520952430, + "in_reply_to_user_id_str": "520952430", + "in_reply_to_screen_name": "JaafarTrull", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 22 16:44:04 +0000 2014", + "id": 469519069985517568, + "id_str": "469519069985517568", + "text": "I'm really glad that a) Mail.app and iCal don't synchronize their Exchange settings b) iCal never bothered to tell me a server was down", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 22 16:35:59 +0000 2014", + "id": 469517038877429761, + "id_str": "469517038877429761", + "text": "The best argument on how to make data transmission resistant to simulated drunkenness you'll ever read http://t.co/hcrfSYcJ1n", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 8, + "favorite_count": 16, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu May 22 16:26:18 +0000 2014", + "id": 469514598497136640, + "id_str": "469514598497136640", + "text": "@Myriachan @Talen_Lee perhaps one could describe it as a stable democracy has defeated the concept of coups by scheduling them in advance", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 469513331171397632, + "in_reply_to_status_id_str": "469513331171397632", + "in_reply_to_user_id": 1556497868, + "in_reply_to_user_id_str": "1556497868", + "in_reply_to_screen_name": "Myriachan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 22 16:10:13 +0000 2014", + "id": 469510552084299776, + "id_str": "469510552084299776", + "text": "@Myriachan @Talen_Lee I assume that'd be the Lincoln one? I guess we'll have to concede there was that civil war incident around then.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 469510344566902784, + "in_reply_to_status_id_str": "469510344566902784", + "in_reply_to_user_id": 1556497868, + "in_reply_to_user_id_str": "1556497868", + "in_reply_to_screen_name": "Myriachan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 22 16:07:21 +0000 2014", + "id": 469509829967740928, + "id_str": "469509829967740928", + "text": "@Myriachan @Talen_Lee at a glance, I’m pretty sure the vast majority of these are *not* a political party obstructing transfer of power", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469509244375793665, + "in_reply_to_status_id_str": "469509244375793665", + "in_reply_to_user_id": 1556497868, + "in_reply_to_user_id_str": "1556497868", + "in_reply_to_screen_name": "Myriachan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 22 16:04:53 +0000 2014", + "id": 469509210561314817, + "id_str": "469509210561314817", + "text": "@Talen_Lee atheism is only a “luxury good” to the extent that education is. \n\nIt’s common in some relatively poor countries.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469507526484979712, + "in_reply_to_status_id_str": "469507526484979712", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 22 15:45:19 +0000 2014", + "id": 469504287140483072, + "id_str": "469504287140483072", + "text": "@Taiki__San don't act like I'm too good to run ubuntu", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 469503754753298432, + "in_reply_to_status_id_str": "469503754753298432", + "in_reply_to_user_id": 188407454, + "in_reply_to_user_id_str": "188407454", + "in_reply_to_screen_name": "Taiki__San", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 22 15:45:04 +0000 2014", + "id": 469504222908915713, + "id_str": "469504222908915713", + "text": "@Talen_Lee the god of island evolution is not keen on exporting them", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 469503716895100929, + "in_reply_to_status_id_str": "469503716895100929", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 22 15:41:19 +0000 2014", + "id": 469503280004231168, + "id_str": "469503280004231168", + "text": "\"11 packages can be updated. 9 are security updates.\" Yes install those thank you. Now I will IRC for a few hours \"25 packages can be updat–", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 4, + "favorite_count": 5, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 22 15:35:31 +0000 2014", + "id": 469501822022201344, + "id_str": "469501822022201344", + "text": "@eevee @jennifurret I guess she doesn't accept the newest testament as divinely inspired", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 469501631361335296, + "in_reply_to_status_id_str": "469501631361335296", + "in_reply_to_user_id": 14412937, + "in_reply_to_user_id_str": "14412937", + "in_reply_to_screen_name": "eevee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 22 14:52:49 +0000 2014", + "id": 469491072604045312, + "id_str": "469491072604045312", + "text": "RT @zephoria: Did you know that there was once a moral panic around chess? That terrible activity was believed to destroy minds: http://t.…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Thu May 22 13:45:28 +0000 2014", + "id": 469474124004618241, + "id_str": "469474124004618241", + "text": "Did you know that there was once a moral panic around chess? That terrible activity was believed to destroy minds: http://t.co/zDt2yJaUOE", + "source": "Buffer", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 633, + "id_str": "633" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 341, + "favorite_count": 174, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/zDt2yJaUOE", + "expanded_url": "http://bit.ly/1lGcV1O", + "display_url": "bit.ly/1lGcV1O", + "indices": [ + 116, + 138 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 341, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu May 22 14:15:48 +0000 2014", + "id": 469481757259988995, + "id_str": "469481757259988995", + "text": "@Talen_Lee militias bringing displays of force to rallies about cows? Well maybe sometimes.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469481501852057601, + "in_reply_to_status_id_str": "469481501852057601", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 22 14:14:15 +0000 2014", + "id": 469481366682226688, + "id_str": "469481366682226688", + "text": "My father once said the one big thing that USA got right is that no-one ever responds to losing an election with an armed insurrection", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 8, + "favorite_count": 14, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 22 13:40:15 +0000 2014", + "id": 469472813087465472, + "id_str": "469472813087465472", + "text": "RT @jennifurret: New Post: Pokébiology 101: “Evolution” and the enigma of Eevee: (Click here for the introductory post to Pokéb... http://t…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Thu May 22 06:52:19 +0000 2014", + "id": 469370153835044864, + "id_str": "469370153835044864", + "text": "New Post: Pokébiology 101: “Evolution” and the enigma of Eevee: (Click here for the introductory post to Pokéb... http://t.co/Em9PYLK3eE", + "source": "twitterfeed", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 42256596, + "id_str": "42256596" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 10, + "favorite_count": 9, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/Em9PYLK3eE", + "expanded_url": "http://bit.ly/1haXgWU", + "display_url": "bit.ly/1haXgWU", + "indices": [ + 114, + 136 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 10, + "favorite_count": 0, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu May 22 13:40:07 +0000 2014", + "id": 469472780556468225, + "id_str": "469472780556468225", + "text": "@jennifurret attn: @eevee", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469370153835044864, + "in_reply_to_status_id_str": "469370153835044864", + "in_reply_to_user_id": 42256596, + "in_reply_to_user_id_str": "42256596", + "in_reply_to_screen_name": "jennifurret", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "sv" + }, + { + "created_at": "Thu May 22 13:29:46 +0000 2014", + "id": 469470171971977217, + "id_str": "469470171971977217", + "text": "RT @thezeist: DRAWILLE - Drawing in terminal with Unicode Braille characters https://t.co/GgRhWM77ly", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Thu May 22 05:13:34 +0000 2014", + "id": 469345302760423424, + "id_str": "469345302760423424", + "text": "DRAWILLE - Drawing in terminal with Unicode Braille characters https://t.co/GgRhWM77ly", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 100964199, + "id_str": "100964199" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 5, + "favorite_count": 10, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "https://t.co/GgRhWM77ly", + "expanded_url": "https://github.com/asciimoo/drawille/blob/master/README.md", + "display_url": "github.com/asciimoo/drawi…", + "indices": [ + 63, + 86 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 5, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu May 22 13:19:39 +0000 2014", + "id": 469467628806107136, + "id_str": "469467628806107136", + "text": "@m1sp example of being a Good Tokharika — selling out Hayr and Aramaz at the drop of a hat despite being friends with Vanador", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469463796478525441, + "in_reply_to_status_id_str": "469463796478525441", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 22 13:06:19 +0000 2014", + "id": 469464274327183360, + "id_str": "469464274327183360", + "text": "@m1sp I tried to give a mix of good Tokharika and bad Tokharika traits", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469463796478525441, + "in_reply_to_status_id_str": "469463796478525441", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 22 13:04:03 +0000 2014", + "id": 469463704354824192, + "id_str": "469463704354824192", + "text": "@gotyaoi @m1sp this one is successful in one sense. Catastrophic in another >:]", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469344962622943232, + "in_reply_to_status_id_str": "469344962622943232", + "in_reply_to_user_id": 393022772, + "in_reply_to_user_id_str": "393022772", + "in_reply_to_screen_name": "gotyaoi", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 22 03:27:17 +0000 2014", + "id": 469318553653366784, + "id_str": "469318553653366784", + "text": "@rantyben … … …", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469317731297533952, + "in_reply_to_status_id_str": "469317731297533952", + "in_reply_to_user_id": 977910404, + "in_reply_to_user_id_str": "977910404", + "in_reply_to_screen_name": "rantyben", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "lt" + }, + { + "created_at": "Thu May 22 03:21:57 +0000 2014", + "id": 469317210947584000, + "id_str": "469317210947584000", + "text": "@zhuowei I don’t have the time anymore.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469314562777681921, + "in_reply_to_status_id_str": "469314562777681921", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 22 03:06:58 +0000 2014", + "id": 469313440796798976, + "id_str": "469313440796798976", + "text": "RT @Talen_Lee: Are your children at risk of heterosexual recruitment? Stay tuned after this bikini clad woman advertises soap, for more.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Thu May 22 03:05:16 +0000 2014", + "id": 469313013732737024, + "id_str": "469313013732737024", + "text": "Are your children at risk of heterosexual recruitment? Stay tuned after this bikini clad woman advertises soap, for more.", + "source": "TweetDeck", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 1626778274, + "id_str": "1626778274" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 25, + "favorite_count": 32, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 25, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 22 03:06:43 +0000 2014", + "id": 469313377194373120, + "id_str": "469313377194373120", + "text": "@Talen_Lee @m1sp http://t.co/5khCV1vosO", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469312460579536897, + "in_reply_to_status_id_str": "469312460579536897", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Thu May 22 03:02:44 +0000 2014", + "id": 469312374215024640, + "id_str": "469312374215024640", + "text": "@m1sp fulfilling the mandatory Barsamin in chains quota for book 2 http://t.co/9Z94h231Px cc @Talen_Lee", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu May 22 02:40:53 +0000 2014", + "id": 469306879114768385, + "id_str": "469306879114768385", + "text": "@Talen_Lee my cover was drawn by Mispy’s sister, for some $", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469303174017208320, + "in_reply_to_status_id_str": "469303174017208320", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 22 02:40:53 +0000 2014", + "id": 469306879114768385, + "id_str": "469306879114768385", + "text": "@Talen_Lee my cover was drawn by Mispy’s sister, for some $", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469303174017208320, + "in_reply_to_status_id_str": "469303174017208320", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 22 02:10:13 +0000 2014", + "id": 469299158906445825, + "id_str": "469299158906445825", + "text": "@m1sp #TokharikaProblems http://t.co/Ynp433JoUI", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "lt" + }, + { + "created_at": "Thu May 22 01:30:36 +0000 2014", + "id": 469289189570125824, + "id_str": "469289189570125824", + "text": "@vaurora I distinctly remember the first time I saw someone with neon hair, around that age. I think my grandmother was mortified I liked it", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469288735734247424, + "in_reply_to_status_id_str": "469288735734247424", + "in_reply_to_user_id": 30071759, + "in_reply_to_user_id_str": "30071759", + "in_reply_to_screen_name": "vaurora", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 22 01:27:27 +0000 2014", + "id": 469288396544684032, + "id_str": "469288396544684032", + "text": "@m1sp my baby so far http://t.co/160CIAtm2G", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu May 22 01:12:53 +0000 2014", + "id": 469284729855180800, + "id_str": "469284729855180800", + "text": "@jesster_king they are *wonderful* and I can’t abide people who complain about them", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469278249865195520, + "in_reply_to_status_id_str": "469278249865195520", + "in_reply_to_user_id": 46763517, + "in_reply_to_user_id_str": "46763517", + "in_reply_to_screen_name": "jesster_king", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 22 00:14:50 +0000 2014", + "id": 469270124084461568, + "id_str": "469270124084461568", + "text": "@DrJaneChi @Shufflejoy “did you know the average age of first sexual activity is 17 (implying many start sooner)?” “La la la their fault”", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469260096116391936, + "in_reply_to_status_id_str": "469260096116391936", + "in_reply_to_user_id": 214164173, + "in_reply_to_user_id_str": "214164173", + "in_reply_to_screen_name": "DrJaneChi", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 21 23:07:56 +0000 2014", + "id": 469253286394990592, + "id_str": "469253286394990592", + "text": "@munin she’s trans. Judge asked for medical records, no legal basis for that. Turned down the name change without cause", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469253035420831744, + "in_reply_to_status_id_str": "469253035420831744", + "in_reply_to_user_id": 8513352, + "in_reply_to_user_id_str": "8513352", + "in_reply_to_screen_name": "munin", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 21 23:05:23 +0000 2014", + "id": 469252643768918016, + "id_str": "469252643768918016", + "text": "This just in from my husband: judge caved to end media storm, sister in law’s name change has been approved without the second hearing.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 20, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 21 22:53:48 +0000 2014", + "id": 469249729746837505, + "id_str": "469249729746837505", + "text": "This game understands me. http://t.co/6sUiR3mFQg", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 15, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed May 21 22:25:47 +0000 2014", + "id": 469242678220423168, + "id_str": "469242678220423168", + "text": "I just saw the word “weeknights” and interpreted as a calendar-based order of knights", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 4, + "favorite_count": 14, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 21 22:04:49 +0000 2014", + "id": 469237404411629568, + "id_str": "469237404411629568", + "text": "@renpytom when you reblog a post you can add a reply of any length. Puts a hyperlink to it in the original post’s interaction notes", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469236719640793088, + "in_reply_to_status_id_str": "469236719640793088", + "in_reply_to_user_id": 8956112, + "in_reply_to_user_id_str": "8956112", + "in_reply_to_screen_name": "renpytom", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 21 21:55:49 +0000 2014", + "id": 469235137402515456, + "id_str": "469235137402515456", + "text": "@hackerfantastic where did McDonalds even find 250 cops", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469230482123931648, + "in_reply_to_status_id_str": "469230482123931648", + "in_reply_to_user_id": 19026149, + "in_reply_to_user_id_str": "19026149", + "in_reply_to_screen_name": "hackerfantastic", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 21 21:55:27 +0000 2014", + "id": 469235047472447488, + "id_str": "469235047472447488", + "text": "RT @hackerfantastic: 110 people arrested protesting outside McDonalds HQ to raise wages - http://t.co/yVz7TTiGIt", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Wed May 21 21:37:19 +0000 2014", + "id": 469230482123931648, + "id_str": "469230482123931648", + "text": "110 people arrested protesting outside McDonalds HQ to raise wages - http://t.co/yVz7TTiGIt", + "source": "Twitter for Android", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 19026149, + "id_str": "19026149" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 13, + "favorite_count": 2, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/yVz7TTiGIt", + "expanded_url": "http://money.cnn.com/2014/05/21/news/companies/mcdonalds-protest/index.html?hpt=hp_t2", + "display_url": "money.cnn.com/2014/05/21/new…", + "indices": [ + 69, + 91 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 13, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed May 21 21:52:53 +0000 2014", + "id": 469234401608732674, + "id_str": "469234401608732674", + "text": "@jwisser http://t.co/7DPokY3gVZ 8)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469233697770991617, + "in_reply_to_status_id_str": "469233697770991617", + "in_reply_to_user_id": 665833, + "in_reply_to_user_id_str": "665833", + "in_reply_to_screen_name": "jwisser", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Wed May 21 21:47:04 +0000 2014", + "id": 469232935866884096, + "id_str": "469232935866884096", + "text": "I think part of the problem with Wonder Woman is that, like Superman, she never struck me as interesting modulo super powers", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 21 21:27:33 +0000 2014", + "id": 469228023837782017, + "id_str": "469228023837782017", + "text": "@demize95 weed as value judgment", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 469227770254725120, + "in_reply_to_status_id_str": "469227770254725120", + "in_reply_to_user_id": 137133048, + "in_reply_to_user_id_str": "137133048", + "in_reply_to_screen_name": "demize95", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 21 21:20:40 +0000 2014", + "id": 469226292190404609, + "id_str": "469226292190404609", + "text": "My least favorite personality type is \"dandelions are a weed\"", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 7, + "favorite_count": 10, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 21 20:58:27 +0000 2014", + "id": 469220703125131264, + "id_str": "469220703125131264", + "text": "RT @zhuowei: @0xabad1dea Oh gods it's infectious", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Wed May 21 20:58:18 +0000 2014", + "id": 469220663819902976, + "id_str": "469220663819902976", + "text": "@0xabad1dea Oh gods it's infectious", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 469220285020110848, + "in_reply_to_status_id_str": "469220285020110848", + "in_reply_to_user_id": 126030998, + "in_reply_to_user_id_str": "126030998", + "in_reply_to_screen_name": "0xabad1dea", + "user": { + "id": 383083538, + "id_str": "383083538" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 0, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "0xabad1dea", + "name": "Melissa", + "id": 126030998, + "id_str": "126030998", + "indices": [ + 0, + 11 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 1, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 21 20:56:48 +0000 2014", + "id": 469220285020110848, + "id_str": "469220285020110848", + "text": "Muck, it's probably a bad sign that I use the swears I invented for a novel as though they're significant outside of a fictive context", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 21 20:49:52 +0000 2014", + "id": 469218540504236032, + "id_str": "469218540504236032", + "text": "Not crazy about how @Twitch mobile app signs you out on other devices when you sign in (intersection of #UIRage and #FirstWorldProblems)", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 21 20:42:23 +0000 2014", + "id": 469216655995056128, + "id_str": "469216655995056128", + "text": "Not sure I believe the iCloud bypass thing is real and not an attempt to harvest passwords", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 21 20:36:42 +0000 2014", + "id": 469215228493049857, + "id_str": "469215228493049857", + "text": "@thegrugq oh my gods stop crudeshaming my unconventional swears", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469214797183983617, + "in_reply_to_status_id_str": "469214797183983617", + "in_reply_to_user_id": 18983429, + "in_reply_to_user_id_str": "18983429", + "in_reply_to_screen_name": "thegrugq", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 21 20:32:55 +0000 2014", + "id": 469214276797071360, + "id_str": "469214276797071360", + "text": "Displaying ads on thermostats, Google? Ohohoho how would you ev— wait. Muck. http://t.co/KQ9awMLiT2", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 11, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed May 21 20:26:44 +0000 2014", + "id": 469212720261521408, + "id_str": "469212720261521408", + "text": "RT @geekable: Buzzkill: http://t.co/kS4swleGHY", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Wed May 21 20:11:14 +0000 2014", + "id": 469208820078489600, + "id_str": "469208820078489600", + "text": "Buzzkill: http://t.co/kS4swleGHY", + "source": "TweetDeck", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 755035, + "id_str": "755035" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 4, + "favorite_count": 3, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/kS4swleGHY", + "expanded_url": "http://arstechnica.com/tech-policy/2014/05/fbi-chief-backtracks-says-hes-against-hiring-pot-smokers/", + "display_url": "arstechnica.com/tech-policy/20…", + "indices": [ + 10, + 32 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": true, + "lang": "cy" + }, + "retweet_count": 4, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "cy" + }, + { + "created_at": "Wed May 21 20:22:50 +0000 2014", + "id": 469211736621744128, + "id_str": "469211736621744128", + "text": "@vaurora 🐙❓", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469205065325371392, + "in_reply_to_status_id_str": "469205065325371392", + "in_reply_to_user_id": 30071759, + "in_reply_to_user_id_str": "30071759", + "in_reply_to_screen_name": "vaurora", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Wed May 21 20:17:22 +0000 2014", + "id": 469210362999734272, + "id_str": "469210362999734272", + "text": "RT @kyhwana: @SteveD3 @0xabad1dea well, let's just assume single round MD5 then..", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Wed May 21 20:16:38 +0000 2014", + "id": 469210178420621312, + "id_str": "469210178420621312", + "text": "@SteveD3 @0xabad1dea well, let's just assume single round MD5 then..", + "source": "Twitter for Android", + "truncated": false, + "in_reply_to_status_id": 469209872786276353, + "in_reply_to_status_id_str": "469209872786276353", + "in_reply_to_user_id": 16626073, + "in_reply_to_user_id_str": "16626073", + "in_reply_to_screen_name": "SteveD3", + "user": { + "id": 30135560, + "id_str": "30135560" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 0, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "SteveD3", + "name": "SteveD3", + "id": 16626073, + "id_str": "16626073", + "indices": [ + 0, + 8 + ] + }, + { + "screen_name": "0xabad1dea", + "name": "Melissa", + "id": 126030998, + "id_str": "126030998", + "indices": [ + 9, + 20 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 1, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 21 20:17:06 +0000 2014", + "id": 469210296956248066, + "id_str": "469210296956248066", + "text": "Per journalist @SteveD3 eBay declined to answer a question about how they were hashing. Pointless obscurity attempt I reckon.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 6, + "favorite_count": 5, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 21 20:15:37 +0000 2014", + "id": 469209920458727424, + "id_str": "469209920458727424", + "text": "@SteveD3 @kyhwana promising", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469209872786276353, + "in_reply_to_status_id_str": "469209872786276353", + "in_reply_to_user_id": 16626073, + "in_reply_to_user_id_str": "16626073", + "in_reply_to_screen_name": "SteveD3", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "sl" + }, + { + "created_at": "Wed May 21 20:15:25 +0000 2014", + "id": 469209870210981888, + "id_str": "469209870210981888", + "text": "@frkbmb they accidentally pushed an incomplete blog post this morning they were saving for this afternoon. All else descends from that", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469202302851489792, + "in_reply_to_status_id_str": "469202302851489792", + "in_reply_to_user_id": 540721095, + "in_reply_to_user_id_str": "540721095", + "in_reply_to_screen_name": "frkbmb", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 21 20:10:54 +0000 2014", + "id": 469208733491662848, + "id_str": "469208733491662848", + "text": "@puellavulnerata @matthew_d_green oh no I put on a sticker @bcrypt gave me is she controlling my mind right this second", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469198745632927746, + "in_reply_to_status_id_str": "469198745632927746", + "in_reply_to_user_id": 54666727, + "in_reply_to_user_id_str": "54666727", + "in_reply_to_screen_name": "puellavulnerata", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 21 20:07:02 +0000 2014", + "id": 469207762824867840, + "id_str": "469207762824867840", + "text": ".@OaklandElle @maradydd @puellavulnerata haha actually the truth is I can't even remember who most people are and just coast on heuristics", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 469207463829315585, + "in_reply_to_status_id_str": "469207463829315585", + "in_reply_to_user_id": 385847731, + "in_reply_to_user_id_str": "385847731", + "in_reply_to_screen_name": "OaklandElle", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 9, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 21 20:04:56 +0000 2014", + "id": 469207234577440768, + "id_str": "469207234577440768", + "text": ".@OaklandElle @maradydd @puellavulnerata what are you talking about? I never forgive anyone of anything! I keep a ledger of every slight! :)", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 469207010609614848, + "in_reply_to_status_id_str": "469207010609614848", + "in_reply_to_user_id": 385847731, + "in_reply_to_user_id_str": "385847731", + "in_reply_to_screen_name": "OaklandElle", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 5, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 21 19:59:52 +0000 2014", + "id": 469205956132634624, + "id_str": "469205956132634624", + "text": "I have this problem where once I realize I've annoyed someone at least once, I'm scared of interacting with them forever.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 19, + "favorite_count": 25, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 21 19:54:38 +0000 2014", + "id": 469204642648563712, + "id_str": "469204642648563712", + "text": "@puellavulnerata I should take a pic of my laptop for her later. I must be the insidious movement personified", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469194792908251137, + "in_reply_to_status_id_str": "469194792908251137", + "in_reply_to_user_id": 54666727, + "in_reply_to_user_id_str": "54666727", + "in_reply_to_screen_name": "puellavulnerata", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 21 19:46:49 +0000 2014", + "id": 469202675595501568, + "id_str": "469202675595501568", + "text": "@winocm oh oh pick me.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469179703664730112, + "in_reply_to_status_id_str": "469179703664730112", + "in_reply_to_user_id": 428413732, + "in_reply_to_user_id_str": "428413732", + "in_reply_to_screen_name": "winocm", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 4, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 21 19:45:49 +0000 2014", + "id": 469202424130183168, + "id_str": "469202424130183168", + "text": "@alethenorio @mhoye it’s a garage in a car!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469202165182242816, + "in_reply_to_status_id_str": "469202165182242816", + "in_reply_to_user_id": 91866444, + "in_reply_to_user_id_str": "91866444", + "in_reply_to_screen_name": "alethenorio", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 21 19:40:57 +0000 2014", + "id": 469201197715685378, + "id_str": "469201197715685378", + "text": "@Talen_Lee well judging by her very detailed makeup, the battlefield was not where she was planning on being tonight", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469169171268239360, + "in_reply_to_status_id_str": "469169171268239360", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 21 19:38:01 +0000 2014", + "id": 469200460822630400, + "id_str": "469200460822630400", + "text": "RT @mhoye: I seriously just saw somebody describe a server as \"cloud in a box\". I literally can't even what.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Wed May 21 13:05:09 +0000 2014", + "id": 469101589576179712, + "id_str": "469101589576179712", + "text": "I seriously just saw somebody describe a server as \"cloud in a box\". I literally can't even what.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 16258468, + "id_str": "16258468" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 745, + "favorite_count": 414, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 745, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 21 19:37:22 +0000 2014", + "id": 469200297072807936, + "id_str": "469200297072807936", + "text": "@pbaylies @FioraAeterna (weed free going back three years from time of hiring)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469200006864703489, + "in_reply_to_status_id_str": "469200006864703489", + "in_reply_to_user_id": 302255160, + "in_reply_to_user_id_str": "302255160", + "in_reply_to_screen_name": "pbaylies", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 21 19:37:00 +0000 2014", + "id": 469200203753734144, + "id_str": "469200203753734144", + "text": "@pbaylies @FioraAeterna it is in fact a standing requirement to be weed free to work there. But probably not much longer.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469200006864703489, + "in_reply_to_status_id_str": "469200006864703489", + "in_reply_to_user_id": 302255160, + "in_reply_to_user_id_str": "302255160", + "in_reply_to_screen_name": "pbaylies", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 21 19:35:06 +0000 2014", + "id": 469199726999781377, + "id_str": "469199726999781377", + "text": "RT @FioraAeterna: A friend just referred to the FBI's problem with trying to find hackers who don't smoke weed as a \"highering problem\". I …", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Wed May 21 17:05:30 +0000 2014", + "id": 469162076456628224, + "id_str": "469162076456628224", + "text": "A friend just referred to the FBI's problem with trying to find hackers who don't smoke weed as a \"highering problem\". I give up", + "source": "TweetDeck", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2468699718, + "id_str": "2468699718" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 84, + "favorite_count": 106, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 84, + "favorite_count": 0, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 21 19:33:19 +0000 2014", + "id": 469199278402174977, + "id_str": "469199278402174977", + "text": "@drymangobird @zauspar instead of being like oh thank you I don’t want to be reading about sexual assault on the train?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468882693309366272, + "in_reply_to_status_id_str": "468882693309366272", + "in_reply_to_user_id": 892400503, + "in_reply_to_user_id_str": "892400503", + "in_reply_to_screen_name": "drymangobird", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 21 19:32:49 +0000 2014", + "id": 469199152250097665, + "id_str": "469199152250097665", + "text": "@drymangobird @zauspar a contingent seems convinced that people will use them to politically filter bubble themselves", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468882693309366272, + "in_reply_to_status_id_str": "468882693309366272", + "in_reply_to_user_id": 892400503, + "in_reply_to_user_id_str": "892400503", + "in_reply_to_screen_name": "drymangobird", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 21 19:27:47 +0000 2014", + "id": 469197883347320832, + "id_str": "469197883347320832", + "text": "@zauspar I actually had one the other day insist that bringing rifles into an enclosed space with unarmed people wasn’t threatening", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469151395250470912, + "in_reply_to_status_id_str": "469151395250470912", + "in_reply_to_user_id": 216571343, + "in_reply_to_user_id_str": "216571343", + "in_reply_to_screen_name": "zauspar", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 21 19:25:58 +0000 2014", + "id": 469197428881895424, + "id_str": "469197428881895424", + "text": "@SteveD3 if we ascribe competence befitting their scale, it’d be both — hashed at database layer and encrypted at file system \nlayer", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469148762804203522, + "in_reply_to_status_id_str": "469148762804203522", + "in_reply_to_user_id": 16626073, + "in_reply_to_user_id_str": "16626073", + "in_reply_to_screen_name": "SteveD3", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 21 18:05:53 +0000 2014", + "id": 469177275335057408, + "id_str": "469177275335057408", + "text": "Part of the problem is they shadowbox this huge interface in a tiny little window and create the psychological impression of misclick peril", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 21 18:04:32 +0000 2014", + "id": 469176933880975360, + "id_str": "469176933880975360", + "text": "@feralchimp not by me!", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 469176375665246208, + "in_reply_to_status_id_str": "469176375665246208", + "in_reply_to_user_id": 2149611, + "in_reply_to_user_id_str": "2149611", + "in_reply_to_screen_name": "feralchimp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 21 17:59:24 +0000 2014", + "id": 469175642354089984, + "id_str": "469175642354089984", + "text": "Jira's ticket creator interface is so jumbled and confusing I am literally TERRIFIED of using it.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 4, + "favorite_count": 13, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 21 17:18:48 +0000 2014", + "id": 469165422856921088, + "id_str": "469165422856921088", + "text": "The GPU on Terrible Worktop is so pathetic I literally get better render performance over RDP", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 7, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 21 16:36:56 +0000 2014", + "id": 469154886790418432, + "id_str": "469154886790418432", + "text": "MOM\n\nDON'T SEND ME AN ARTICLE ABOUT HOW MY TRANS RELATIVE CAN'T GET THE STATE TO CHANGE HER NAME\n\nAND REFER TO HER BY MALE DEADNAME", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 6, + "favorite_count": 24, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 21 16:07:12 +0000 2014", + "id": 469147406932922368, + "id_str": "469147406932922368", + "text": "@DarrenPMeyer @isislovecruft https://t.co/cjg968uQcC", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 469147257225633792, + "in_reply_to_status_id_str": "469147257225633792", + "in_reply_to_user_id": 468928589, + "in_reply_to_user_id_str": "468928589", + "in_reply_to_screen_name": "DarrenPMeyer", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "quoted_status_id": 469132304070492160, + "quoted_status_id_str": "469132304070492160", + "quoted_status": { + "created_at": "Wed May 21 15:07:12 +0000 2014", + "id": 469132304070492160, + "id_str": "469132304070492160", + "text": "I must not retweet code snippets. I must not retweet code snippets. I must not retweet code snippets", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 6, + "favorite_count": 11, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Wed May 21 15:53:46 +0000 2014", + "id": 469144024574853120, + "id_str": "469144024574853120", + "text": "@greerga it’s the deliberately “cute” wording in place of “to be announced” I’m finding un-cute.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469143821830602752, + "in_reply_to_status_id_str": "469143821830602752", + "in_reply_to_user_id": 313743868, + "in_reply_to_user_id_str": "313743868", + "in_reply_to_screen_name": "greerga", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 21 15:47:57 +0000 2014", + "id": 469142563237400576, + "id_str": "469142563237400576", + "text": "@GibVa um… a pop culture joke?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469142331908952064, + "in_reply_to_status_id_str": "469142331908952064", + "in_reply_to_user_id": 180197111, + "in_reply_to_user_id_str": "180197111", + "in_reply_to_screen_name": "GibVa", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 21 15:46:53 +0000 2014", + "id": 469142293656915969, + "id_str": "469142293656915969", + "text": "idk I don’t really find it cute that Apple decides to play up its reputation for excessive secrecy with schedule items like “can’t tell you”", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 21 15:24:35 +0000 2014", + "id": 469136681745272832, + "id_str": "469136681745272832", + "text": "@puellavulnerata you’re a secret spy working for a public open source initiative. So cool.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469135974174191616, + "in_reply_to_status_id_str": "469135974174191616", + "in_reply_to_user_id": 54666727, + "in_reply_to_user_id_str": "54666727", + "in_reply_to_screen_name": "puellavulnerata", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 21 15:11:05 +0000 2014", + "id": 469133284577140736, + "id_str": "469133284577140736", + "text": "@elad3 I get annoyed too easily with ‘splainers", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469132842589356032, + "in_reply_to_status_id_str": "469132842589356032", + "in_reply_to_user_id": 160897504, + "in_reply_to_user_id_str": "160897504", + "in_reply_to_screen_name": "elad3", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 21 15:09:15 +0000 2014", + "id": 469132822931058689, + "id_str": "469132822931058689", + "text": "I reckon it’d be rude to go upstairs to the eBay office and pitch them security services", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 7, + "favorite_count": 28, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 21 15:07:12 +0000 2014", + "id": 469132304070492160, + "id_str": "469132304070492160", + "text": "I must not retweet code snippets. I must not retweet code snippets. I must not retweet code snippets", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 6, + "favorite_count": 11, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 21 15:06:37 +0000 2014", + "id": 469132159052447745, + "id_str": "469132159052447745", + "text": "@octoqt @isislovecruft principle of least astonishment being applied does not lead to zero astonishment :)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469131788347265024, + "in_reply_to_status_id_str": "469131788347265024", + "in_reply_to_user_id": 86463346, + "in_reply_to_user_id_str": "86463346", + "in_reply_to_screen_name": "octoqt", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 21 15:05:56 +0000 2014", + "id": 469131988965015552, + "id_str": "469131988965015552", + "text": "@elad3 @isislovecruft that doesn’t mean it’s not interesting to point out", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469131856865021953, + "in_reply_to_status_id_str": "469131856865021953", + "in_reply_to_user_id": 160897504, + "in_reply_to_user_id_str": "160897504", + "in_reply_to_screen_name": "elad3", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 21 15:04:41 +0000 2014", + "id": 469131671548481536, + "id_str": "469131671548481536", + "text": "@isislovecruft @puellavulnerata (Python, right?)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469125999704043522, + "in_reply_to_status_id_str": "469125999704043522", + "in_reply_to_user_id": 232680302, + "in_reply_to_user_id_str": "232680302", + "in_reply_to_screen_name": "isislovecruft", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 21 15:04:16 +0000 2014", + "id": 469131566195937280, + "id_str": "469131566195937280", + "text": "RT @isislovecruft: >>> def f():\n... try:\n... return 'try'\n... finally:\n... return 'finally'\n...\n>>> f()\n'finally'", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Wed May 21 14:42:08 +0000 2014", + "id": 469125999704043522, + "id_str": "469125999704043522", + "text": ">>> def f():\n... try:\n... return 'try'\n... finally:\n... return 'finally'\n...\n>>> f()\n'finally'", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 232680302, + "id_str": "232680302" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 58, + "favorite_count": 42, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 58, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 21 14:14:36 +0000 2014", + "id": 469119067559710721, + "id_str": "469119067559710721", + "text": "RT @tobypinder: @0xabad1dea \"Later today we are going to tell you to change your passwords... I mean... well ok does this count?\"", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Wed May 21 14:13:54 +0000 2014", + "id": 469118891562901506, + "id_str": "469118891562901506", + "text": "@0xabad1dea \"Later today we are going to tell you to change your passwords... I mean... well ok does this count?\"", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 469115968166572033, + "in_reply_to_status_id_str": "469115968166572033", + "in_reply_to_user_id": 126030998, + "in_reply_to_user_id_str": "126030998", + "in_reply_to_screen_name": "0xabad1dea", + "user": { + "id": 18698940, + "id_str": "18698940" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 5, + "favorite_count": 3, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "0xabad1dea", + "name": "Melissa", + "id": 126030998, + "id_str": "126030998", + "indices": [ + 0, + 11 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 5, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 21 14:14:03 +0000 2014", + "id": 469118931332898819, + "id_str": "469118931332898819", + "text": "@yukimono_ @xkeepah luckily that was a journalistic typo. Original blog said encrypted, now that says encrypted too", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469108490103820288, + "in_reply_to_status_id_str": "469108490103820288", + "in_reply_to_user_id": 2290243879, + "in_reply_to_user_id_str": "2290243879", + "in_reply_to_screen_name": "yukimono_", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 21 14:06:09 +0000 2014", + "id": 469116941940973569, + "id_str": "469116941940973569", + "text": "RT @zpower: ladies and gentlemen I present the worst remote control layout in history http://t.co/TsvDVg8Ae5", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Wed May 21 03:13:50 +0000 2014", + "id": 468952781999845376, + "id_str": "468952781999845376", + "text": "ladies and gentlemen I present the worst remote control layout in history http://t.co/TsvDVg8Ae5", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 15006743, + "id_str": "15006743" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 730, + "favorite_count": 438, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ], + "media": [ + { + "id": 468952781228109824, + "id_str": "468952781228109824", + "indices": [ + 74, + 96 + ], + "media_url": "http://pbs.twimg.com/media/BoIOEeWIcAAnW5Q.jpg", + "media_url_https": "https://pbs.twimg.com/media/BoIOEeWIcAAnW5Q.jpg", + "url": "http://t.co/TsvDVg8Ae5", + "display_url": "pic.twitter.com/TsvDVg8Ae5", + "expanded_url": "http://twitter.com/zpower/status/468952781999845376/photo/1", + "type": "photo", + "sizes": { + "small": { + "w": 340, + "h": 604, + "resize": "fit" + }, + "large": { + "w": 576, + "h": 1024, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 576, + "h": 1024, + "resize": "fit" + } + } + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 730, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed May 21 14:02:17 +0000 2014", + "id": 469115968166572033, + "id_str": "469115968166572033", + "text": "Word on the street is eBay done get hacked. They botched their coordinated disclosure https://t.co/sMg2EKz90F", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 20, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed May 21 13:39:41 +0000 2014", + "id": 469110280237350915, + "id_str": "469110280237350915", + "text": "@zigg @neoemonk I did read something recently that the effect is, curiously, much more likely to work for (cis)men than (cis)women", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469109146839969794, + "in_reply_to_status_id_str": "469109146839969794", + "in_reply_to_user_id": 14877471, + "in_reply_to_user_id_str": "14877471", + "in_reply_to_screen_name": "zigg", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 21 13:37:34 +0000 2014", + "id": 469109747770486784, + "id_str": "469109747770486784", + "text": "@zigg @neoemonk well, um, congrats on being one of the relatively few people who can both visually process that and not feel ill :\\", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469109146839969794, + "in_reply_to_status_id_str": "469109146839969794", + "in_reply_to_user_id": 14877471, + "in_reply_to_user_id_str": "14877471", + "in_reply_to_screen_name": "zigg", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 21 13:32:23 +0000 2014", + "id": 469108444314624000, + "id_str": "469108444314624000", + "text": "@neoemonk 2DS is cheaper than 3DS, easier to hold IMO, and lacks the expensive misfeature", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469061255215734784, + "in_reply_to_status_id_str": "469061255215734784", + "in_reply_to_user_id": 186772185, + "in_reply_to_user_id_str": "186772185", + "in_reply_to_screen_name": "neoemonk", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 21 13:31:04 +0000 2014", + "id": 469108113048891392, + "id_str": "469108113048891392", + "text": "@tomslominski I’m so sorry.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 469020696258297856, + "in_reply_to_status_id_str": "469020696258297856", + "in_reply_to_user_id": 21990961, + "in_reply_to_user_id_str": "21990961", + "in_reply_to_screen_name": "tomslominski", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 21 05:01:42 +0000 2014", + "id": 468979925643321344, + "id_str": "468979925643321344", + "text": "@jesster_king … it has a brightness setting?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468979809473683456, + "in_reply_to_status_id_str": "468979809473683456", + "in_reply_to_user_id": 46763517, + "in_reply_to_user_id_str": "46763517", + "in_reply_to_screen_name": "jesster_king", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 21 04:57:54 +0000 2014", + "id": 468978972014182401, + "id_str": "468978972014182401", + "text": "@xkeepah it makes sense when you have Hispanic… but they seem to have somehow omitted Hispanic", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468977971869786113, + "in_reply_to_status_id_str": "468977971869786113", + "in_reply_to_user_id": 61653331, + "in_reply_to_user_id_str": "61653331", + "in_reply_to_screen_name": "xkeepah", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 21 04:52:29 +0000 2014", + "id": 468977608399405057, + "id_str": "468977608399405057", + "text": "Managed to run the 2DS battery down to red twice in one night. I guess pumping those polygons is hard work", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 21 04:50:46 +0000 2014", + "id": 468977174415163392, + "id_str": "468977174415163392", + "text": "@zygen … … dare I ask", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468976960975421440, + "in_reply_to_status_id_str": "468976960975421440", + "in_reply_to_user_id": 12843182, + "in_reply_to_user_id_str": "12843182", + "in_reply_to_screen_name": "zygen", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "ro" + }, + { + "created_at": "Wed May 21 04:36:37 +0000 2014", + "id": 468973613094543360, + "id_str": "468973613094543360", + "text": "@jesster_king @xa329 no it’s… very definitely a normal red fox with its tail on fire", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468972851706753025, + "in_reply_to_status_id_str": "468972851706753025", + "in_reply_to_user_id": 46763517, + "in_reply_to_user_id_str": "46763517", + "in_reply_to_screen_name": "jesster_king", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 21 03:33:24 +0000 2014", + "id": 468957704057536512, + "id_str": "468957704057536512", + "text": "@gewt @Myriachan @hinanawi_chan as long as you know that Firefox is literally funded by Google and has been for a while", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468957510171639808, + "in_reply_to_status_id_str": "468957510171639808", + "in_reply_to_user_id": 18125825, + "in_reply_to_user_id_str": "18125825", + "in_reply_to_screen_name": "gewt", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 21 03:31:00 +0000 2014", + "id": 468957099821916160, + "id_str": "468957099821916160", + "text": "@m1sp …. Seventh time’s the charm? Is that special attack going to be problematic D: http://t.co/PL2FytrnPm", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed May 21 02:40:52 +0000 2014", + "id": 468944483158335489, + "id_str": "468944483158335489", + "text": "@m1sp … the baby has stall.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468943159205330946, + "in_reply_to_status_id_str": "468943159205330946", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": true, + "retweeted": false, + "lang": "de" + }, + { + "created_at": "Wed May 21 02:33:37 +0000 2014", + "id": 468942661475655680, + "id_str": "468942661475655680", + "text": "@FioraAeterna @bobpoekert @m1sp different abilities, different genders, etc.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468942501764956160, + "in_reply_to_status_id_str": "468942501764956160", + "in_reply_to_user_id": 2468699718, + "in_reply_to_user_id_str": "2468699718", + "in_reply_to_screen_name": "FioraAeterna", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "fr" + }, + { + "created_at": "Wed May 21 02:20:01 +0000 2014", + "id": 468939239326220288, + "id_str": "468939239326220288", + "text": "@FioraAeterna @m1sp it actually stresses me out a bit :\\ gotta remind myself no one is going to harass her", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468938603931136000, + "in_reply_to_status_id_str": "468938603931136000", + "in_reply_to_user_id": 2468699718, + "in_reply_to_user_id_str": "2468699718", + "in_reply_to_screen_name": "FioraAeterna", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 21 02:18:27 +0000 2014", + "id": 468938843815956480, + "id_str": "468938843815956480", + "text": "@ELLIOTTCABLE girls start the game with long hair of a color matched to their oversimplified ethnicity", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468938656938741760, + "in_reply_to_status_id_str": "468938656938741760", + "in_reply_to_user_id": 771681, + "in_reply_to_user_id_str": "771681", + "in_reply_to_screen_name": "ELLIOTTCABLE", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 21 02:17:13 +0000 2014", + "id": 468938533831716865, + "id_str": "468938533831716865", + "text": "@ELLIOTTCABLE @m1sp … this looks nothing like what you start the game with", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468938302863994882, + "in_reply_to_status_id_str": "468938302863994882", + "in_reply_to_user_id": 771681, + "in_reply_to_user_id_str": "771681", + "in_reply_to_screen_name": "ELLIOTTCABLE", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 21 02:15:53 +0000 2014", + "id": 468938198434213888, + "id_str": "468938198434213888", + "text": ".@m1sp tell me I’m pretty http://t.co/AV4vLgxlCp", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 13, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed May 21 02:04:35 +0000 2014", + "id": 468935355673346048, + "id_str": "468935355673346048", + "text": "@bobpoekert @FioraAeterna @m1sp yes actually that’s basically what they are…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468934954718855168, + "in_reply_to_status_id_str": "468934954718855168", + "in_reply_to_user_id": 191945961, + "in_reply_to_user_id_str": "191945961", + "in_reply_to_screen_name": "bobpoekert", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 21 02:02:51 +0000 2014", + "id": 468934917863505920, + "id_str": "468934917863505920", + "text": "@FioraAeterna @m1sp I wish I had the time to care :(", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468934687768207361, + "in_reply_to_status_id_str": "468934687768207361", + "in_reply_to_user_id": 2468699718, + "in_reply_to_user_id_str": "2468699718", + "in_reply_to_screen_name": "FioraAeterna", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 21 02:01:25 +0000 2014", + "id": 468934557379854336, + "id_str": "468934557379854336", + "text": "@m1sp the first egg hasn’t hatched yet. I’m at five useless captures.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468934354824359937, + "in_reply_to_status_id_str": "468934354824359937", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 21 01:48:02 +0000 2014", + "id": 468931188791717888, + "id_str": "468931188791717888", + "text": "@m1sp I am so legit angry at these sableyes right now", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 21 01:30:06 +0000 2014", + "id": 468926675879993345, + "id_str": "468926675879993345", + "text": "@DarrenPMeyer my father — a veteran and a cop — would laugh himself silly at the suggestion a cornered mother isn’t crazy dangerous.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468925076386377728, + "in_reply_to_status_id_str": "468925076386377728", + "in_reply_to_user_id": 468928589, + "in_reply_to_user_id_str": "468928589", + "in_reply_to_screen_name": "DarrenPMeyer", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 21 01:25:51 +0000 2014", + "id": 468925606697402368, + "id_str": "468925606697402368", + "text": "@Mark_Coker @demize95 … this world where everyone who smokes mj is high out of their mind on the job is alien to me", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468925223568695296, + "in_reply_to_status_id_str": "468925223568695296", + "in_reply_to_user_id": 64872429, + "in_reply_to_user_id_str": "64872429", + "in_reply_to_screen_name": "Mark_Coker", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 21 01:24:13 +0000 2014", + "id": 468925196012126209, + "id_str": "468925196012126209", + "text": "@Mark_Coker @demize95 I’ve probably only ever met one person who ABUSED marijuana. She was, incidentally, already an idiot", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468924746521116672, + "in_reply_to_status_id_str": "468924746521116672", + "in_reply_to_user_id": 64872429, + "in_reply_to_user_id_str": "64872429", + "in_reply_to_screen_name": "Mark_Coker", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 21 01:23:19 +0000 2014", + "id": 468924967049256961, + "id_str": "468924967049256961", + "text": "@Mark_Coker @demize95 do you see what you did \n\nWe are talking about u s e \n\nYou are making it automatically a b u s e", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468924746521116672, + "in_reply_to_status_id_str": "468924746521116672", + "in_reply_to_user_id": 64872429, + "in_reply_to_user_id_str": "64872429", + "in_reply_to_screen_name": "Mark_Coker", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 21 01:22:13 +0000 2014", + "id": 468924691886125056, + "id_str": "468924691886125056", + "text": "@demize95 @FioraAeterna @xa329 noob can’t tell windows XP from classic theme", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468924458368253952, + "in_reply_to_status_id_str": "468924458368253952", + "in_reply_to_user_id": 137133048, + "in_reply_to_user_id_str": "137133048", + "in_reply_to_screen_name": "demize95", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 21 01:20:27 +0000 2014", + "id": 468924249575800832, + "id_str": "468924249575800832", + "text": "@Mark_Coker @demize95 oh, I hold people to high standards, but concerning things that like… actually… affect anything??", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468924070952968192, + "in_reply_to_status_id_str": "468924070952968192", + "in_reply_to_user_id": 64872429, + "in_reply_to_user_id_str": "64872429", + "in_reply_to_screen_name": "Mark_Coker", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 21 01:18:10 +0000 2014", + "id": 468923672431177728, + "id_str": "468923672431177728", + "text": ".@xa329 I’d like Firefox the browser a lot more if it used an actual red panda for the mascot", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468923034905378819, + "in_reply_to_status_id_str": "468923034905378819", + "in_reply_to_user_id": 96867459, + "in_reply_to_user_id_str": "96867459", + "in_reply_to_screen_name": "xa329", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 8, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 21 01:14:30 +0000 2014", + "id": 468922748472164352, + "id_str": "468922748472164352", + "text": "@greerga thankfully I’ve never had to deal with that awful situation 8)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468922651994783746, + "in_reply_to_status_id_str": "468922651994783746", + "in_reply_to_user_id": 313743868, + "in_reply_to_user_id_str": "313743868", + "in_reply_to_screen_name": "greerga", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 21 01:12:49 +0000 2014", + "id": 468922328261603330, + "id_str": "468922328261603330", + "text": "@Mark_Coker @demize95 it’s as nonsensical as banning everyone who drinks because they’re raging alcoholics", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468921861007753216, + "in_reply_to_status_id_str": "468921861007753216", + "in_reply_to_user_id": 64872429, + "in_reply_to_user_id_str": "64872429", + "in_reply_to_screen_name": "Mark_Coker", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 21 01:12:20 +0000 2014", + "id": 468922205158772739, + "id_str": "468922205158772739", + "text": "@Mark_Coker @demize95 I would genuinely have a difficult time filling out a list of college graduates who have never tried weed.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468921861007753216, + "in_reply_to_status_id_str": "468921861007753216", + "in_reply_to_user_id": 64872429, + "in_reply_to_user_id_str": "64872429", + "in_reply_to_screen_name": "Mark_Coker", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 21 01:09:30 +0000 2014", + "id": 468921490369699840, + "id_str": "468921490369699840", + "text": "@chrissistrunk big if ;)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468921348770004992, + "in_reply_to_status_id_str": "468921348770004992", + "in_reply_to_user_id": 28796038, + "in_reply_to_user_id_str": "28796038", + "in_reply_to_screen_name": "chrissistrunk", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 21 01:06:23 +0000 2014", + "id": 468920708761133057, + "id_str": "468920708761133057", + "text": "@Talen_Lee well okay", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468912375643791360, + "in_reply_to_status_id_str": "468912375643791360", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 21 01:05:45 +0000 2014", + "id": 468920549868339200, + "id_str": "468920549868339200", + "text": "@Kufat there was definitely shouting", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468920423456206848, + "in_reply_to_status_id_str": "468920423456206848", + "in_reply_to_user_id": 207691003, + "in_reply_to_user_id_str": "207691003", + "in_reply_to_screen_name": "Kufat", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 21 01:04:08 +0000 2014", + "id": 468920142534287360, + "id_str": "468920142534287360", + "text": "xoxo Firefox friends I don’t actually hate your browser", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 21 01:03:26 +0000 2014", + "id": 468919963429126145, + "id_str": "468919963429126145", + "text": "It occurs to me that religious joke may go over the heads of most of you, the joke is he prefers Firefox and is objectively wrong", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 9, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 21 01:00:36 +0000 2014", + "id": 468919252402319362, + "id_str": "468919252402319362", + "text": "Big fight with the spouse. In tears. Mother was right, Chrome and Firefox users shouldn’t be unevenly yoked", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 11, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 23:43:26 +0000 2014", + "id": 468899830547619840, + "id_str": "468899830547619840", + "text": "It’d be a lot easier to vent about my husband on twitter if all his coworkers didn’t follow me", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 7, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 23:41:33 +0000 2014", + "id": 468899358159929344, + "id_str": "468899358159929344", + "text": "@Talen_Lee wow that’s actually kinda mean!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468899251192619008, + "in_reply_to_status_id_str": "468899251192619008", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 23:41:15 +0000 2014", + "id": 468899283933356034, + "id_str": "468899283933356034", + "text": "@Talen_Lee https://t.co/g8mpSrxd4h", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468899017687310337, + "in_reply_to_status_id_str": "468899017687310337", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "quoted_status_id": 468078030154645504, + "quoted_status_id_str": "468078030154645504", + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Tue May 20 23:40:46 +0000 2014", + "id": 468899161291898881, + "id_str": "468899161291898881", + "text": "@Talen_Lee I’m from New Hampshire.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468899017687310337, + "in_reply_to_status_id_str": "468899017687310337", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 23:39:52 +0000 2014", + "id": 468898933692174337, + "id_str": "468898933692174337", + "text": "@Talen_Lee my culture", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468898442241400832, + "in_reply_to_status_id_str": "468898442241400832", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 23:34:56 +0000 2014", + "id": 468897693512003584, + "id_str": "468897693512003584", + "text": "@Talen_Lee of course we do", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468895946064265216, + "in_reply_to_status_id_str": "468895946064265216", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 23:27:30 +0000 2014", + "id": 468895824718864384, + "id_str": "468895824718864384", + "text": "@m1sp I think I just left a male and a ditto that will work right…?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468895665431777281, + "in_reply_to_status_id_str": "468895665431777281", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 23:22:25 +0000 2014", + "id": 468894544978018304, + "id_str": "468894544978018304", + "text": "@Talen_Lee @m1sp I would definitely settle for Not Stall. Why is this even an ability", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468894145747382273, + "in_reply_to_status_id_str": "468894145747382273", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 23:20:31 +0000 2014", + "id": 468894065380294657, + "id_str": "468894065380294657", + "text": "@Talen_Lee @m1sp … I guess?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468893981242556416, + "in_reply_to_status_id_str": "468893981242556416", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "da" + }, + { + "created_at": "Tue May 20 23:19:26 +0000 2014", + "id": 468893792381464576, + "id_str": "468893792381464576", + "text": "@m1sp and I’m guessing daddy with stall x mommy with stall == baby with stall", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 23:19:05 +0000 2014", + "id": 468893703063748608, + "id_str": "468893703063748608", + "text": "@m1sp does “ditto and sableye don’t seem to like each other” mean no babies?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 22:37:16 +0000 2014", + "id": 468883183103377412, + "id_str": "468883183103377412", + "text": "> adults freaking out about things teens have always done, but now the teens also post it to instagram", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 4, + "favorite_count": 9, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 22:34:20 +0000 2014", + "id": 468882444683591681, + "id_str": "468882444683591681", + "text": "@Kufat this is yet more “two different teens did it so it’s a youth trend” journalism", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468882225245999105, + "in_reply_to_status_id_str": "468882225245999105", + "in_reply_to_user_id": 207691003, + "in_reply_to_user_id_str": "207691003", + "in_reply_to_screen_name": "Kufat", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 22:32:25 +0000 2014", + "id": 468881962347016192, + "id_str": "468881962347016192", + "text": "@Kufat um this literally has the word #teen in it\n\nWith the hashtag", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468881473391849472, + "in_reply_to_status_id_str": "468881473391849472", + "in_reply_to_user_id": 207691003, + "in_reply_to_user_id_str": "207691003", + "in_reply_to_screen_name": "Kufat", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 22:29:19 +0000 2014", + "id": 468881181300514816, + "id_str": "468881181300514816", + "text": "RT @dansolomon: Just got an email with the subject “Are you sick and tired of COBRA” but it was just some dumb insurance thing and not GI J…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue May 20 15:41:51 +0000 2014", + "id": 468778638704263171, + "id_str": "468778638704263171", + "text": "Just got an email with the subject “Are you sick and tired of COBRA” but it was just some dumb insurance thing and not GI Joe recruiting me.", + "source": "TweetDeck", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 24749234, + "id_str": "24749234" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 141, + "favorite_count": 127, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 141, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 22:27:20 +0000 2014", + "id": 468880680450285569, + "id_str": "468880680450285569", + "text": "@mkmagicannon @m1sp @Trif4 … I literally don’t know of a single phone I or anyone I know owns with a hinge", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468880383355154432, + "in_reply_to_status_id_str": "468880383355154432", + "in_reply_to_user_id": 2315119063, + "in_reply_to_user_id_str": "2315119063", + "in_reply_to_screen_name": "mkmagicannon", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 22:24:59 +0000 2014", + "id": 468880088315219968, + "id_str": "468880088315219968", + "text": "@m1sp two hours, three sableyes, zero not stallers.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 22:13:31 +0000 2014", + "id": 468877202998960128, + "id_str": "468877202998960128", + "text": "@landley @quinnnorton I’m mostly referring to stuff like the clearance.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468877073873137666, + "in_reply_to_status_id_str": "468877073873137666", + "in_reply_to_user_id": 14326287, + "in_reply_to_user_id_str": "14326287", + "in_reply_to_screen_name": "landley", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 22:08:38 +0000 2014", + "id": 468875975095484418, + "id_str": "468875975095484418", + "text": "@Trif4 yes. People freak out about the no hinge thing but like what is your bag full of nails", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468875075882868736, + "in_reply_to_status_id_str": "468875075882868736", + "in_reply_to_user_id": 80297629, + "in_reply_to_user_id_str": "80297629", + "in_reply_to_screen_name": "Trif4", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 22:05:23 +0000 2014", + "id": 468875157487251456, + "id_str": "468875157487251456", + "text": "@MechMK1 https://t.co/SKCeCREPxG", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468875076377796610, + "in_reply_to_status_id_str": "468875076377796610", + "in_reply_to_user_id": 81556825, + "in_reply_to_user_id_str": "81556825", + "in_reply_to_screen_name": "MechMK1", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "quoted_status_id": 468872998230179840, + "quoted_status_id_str": "468872998230179840", + "quoted_status": { + "created_at": "Tue May 20 21:56:48 +0000 2014", + "id": 468872998230179840, + "id_str": "468872998230179840", + "text": "I’m going to start catching these Wobuffets and wonder trading them out of spite #pokemontweets", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 8, + "entities": { + "hashtags": [ + { + "text": "pokemontweets", + "indices": [ + 81, + 95 + ] + } + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Tue May 20 22:04:23 +0000 2014", + "id": 468874906344898561, + "id_str": "468874906344898561", + "text": "Sorry .jp kid. But I keep my promises http://t.co/yBWPvsicAC", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 8, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 21:57:25 +0000 2014", + "id": 468873154224734209, + "id_str": "468873154224734209", + "text": "@jwisser reflection cave looking for Sableye", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468873088168628224, + "in_reply_to_status_id_str": "468873088168628224", + "in_reply_to_user_id": 665833, + "in_reply_to_user_id_str": "665833", + "in_reply_to_screen_name": "jwisser", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 21:56:48 +0000 2014", + "id": 468872998230179840, + "id_str": "468872998230179840", + "text": "I’m going to start catching these Wobuffets and wonder trading them out of spite #pokemontweets", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 8, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 21:54:02 +0000 2014", + "id": 468872299148750850, + "id_str": "468872299148750850", + "text": "@m1sp but I want one that’s mine and mine alone! I already begged Merit off of you", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468872177723650048, + "in_reply_to_status_id_str": "468872177723650048", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 21:51:48 +0000 2014", + "id": 468871739028811776, + "id_str": "468871739028811776", + "text": "@m1sp the encounter rate for them in reflection cave seems REALLY low", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468871297439920129, + "in_reply_to_status_id_str": "468871297439920129", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 21:45:59 +0000 2014", + "id": 468870273429938176, + "id_str": "468870273429938176", + "text": "@Myriachan @okoeroo they can be surprisingly lax for a highly specialized technical role. Whence the FBI considering changing MJ rules lol", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468870001404149760, + "in_reply_to_status_id_str": "468870001404149760", + "in_reply_to_user_id": 1556497868, + "in_reply_to_user_id_str": "1556497868", + "in_reply_to_screen_name": "Myriachan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 21:44:17 +0000 2014", + "id": 468869849314500608, + "id_str": "468869849314500608", + "text": "@m1sp I’m playing Pokemon again and I’m having an awful time finding a Sableye with the power that isn’t “always goes last lol”", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 21:41:25 +0000 2014", + "id": 468869125868384257, + "id_str": "468869125868384257", + "text": "@DrPizza theoretically an implementation detail but it turns out people only buy one of them?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468868987288584192, + "in_reply_to_status_id_str": "468868987288584192", + "in_reply_to_user_id": 11375732, + "in_reply_to_user_id_str": "11375732", + "in_reply_to_screen_name": "DrPizza", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 21:39:46 +0000 2014", + "id": 468868710384824320, + "id_str": "468868710384824320", + "text": "@okoeroo nope! I have filled out all the paperwork myself, though it was never submitted.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468868478968283136, + "in_reply_to_status_id_str": "468868478968283136", + "in_reply_to_user_id": 14131361, + "in_reply_to_user_id_str": "14131361", + "in_reply_to_screen_name": "okoeroo", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 21:37:34 +0000 2014", + "id": 468868155314802689, + "id_str": "468868155314802689", + "text": "@okoeroo but really what I’m getting at is that the process to get a high level clearance is extremely invasive and they consented", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468867718838763521, + "in_reply_to_status_id_str": "468867718838763521", + "in_reply_to_user_id": 14131361, + "in_reply_to_user_id_str": "14131361", + "in_reply_to_screen_name": "okoeroo", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 21:36:36 +0000 2014", + "id": 468867915262230529, + "id_str": "468867915262230529", + "text": "@okoeroo when I was little I was told that the home of my BFF whose father was CIA was subject to search at any time by the aforementioned", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468867718838763521, + "in_reply_to_status_id_str": "468867718838763521", + "in_reply_to_user_id": 14131361, + "in_reply_to_user_id_str": "14131361", + "in_reply_to_screen_name": "okoeroo", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 21:34:40 +0000 2014", + "id": 468867426848112640, + "id_str": "468867426848112640", + "text": "@okoeroo not really relevant to the underlying psychological point (I think it’s done in batches but I’m not sure)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468867189861531649, + "in_reply_to_status_id_str": "468867189861531649", + "in_reply_to_user_id": 14131361, + "in_reply_to_user_id_str": "14131361", + "in_reply_to_screen_name": "okoeroo", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 21:32:05 +0000 2014", + "id": 468866775376199680, + "id_str": "468866775376199680", + "text": "@jjontx okay :)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468866674952007681, + "in_reply_to_status_id_str": "468866674952007681", + "in_reply_to_user_id": 9734132, + "in_reply_to_user_id_str": "9734132", + "in_reply_to_screen_name": "jjontx", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "tl" + }, + { + "created_at": "Tue May 20 21:31:48 +0000 2014", + "id": 468866705645916161, + "id_str": "468866705645916161", + "text": "That is to say, every single person at NSA etc. has demonstrably consented to the government closely investigating their friends and habits.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 7, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 21:30:35 +0000 2014", + "id": 468866398069215234, + "id_str": "468866398069215234", + "text": "@jjontx I meant in Japanese; be careful, if you look it up you will find gay porn :)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468865945071808513, + "in_reply_to_status_id_str": "468865945071808513", + "in_reply_to_user_id": 9734132, + "in_reply_to_user_id_str": "9734132", + "in_reply_to_screen_name": "jjontx", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 21:29:22 +0000 2014", + "id": 468866094984613888, + "id_str": "468866094984613888", + "text": "Something @quinnnorton brought up I hadn’t thought of— NSA employees have already self-selected for intense scrutiny of their personal lives", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 22, + "favorite_count": 18, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 21:18:19 +0000 2014", + "id": 468863312051339265, + "id_str": "468863312051339265", + "text": "@alt_m1sp moderation, schatje", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468859999465521152, + "in_reply_to_status_id_str": "468859999465521152", + "in_reply_to_user_id": 2401670173, + "in_reply_to_user_id_str": "2401670173", + "in_reply_to_screen_name": "alt_m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "nl" + }, + { + "created_at": "Tue May 20 21:16:00 +0000 2014", + "id": 468862729085022208, + "id_str": "468862729085022208", + "text": "@VanguardVivian @eevee wow yet another “I’m not a feminist! I believe in <literal textbook definition of feminism> which is different”", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468853538584817664, + "in_reply_to_status_id_str": "468853538584817664", + "in_reply_to_user_id": 16738904, + "in_reply_to_user_id_str": "16738904", + "in_reply_to_screen_name": "VanguardVivian", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 21:11:47 +0000 2014", + "id": 468861667733168128, + "id_str": "468861667733168128", + "text": "RT @SummaryBug: http://t.co/M1ic01qvLU", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sun May 18 23:59:29 +0000 2014", + "id": 468179093994110979, + "id_str": "468179093994110979", + "text": "http://t.co/M1ic01qvLU", + "source": "IFTTT", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2500805586, + "id_str": "2500805586" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 136, + "favorite_count": 148, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ], + "media": [ + { + "id": 468179093780185089, + "id_str": "468179093780185089", + "indices": [ + 0, + 22 + ], + "media_url": "http://pbs.twimg.com/media/Bn9OZ8AIQAEka50.jpg", + "media_url_https": "https://pbs.twimg.com/media/Bn9OZ8AIQAEka50.jpg", + "url": "http://t.co/M1ic01qvLU", + "display_url": "pic.twitter.com/M1ic01qvLU", + "expanded_url": "http://twitter.com/SummaryBug/status/468179093994110979/photo/1", + "type": "photo", + "sizes": { + "medium": { + "w": 600, + "h": 338, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 191, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 1024, + "h": 576, + "resize": "fit" + } + } + } + ] + }, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + "retweet_count": 136, + "favorite_count": 0, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Tue May 20 21:10:38 +0000 2014", + "id": 468861377202106369, + "id_str": "468861377202106369", + "text": "@jlwfnord mandatory", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468861290585546752, + "in_reply_to_status_id_str": "468861290585546752", + "in_reply_to_user_id": 2686861, + "in_reply_to_user_id_str": "2686861", + "in_reply_to_screen_name": "jlwfnord", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "it" + }, + { + "created_at": "Tue May 20 21:09:21 +0000 2014", + "id": 468861056677588993, + "id_str": "468861056677588993", + "text": "@CyberKitsune @Myriachan but like… I don’t think anyone says XP service pack 2 isn’t XP.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468860619840847873, + "in_reply_to_status_id_str": "468860619840847873", + "in_reply_to_user_id": 34858209, + "in_reply_to_user_id_str": "34858209", + "in_reply_to_screen_name": "CyberKitsune", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 21:08:42 +0000 2014", + "id": 468860891061309441, + "id_str": "468860891061309441", + "text": "Marriage is between a seme and an uke. Senpai said it, I believe it, that settles it.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 4, + "favorite_count": 11, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 21:05:19 +0000 2014", + "id": 468860040485830656, + "id_str": "468860040485830656", + "text": "@m1sp @demize95 did I miss something\n\nAre we starting a revolution", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468841583459041281, + "in_reply_to_status_id_str": "468841583459041281", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 21:03:17 +0000 2014", + "id": 468859530919804929, + "id_str": "468859530919804929", + "text": "@bgordonbob1 read your scriptures with a critical eye. Research the history of biblical scholarship. Learn some Greek. Get educated!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468859076441833472, + "in_reply_to_status_id_str": "468859076441833472", + "in_reply_to_user_id": 2471398290, + "in_reply_to_user_id_str": "2471398290", + "in_reply_to_screen_name": "bgordonbob1", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 21:02:29 +0000 2014", + "id": 468859329714860032, + "id_str": "468859329714860032", + "text": "@bgordonbob1 the problem is you just admitted you have no idea what you’re talking about but you repeat it as absolute truth anyway", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468859076441833472, + "in_reply_to_status_id_str": "468859076441833472", + "in_reply_to_user_id": 2471398290, + "in_reply_to_user_id_str": "2471398290", + "in_reply_to_screen_name": "bgordonbob1", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 21:01:17 +0000 2014", + "id": 468859027292962816, + "id_str": "468859027292962816", + "text": "@Myriachan lol the widget doesn’t support zooming out on iPad so I can’t see the whole line at the moment", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468858707737313280, + "in_reply_to_status_id_str": "468858707737313280", + "in_reply_to_user_id": 1556497868, + "in_reply_to_user_id_str": "1556497868", + "in_reply_to_screen_name": "Myriachan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 20:57:49 +0000 2014", + "id": 468858152747016192, + "id_str": "468858152747016192", + "text": "@bgordonbob1 I could print this out and frame it as the very definition of what’s wrong with modern Christianity", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468857027637551105, + "in_reply_to_status_id_str": "468857027637551105", + "in_reply_to_user_id": 2471398290, + "in_reply_to_user_id_str": "2471398290", + "in_reply_to_screen_name": "bgordonbob1", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 20:52:46 +0000 2014", + "id": 468856881327247360, + "id_str": "468856881327247360", + "text": "@WhiteMageSlave I didn’t really know about most of this until very recently", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468856189284253698, + "in_reply_to_status_id_str": "468856189284253698", + "in_reply_to_user_id": 90791634, + "in_reply_to_user_id_str": "90791634", + "in_reply_to_screen_name": "WhiteMageSlave", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 20:52:07 +0000 2014", + "id": 468856717837869057, + "id_str": "468856717837869057", + "text": "RT @chrisgeidner: The end of today's Pennsylvania marriage equality ruling. http://t.co/pXcvTAs6RP http://t.co/M9lLqkdZDL", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue May 20 19:02:20 +0000 2014", + "id": 468829090771107840, + "id_str": "468829090771107840", + "text": "The end of today's Pennsylvania marriage equality ruling. http://t.co/pXcvTAs6RP http://t.co/M9lLqkdZDL", + "source": "TweetDeck", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 22891564, + "id_str": "22891564" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1362, + "favorite_count": 757, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/pXcvTAs6RP", + "expanded_url": "http://bzfd.it/1sQAFnL", + "display_url": "bzfd.it/1sQAFnL", + "indices": [ + 59, + 81 + ] + } + ], + "user_mentions": [ + + ], + "media": [ + { + "id": 468829090561404928, + "id_str": "468829090561404928", + "indices": [ + 82, + 104 + ], + "media_url": "http://pbs.twimg.com/media/BoGdkutIMAAk6RL.png", + "media_url_https": "https://pbs.twimg.com/media/BoGdkutIMAAk6RL.png", + "url": "http://t.co/M9lLqkdZDL", + "display_url": "pic.twitter.com/M9lLqkdZDL", + "expanded_url": "http://twitter.com/chrisgeidner/status/468829090771107840/photo/1", + "type": "photo", + "sizes": { + "medium": { + "w": 600, + "h": 294, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 167, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 855, + "h": 419, + "resize": "fit" + } + } + } + ] + }, + "favorited": true, + "retweeted": true, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 1362, + "favorite_count": 0, + "favorited": true, + "retweeted": true, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 20:50:46 +0000 2014", + "id": 468856378879393794, + "id_str": "468856378879393794", + "text": "@WhiteMageSlave heheh well you did attend LC at the same time, she was the year under me", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468856189284253698, + "in_reply_to_status_id_str": "468856189284253698", + "in_reply_to_user_id": 90791634, + "in_reply_to_user_id_str": "90791634", + "in_reply_to_screen_name": "WhiteMageSlave", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 20:49:01 +0000 2014", + "id": 468855940100263936, + "id_str": "468855940100263936", + "text": "@WhiteMageSlave deadname Joseph Goff, you’re related.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468855181535625216, + "in_reply_to_status_id_str": "468855181535625216", + "in_reply_to_user_id": 90791634, + "in_reply_to_user_id_str": "90791634", + "in_reply_to_screen_name": "WhiteMageSlave", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 20:48:05 +0000 2014", + "id": 468855704976392193, + "id_str": "468855704976392193", + "text": "@bgordonbob1 @GeorgeTakei Thank you for sharing your opinion on exegesis of ancient cult scrolls. I’m sure you’re an expert.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468853848610574336, + "in_reply_to_status_id_str": "468853848610574336", + "in_reply_to_user_id": 2471398290, + "in_reply_to_user_id_str": "2471398290", + "in_reply_to_screen_name": "bgordonbob1", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 20:44:26 +0000 2014", + "id": 468854784628625408, + "id_str": "468854784628625408", + "text": "@WhiteMageSlave you know who she is right", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468830127594684416, + "in_reply_to_status_id_str": "468830127594684416", + "in_reply_to_user_id": 90791634, + "in_reply_to_user_id_str": "90791634", + "in_reply_to_screen_name": "WhiteMageSlave", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 20:41:59 +0000 2014", + "id": 468854168040398848, + "id_str": "468854168040398848", + "text": ".@demize95 maybe next it will dawn on the FBI that they can save taxpayers a fortune if the govt stops acting like marijuana is a crisis", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468853526001897473, + "in_reply_to_status_id_str": "468853526001897473", + "in_reply_to_user_id": 137133048, + "in_reply_to_user_id_str": "137133048", + "in_reply_to_screen_name": "demize95", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 20:39:06 +0000 2014", + "id": 468853444108095488, + "id_str": "468853444108095488", + "text": "The dark side of the future is every government demanding its own filter on internationally available speech. http://t.co/toip0yEXcI", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 4, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 20:31:18 +0000 2014", + "id": 468851481446068224, + "id_str": "468851481446068224", + "text": "FBI realizes it literally cannot hire enough people if the three year marijuana ban stays in effect http://t.co/CT09bQof1m", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 54, + "favorite_count": 30, + "favorited": true, + "retweeted": true, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 20:20:44 +0000 2014", + "id": 468848823218241536, + "id_str": "468848823218241536", + "text": "@Tuplet twin drill über alles", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468846751030325249, + "in_reply_to_status_id_str": "468846751030325249", + "in_reply_to_user_id": 34310651, + "in_reply_to_user_id_str": "34310651", + "in_reply_to_screen_name": "Tuplet", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "de" + }, + { + "created_at": "Tue May 20 19:50:23 +0000 2014", + "id": 468841183268319232, + "id_str": "468841183268319232", + "text": "@Kurausukun @bobpoekert a hacker-exploitable flaw in a computer program which has not yet been found by the developers who could fix it.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 468840617213452288, + "in_reply_to_status_id_str": "468840617213452288", + "in_reply_to_user_id": 94004293, + "in_reply_to_user_id_str": "94004293", + "in_reply_to_screen_name": "Kurausukun", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 19:35:34 +0000 2014", + "id": 468837454431399936, + "id_str": "468837454431399936", + "text": "@main____ for sane definitions of line ;)", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 468837096934105089, + "in_reply_to_status_id_str": "468837096934105089", + "in_reply_to_user_id": 258357924, + "in_reply_to_user_id_str": "258357924", + "in_reply_to_screen_name": "main____", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 19:21:05 +0000 2014", + "id": 468833810139086848, + "id_str": "468833810139086848", + "text": "@bobpoekert 0day is like sheep", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 468833713774542849, + "in_reply_to_status_id_str": "468833713774542849", + "in_reply_to_user_id": 191945961, + "in_reply_to_user_id_str": "191945961", + "in_reply_to_screen_name": "bobpoekert", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 19:19:09 +0000 2014", + "id": 468833321536204800, + "id_str": "468833321536204800", + "text": "@bobpoekert but the free 0day", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 468833234608877568, + "in_reply_to_status_id_str": "468833234608877568", + "in_reply_to_user_id": 191945961, + "in_reply_to_user_id_str": "191945961", + "in_reply_to_screen_name": "bobpoekert", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 19:17:02 +0000 2014", + "id": 468832789866246144, + "id_str": "468832789866246144", + "text": "@zhuowei @WhiteMageSlave yes. September Ever After is a play on words implying it's a fairy tale version of internet history.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 468832678448353283, + "in_reply_to_status_id_str": "468832678448353283", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 19:15:36 +0000 2014", + "id": 468832431555219458, + "id_str": "468832431555219458", + "text": "@thegrugq that's the fifth flaw.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 468832350990643201, + "in_reply_to_status_id_str": "468832350990643201", + "in_reply_to_user_id": 18983429, + "in_reply_to_user_id_str": "18983429", + "in_reply_to_screen_name": "thegrugq", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 19:13:07 +0000 2014", + "id": 468831804301246465, + "id_str": "468831804301246465", + "text": "I have some MP3s I downloaded on dialup ~10 years ago which got truncated and, to this day, occasionally cause MP3 players to choke.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 4, + "favorite_count": 7, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 19:09:57 +0000 2014", + "id": 468831010357272576, + "id_str": "468831010357272576", + "text": "@Tuplet but it's in my *profile*! Doesn't everyone read those things?! :)", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 468829965249564672, + "in_reply_to_status_id_str": "468829965249564672", + "in_reply_to_user_id": 34310651, + "in_reply_to_user_id_str": "34310651", + "in_reply_to_screen_name": "Tuplet", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 19:09:32 +0000 2014", + "id": 468830904648237057, + "id_str": "468830904648237057", + "text": "system(getenv(gets())); would be, like, five distinct flaw points under our system I think.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 13, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 19:03:34 +0000 2014", + "id": 468829401921355776, + "id_str": "468829401921355776", + "text": "(but only after we clarify that engine team isn't allowed to add new flaw types to the analysis)", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 19:02:21 +0000 2014", + "id": 468829095875592192, + "id_str": "468829095875592192", + "text": "We should have an internal contest to see who can generate the most Veracode-flagged flaws in a single line of code", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 6, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 18:38:01 +0000 2014", + "id": 468822972028166145, + "id_str": "468822972028166145", + "text": "Just had an analysis tool pop up a \"problem encountered, will fix - Feb 2006\" notice. I'll just wait here then...", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 4, + "favorite_count": 10, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 18:35:02 +0000 2014", + "id": 468822221755281410, + "id_str": "468822221755281410", + "text": "@alethenorio more in the context of not making stupid decisions as the operator", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 468821522560602113, + "in_reply_to_status_id_str": "468821522560602113", + "in_reply_to_user_id": 91866444, + "in_reply_to_user_id_str": "91866444", + "in_reply_to_screen_name": "alethenorio", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 17:49:25 +0000 2014", + "id": 468810743031549952, + "id_str": "468810743031549952", + "text": "@eevee @DannyPage I see someone doesn’t believe hard enough in the heart of the cards.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468805477829054465, + "in_reply_to_status_id_str": "468805477829054465", + "in_reply_to_user_id": 14412937, + "in_reply_to_user_id_str": "14412937", + "in_reply_to_screen_name": "eevee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 17:47:00 +0000 2014", + "id": 468810134832304129, + "id_str": "468810134832304129", + "text": "@Iskaros93 @WeldPond um, so you propose they lie about his name? Those are perfectly ordinary syllables over there.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468809617267380225, + "in_reply_to_status_id_str": "468809617267380225", + "in_reply_to_user_id": 173636707, + "in_reply_to_user_id_str": "173636707", + "in_reply_to_screen_name": "Iskaros93", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 17:42:11 +0000 2014", + "id": 468808921810219009, + "id_str": "468808921810219009", + "text": "@Iskaros93 @WeldPond what would be more correct?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468808711641628672, + "in_reply_to_status_id_str": "468808711641628672", + "in_reply_to_user_id": 173636707, + "in_reply_to_user_id_str": "173636707", + "in_reply_to_screen_name": "Iskaros93", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 17:34:49 +0000 2014", + "id": 468807066107535360, + "id_str": "468807066107535360", + "text": ".@WeldPond CYBER MUST BE APPEASED", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468781948115361792, + "in_reply_to_status_id_str": "468781948115361792", + "in_reply_to_user_id": 14090906, + "in_reply_to_user_id_str": "14090906", + "in_reply_to_screen_name": "WeldPond", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 6, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 17:34:36 +0000 2014", + "id": 468807012261056512, + "id_str": "468807012261056512", + "text": "RT @WeldPond: The FBI. Cyber's Most Wanted. Yes a possessive form of \"cyber\". http://t.co/lRedb4ic7u", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue May 20 15:55:00 +0000 2014", + "id": 468781948115361792, + "id_str": "468781948115361792", + "text": "The FBI. Cyber's Most Wanted. Yes a possessive form of \"cyber\". http://t.co/lRedb4ic7u", + "source": "iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 14090906, + "id_str": "14090906" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 15, + "favorite_count": 13, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/lRedb4ic7u", + "expanded_url": "http://m.fbi.gov/#http://www.fbi.gov/wanted/cyber", + "display_url": "m.fbi.gov/#http://www.fb…", + "indices": [ + 65, + 87 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 15, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 17:31:27 +0000 2014", + "id": 468806220359688192, + "id_str": "468806220359688192", + "text": "@tapbot_paul o/ present.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468776920931237889, + "in_reply_to_status_id_str": "468776920931237889", + "in_reply_to_user_id": 18247541, + "in_reply_to_user_id_str": "18247541", + "in_reply_to_screen_name": "tapbot_paul", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "pt" + }, + { + "created_at": "Tue May 20 17:30:39 +0000 2014", + "id": 468806017535721473, + "id_str": "468806017535721473", + "text": "“NASA had a huge staff of geniuses to understand and care for their software. Your phone has you.” — @quinnnorton", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 10, + "favorite_count": 7, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 17:30:14 +0000 2014", + "id": 468805914141917184, + "id_str": "468805914141917184", + "text": "RT @ryannielsen: “I don’t know all the details, but those who do are the most alcoholic and nihilistic people in computer security.” https:…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue May 20 15:14:40 +0000 2014", + "id": 468771798621102080, + "id_str": "468771798621102080", + "text": "“I don’t know all the details, but those who do are the most alcoholic and nihilistic people in computer security.” https://t.co/vgwp17kJC2", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 5197181, + "id_str": "5197181" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 63, + "favorite_count": 33, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "https://t.co/vgwp17kJC2", + "expanded_url": "https://medium.com/message/81e5f33a24e1", + "display_url": "medium.com/message/81e5f3…", + "indices": [ + 116, + 139 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 63, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 17:02:08 +0000 2014", + "id": 468798840691511296, + "id_str": "468798840691511296", + "text": "@zhuowei the github is open to android source, it came up in search first.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 468798705760366592, + "in_reply_to_status_id_str": "468798705760366592", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 16:57:09 +0000 2014", + "id": 468797588352008192, + "id_str": "468797588352008192", + "text": "Bug report: a story told in favicons http://t.co/W6JO5z1sAo", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 35, + "favorite_count": 27, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 16:53:45 +0000 2014", + "id": 468796734161055744, + "id_str": "468796734161055744", + "text": "@jesster_king no theta is oval with horizontal slash", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 468796352927776770, + "in_reply_to_status_id_str": "468796352927776770", + "in_reply_to_user_id": 46763517, + "in_reply_to_user_id_str": "46763517", + "in_reply_to_screen_name": "jesster_king", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 16:40:21 +0000 2014", + "id": 468793359491153921, + "id_str": "468793359491153921", + "text": "RT @da_667: @0xabad1dea @hypatiadotca and bash is terrible? I rest my esac.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue May 20 16:39:45 +0000 2014", + "id": 468793207338569728, + "id_str": "468793207338569728", + "text": "@0xabad1dea @hypatiadotca and bash is terrible? I rest my esac.", + "source": "TweetDeck", + "truncated": false, + "in_reply_to_status_id": 468792202332999680, + "in_reply_to_status_id_str": "468792202332999680", + "in_reply_to_user_id": 126030998, + "in_reply_to_user_id_str": "126030998", + "in_reply_to_screen_name": "0xabad1dea", + "user": { + "id": 717353881, + "id_str": "717353881" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 10, + "favorite_count": 11, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "0xabad1dea", + "name": "Melissa", + "id": 126030998, + "id_str": "126030998", + "indices": [ + 0, + 11 + ] + }, + { + "screen_name": "hypatiadotca", + "name": "well, actualleigh", + "id": 6742522, + "id_str": "6742522", + "indices": [ + 12, + 25 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 10, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 16:35:45 +0000 2014", + "id": 468792202332999680, + "id_str": "468792202332999680", + "text": "The stray comma inspires confidence http://t.co/zbqChee9AG", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 32, + "favorite_count": 46, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 16:18:00 +0000 2014", + "id": 468787734979805184, + "id_str": "468787734979805184", + "text": "@da_667 @solak @McGrewSecurity I need provide no further justification than \"esac\"", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 468787306888183808, + "in_reply_to_status_id_str": "468787306888183808", + "in_reply_to_user_id": 717353881, + "in_reply_to_user_id_str": "717353881", + "in_reply_to_screen_name": "da_667", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 16:08:31 +0000 2014", + "id": 468785348924162049, + "id_str": "468785348924162049", + "text": "\"Bash is turing-complete; you can write any program in it. Please don't.\" - @solak", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 88, + "favorite_count": 63, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 16:01:13 +0000 2014", + "id": 468783510569111552, + "id_str": "468783510569111552", + "text": "@eevee @shoko55mmts it'd be mean to say welcome to the eighties wouldn't it", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 468782309525561344, + "in_reply_to_status_id_str": "468782309525561344", + "in_reply_to_user_id": 14412937, + "in_reply_to_user_id_str": "14412937", + "in_reply_to_screen_name": "eevee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 15:37:14 +0000 2014", + "id": 468777477016682496, + "id_str": "468777477016682496", + "text": "@gotyaoi *China* is crazy about pirated XP, it is known. But I can't really make an inference about official government computers from that", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 468777294191161344, + "in_reply_to_status_id_str": "468777294191161344", + "in_reply_to_user_id": 393022772, + "in_reply_to_user_id_str": "393022772", + "in_reply_to_screen_name": "gotyaoi", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 15:33:27 +0000 2014", + "id": 468776524976771074, + "id_str": "468776524976771074", + "text": "@Myriachan I don’t think anyone actually considers 8.1 to not be Windows 8", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468776391698554880, + "in_reply_to_status_id_str": "468776391698554880", + "in_reply_to_user_id": 1556497868, + "in_reply_to_user_id_str": "1556497868", + "in_reply_to_screen_name": "Myriachan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 15:28:18 +0000 2014", + "id": 468775228446093314, + "id_str": "468775228446093314", + "text": "@aspects_ebooks *harsh*", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468775019989176320, + "in_reply_to_status_id_str": "468775019989176320", + "in_reply_to_user_id": 2345404375, + "in_reply_to_user_id_str": "2345404375", + "in_reply_to_screen_name": "aspects_ebooks", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 15:27:47 +0000 2014", + "id": 468775099777441794, + "id_str": "468775099777441794", + "text": "(Vista who? There’s no Vista here)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 15:26:19 +0000 2014", + "id": 468774730343141376, + "id_str": "468774730343141376", + "text": "If the 🇨🇳 govt is using XP rather than Windows 7 — on any machines — it’s really cute they think banning Windows 8 could help anything", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 10, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 15:18:39 +0000 2014", + "id": 468772799658856448, + "id_str": "468772799658856448", + "text": "@xkeepah quaking in my boots", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468769028043853826, + "in_reply_to_status_id_str": "468769028043853826", + "in_reply_to_user_id": 61653331, + "in_reply_to_user_id_str": "61653331", + "in_reply_to_screen_name": "xkeepah", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 15:17:59 +0000 2014", + "id": 468772630343192576, + "id_str": "468772630343192576", + "text": "Could someone please tell me what Chinese government computers DO use? Please tell me it is in fact XP haha http://t.co/LCV1ehDVqQ", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 15:11:56 +0000 2014", + "id": 468771110981734401, + "id_str": "468771110981734401", + "text": "RT @slfritchie: Hand-crafted IP packets with Form RFC 791: \"Print legibly and press hard. You are making up to 255 copies.\" http://t.co/PG8…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Mon May 19 08:08:24 +0000 2014", + "id": 468302135457636352, + "id_str": "468302135457636352", + "text": "Hand-crafted IP packets with Form RFC 791: \"Print legibly and press hard. You are making up to 255 copies.\" http://t.co/PG8VUCbskt", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 97135225, + "id_str": "97135225" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1968, + "favorite_count": 1156, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ], + "media": [ + { + "id": 468302133285384192, + "id_str": "468302133285384192", + "indices": [ + 108, + 130 + ], + "media_url": "http://pbs.twimg.com/media/Bn--Tx4IcAAcR4h.jpg", + "media_url_https": "https://pbs.twimg.com/media/Bn--Tx4IcAAcR4h.jpg", + "url": "http://t.co/PG8VUCbskt", + "display_url": "pic.twitter.com/PG8VUCbskt", + "expanded_url": "http://twitter.com/slfritchie/status/468302135457636352/photo/1", + "type": "photo", + "sizes": { + "large": { + "w": 1024, + "h": 753, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 600, + "h": 441, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 250, + "resize": "fit" + } + } + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 1968, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 15:09:29 +0000 2014", + "id": 468770494377103360, + "id_str": "468770494377103360", + "text": "RT @shoko55mmts: あああああああああああああああああああああああああががががががががああああああああああああああああああああ http://t.co/q0Kx5H5KUP", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue May 20 09:18:18 +0000 2014", + "id": 468682112866861056, + "id_str": "468682112866861056", + "text": "あああああああああああああああああああああああああががががががががああああああああああああああああああああ http://t.co/q0Kx5H5KUP", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 1570086542, + "id_str": "1570086542" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2669, + "favorite_count": 1707, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ], + "media": [ + { + "id": 468682106793897984, + "id_str": "468682106793897984", + "indices": [ + 54, + 76 + ], + "media_url": "http://pbs.twimg.com/media/BoEX5JgIMAAmrtr.jpg", + "media_url_https": "https://pbs.twimg.com/media/BoEX5JgIMAAmrtr.jpg", + "url": "http://t.co/q0Kx5H5KUP", + "display_url": "pic.twitter.com/q0Kx5H5KUP", + "expanded_url": "http://twitter.com/shoko55mmts/status/468682112866861056/photo/1", + "type": "photo", + "sizes": { + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 453, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 800, + "resize": "fit" + }, + "large": { + "w": 768, + "h": 1024, + "resize": "fit" + } + } + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "ja" + }, + "retweet_count": 2669, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "ja" + }, + { + "created_at": "Tue May 20 15:06:36 +0000 2014", + "id": 468769769060331520, + "id_str": "468769769060331520", + "text": "@dangoodin001 I *think* they would be arrested, in the US at the very least, followed by “uhh so what do we do now”", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468747523612352513, + "in_reply_to_status_id_str": "468747523612352513", + "in_reply_to_user_id": 14150736, + "in_reply_to_user_id_str": "14150736", + "in_reply_to_screen_name": "dangoodin001", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 15:04:18 +0000 2014", + "id": 468769186790248448, + "id_str": "468769186790248448", + "text": "@gvwilson @hypatiadotca http://t.co/jjbl7xRvQl", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468732897307164673, + "in_reply_to_status_id_str": "468732897307164673", + "in_reply_to_user_id": 21506708, + "in_reply_to_user_id_str": "21506708", + "in_reply_to_screen_name": "gvwilson", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Tue May 20 15:04:18 +0000 2014", + "id": 468769186790248448, + "id_str": "468769186790248448", + "text": "@gvwilson @hypatiadotca http://t.co/jjbl7xRvQl", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468732897307164673, + "in_reply_to_status_id_str": "468732897307164673", + "in_reply_to_user_id": 21506708, + "in_reply_to_user_id_str": "21506708", + "in_reply_to_screen_name": "gvwilson", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Tue May 20 15:01:44 +0000 2014", + "id": 468768542394159104, + "id_str": "468768542394159104", + "text": "@Talen_Lee lewd", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468768494083776513, + "in_reply_to_status_id_str": "468768494083776513", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Tue May 20 15:00:42 +0000 2014", + "id": 468768283966320640, + "id_str": "468768283966320640", + "text": "@Talen_Lee I keep wanting to buy some but what would I ever use it for", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468732843225411585, + "in_reply_to_status_id_str": "468732843225411585", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 14:59:41 +0000 2014", + "id": 468768024762540032, + "id_str": "468768024762540032", + "text": "@surre_hue I’m playing linguistic favorites.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468767486398435328, + "in_reply_to_status_id_str": "468767486398435328", + "in_reply_to_user_id": 251316722, + "in_reply_to_user_id_str": "251316722", + "in_reply_to_screen_name": "surre_hue", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 14:59:09 +0000 2014", + "id": 468767890582568960, + "id_str": "468767890582568960", + "text": "@stoftis in the paper it was very specifically round Ø and not oval slash zero", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468765373928841216, + "in_reply_to_status_id_str": "468765373928841216", + "in_reply_to_user_id": 443483479, + "in_reply_to_user_id_str": "443483479", + "in_reply_to_screen_name": "stoftis", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 14:22:57 +0000 2014", + "id": 468758781460234240, + "id_str": "468758781460234240", + "text": "@kwaioMax hmm.. I guess some come with it pre flashed and you need an activation key or something. Great, more research ಠ_ಠ", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468757839683805184, + "in_reply_to_status_id_str": "468757839683805184", + "in_reply_to_user_id": 600289581, + "in_reply_to_user_id_str": "600289581", + "in_reply_to_screen_name": "kwaioMax", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 14:21:06 +0000 2014", + "id": 468758317259841537, + "id_str": "468758317259841537", + "text": "@kwaioMax companies buy them with that preloaded on purpose. It’s expensive. You won’t accidentally buy a computer with it unknowing", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468757839683805184, + "in_reply_to_status_id_str": "468757839683805184", + "in_reply_to_user_id": 600289581, + "in_reply_to_user_id_str": "600289581", + "in_reply_to_screen_name": "kwaioMax", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 14:19:33 +0000 2014", + "id": 468757926900158464, + "id_str": "468757926900158464", + "text": "@kwaioMax because heartbleed affects pretty much everything in the known universe, over the internet?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468757740756930560, + "in_reply_to_status_id_str": "468757740756930560", + "in_reply_to_user_id": 600289581, + "in_reply_to_user_id_str": "600289581", + "in_reply_to_screen_name": "kwaioMax", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 14:18:34 +0000 2014", + "id": 468757678710607873, + "id_str": "468757678710607873", + "text": "@kwaioMax this is why I would consider this entire class of software just inherently a bad idea", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468756594508185600, + "in_reply_to_status_id_str": "468756594508185600", + "in_reply_to_user_id": 600289581, + "in_reply_to_user_id_str": "600289581", + "in_reply_to_screen_name": "kwaioMax", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 14:17:42 +0000 2014", + "id": 468757459754971136, + "id_str": "468757459754971136", + "text": "@kwaioMax oh that. I am pretty sure I retweeted the slides or so a few months ago", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468756594508185600, + "in_reply_to_status_id_str": "468756594508185600", + "in_reply_to_user_id": 600289581, + "in_reply_to_user_id_str": "600289581", + "in_reply_to_screen_name": "kwaioMax", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 14:16:57 +0000 2014", + "id": 468757270470598658, + "id_str": "468757270470598658", + "text": "@gewt zero with a slash is just a zero. Ø is a completely different symbol which is round rather than oval.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468756778042544129, + "in_reply_to_status_id_str": "468756778042544129", + "in_reply_to_user_id": 18125825, + "in_reply_to_user_id_str": "18125825", + "in_reply_to_screen_name": "gewt", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 14:12:46 +0000 2014", + "id": 468756217938993154, + "id_str": "468756217938993154", + "text": "@kwaioMax which?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468755918956797952, + "in_reply_to_status_id_str": "468755918956797952", + "in_reply_to_user_id": 600289581, + "in_reply_to_user_id_str": "600289581", + "in_reply_to_screen_name": "kwaioMax", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "ht" + }, + { + "created_at": "Tue May 20 14:11:13 +0000 2014", + "id": 468755830960316416, + "id_str": "468755830960316416", + "text": "@jdguffey_netsec they very specifically went out of their way to use the empty set symbol instead of a zero", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468754764642390016, + "in_reply_to_status_id_str": "468754764642390016", + "in_reply_to_user_id": 1398469669, + "in_reply_to_user_id_str": "1398469669", + "in_reply_to_screen_name": "jdguffey_netsec", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 14:05:43 +0000 2014", + "id": 468754444260483072, + "id_str": "468754444260483072", + "text": "This is going to bother me. Why would they think it’s Øday. Null day? Empty set day? Danish vowel day?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 6, + "favorite_count": 16, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 13:59:00 +0000 2014", + "id": 468752756317376512, + "id_str": "468752756317376512", + "text": ".@sergeybratus @daveaitel who on earth actually writes 0day as Øday", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468527947163238400, + "in_reply_to_status_id_str": "468527947163238400", + "in_reply_to_user_id": 354406010, + "in_reply_to_user_id_str": "354406010", + "in_reply_to_screen_name": "sergeybratus", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 7, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 13:49:23 +0000 2014", + "id": 468750336052957184, + "id_str": "468750336052957184", + "text": "I like these headlines about an “unexpected” coup in Thailand. I know nothing of Thailand but what @thegrugq tells me and I expected it", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 13:44:43 +0000 2014", + "id": 468749160246960128, + "id_str": "468749160246960128", + "text": "RT @dolari: This is why we fight. http://t.co/inEXMxVvYU", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue May 20 04:37:36 +0000 2014", + "id": 468611473984352257, + "id_str": "468611473984352257", + "text": "This is why we fight. http://t.co/inEXMxVvYU", + "source": "Twitter for Android", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 15466056, + "id_str": "15466056" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 66, + "favorite_count": 33, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ], + "media": [ + { + "id": 468611470209843200, + "id_str": "468611470209843200", + "indices": [ + 22, + 44 + ], + "media_url": "http://pbs.twimg.com/media/BoDXpjuIAAA7RGE.jpg", + "media_url_https": "https://pbs.twimg.com/media/BoDXpjuIAAA7RGE.jpg", + "url": "http://t.co/inEXMxVvYU", + "display_url": "pic.twitter.com/inEXMxVvYU", + "expanded_url": "http://twitter.com/dolari/status/468611473984352257/photo/1", + "type": "photo", + "sizes": { + "medium": { + "w": 600, + "h": 450, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 255, + "resize": "fit" + }, + "large": { + "w": 960, + "h": 720, + "resize": "fit" + } + } + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 66, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 13:33:13 +0000 2014", + "id": 468746265510309888, + "id_str": "468746265510309888", + "text": "@TheDaveCA … really?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468660917245181952, + "in_reply_to_status_id_str": "468660917245181952", + "in_reply_to_user_id": 50187291, + "in_reply_to_user_id_str": "50187291", + "in_reply_to_screen_name": "TheDaveCA", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "ht" + }, + { + "created_at": "Tue May 20 13:32:44 +0000 2014", + "id": 468746144156508160, + "id_str": "468746144156508160", + "text": "@bibbleco I’m pretty sure this was literally never secret as soon as the operation was on the news", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468655907073966080, + "in_reply_to_status_id_str": "468655907073966080", + "in_reply_to_user_id": 14776653, + "in_reply_to_user_id_str": "14776653", + "in_reply_to_screen_name": "bibbleco", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 13:31:45 +0000 2014", + "id": 468745897346490368, + "id_str": "468745897346490368", + "text": "@mralext20 I actually change the time a lot", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468628209139843072, + "in_reply_to_status_id_str": "468628209139843072", + "in_reply_to_user_id": 905041434, + "in_reply_to_user_id_str": "905041434", + "in_reply_to_screen_name": "mralext20", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 05:40:10 +0000 2014", + "id": 468627218655354880, + "id_str": "468627218655354880", + "text": "Siri story:\n\nMon: Wake me up at nine \nTues: Wake me up at nine\nWed: Wake me up at nine\nThurs: Sorry, I don’t understand “week me up at nine”", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 5, + "favorite_count": 9, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 05:37:06 +0000 2014", + "id": 468626446794383360, + "id_str": "468626446794383360", + "text": "@frkbmb more importantly why are there HUMANS on the wall", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468625974620221441, + "in_reply_to_status_id_str": "468625974620221441", + "in_reply_to_user_id": 540721095, + "in_reply_to_user_id_str": "540721095", + "in_reply_to_screen_name": "frkbmb", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 05:27:09 +0000 2014", + "id": 468623943411449856, + "id_str": "468623943411449856", + "text": "@filcab no but there is http://t.co/VqJF8hh3at", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468622386347409408, + "in_reply_to_status_id_str": "468622386347409408", + "in_reply_to_user_id": 15319713, + "in_reply_to_user_id_str": "15319713", + "in_reply_to_screen_name": "filcab", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 05:14:58 +0000 2014", + "id": 468620877416759296, + "id_str": "468620877416759296", + "text": "@aaronvangeffen @eevee @thezeist *squint* \n\nWhat does that… even… do.\n\nRemind me to find out tomorrow.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468491396106952704, + "in_reply_to_status_id_str": "468491396106952704", + "in_reply_to_user_id": 160024019, + "in_reply_to_user_id_str": "160024019", + "in_reply_to_screen_name": "aaronvangeffen", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 04:28:33 +0000 2014", + "id": 468609195713888256, + "id_str": "468609195713888256", + "text": "@semibogan @thegrugq I think he meant the failure state of suddenly polio", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468607633939632130, + "in_reply_to_status_id_str": "468607633939632130", + "in_reply_to_user_id": 168436347, + "in_reply_to_user_id_str": "168436347", + "in_reply_to_screen_name": "semibogan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 04:08:21 +0000 2014", + "id": 468604114222727168, + "id_str": "468604114222727168", + "text": "@EVILCLOWN2016 @winocm … … … ?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468603272450691073, + "in_reply_to_status_id_str": "468603272450691073", + "in_reply_to_user_id": 471851777, + "in_reply_to_user_id_str": "471851777", + "in_reply_to_screen_name": "EVILCLOWN2016", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "lt" + }, + { + "created_at": "Tue May 20 03:44:19 +0000 2014", + "id": 468598067105890304, + "id_str": "468598067105890304", + "text": "@jwisser I’m just really tired… once it clicked what the gimmick was it was just a matter of slamming buttons for the right combo", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468597700704075777, + "in_reply_to_status_id_str": "468597700704075777", + "in_reply_to_user_id": 665833, + "in_reply_to_user_id_str": "665833", + "in_reply_to_screen_name": "jwisser", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 03:36:14 +0000 2014", + "id": 468596030972657664, + "id_str": "468596030972657664", + "text": "I figured it out, I’m just spatially disabled", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 03:31:28 +0000 2014", + "id": 468594832982962176, + "id_str": "468594832982962176", + "text": "@zauspar I got 7 badges and then stuff happened? Finishing book 1 I think", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468594651377971200, + "in_reply_to_status_id_str": "468594651377971200", + "in_reply_to_user_id": 216571343, + "in_reply_to_user_id_str": "216571343", + "in_reply_to_screen_name": "zauspar", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 03:31:03 +0000 2014", + "id": 468594724878958592, + "id_str": "468594724878958592", + "text": "@rjsalts I haven’t had a haircut in about five years", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468594624630493184, + "in_reply_to_status_id_str": "468594624630493184", + "in_reply_to_user_id": 244763282, + "in_reply_to_user_id_str": "244763282", + "in_reply_to_screen_name": "rjsalts", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 03:30:06 +0000 2014", + "id": 468594489045835777, + "id_str": "468594489045835777", + "text": "Help I can’t figure out how the rotating ice gym works in Pokemon XY. I have been defeated by a Rated E game", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 7, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 03:07:41 +0000 2014", + "id": 468588847551365120, + "id_str": "468588847551365120", + "text": "@FiloSottile I did not mean to imply that all twelve year olds on the internet are some sort of problem.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468588567321923584, + "in_reply_to_status_id_str": "468588567321923584", + "in_reply_to_user_id": 51049452, + "in_reply_to_user_id_str": "51049452", + "in_reply_to_screen_name": "FiloSottile", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 03:04:07 +0000 2014", + "id": 468587948095844352, + "id_str": "468587948095844352", + "text": "@FiloSottile but you can’t tell me that you literally never said anything you’d now think is dumb :)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468587653554642946, + "in_reply_to_status_id_str": "468587653554642946", + "in_reply_to_user_id": 51049452, + "in_reply_to_user_id_str": "51049452", + "in_reply_to_screen_name": "FiloSottile", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 03:02:23 +0000 2014", + "id": 468587512748072960, + "id_str": "468587512748072960", + "text": "@stevewfolds I hope it’s clear that was an extremely sarcastic haha", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468587267762958336, + "in_reply_to_status_id_str": "468587267762958336", + "in_reply_to_user_id": 154125850, + "in_reply_to_user_id_str": "154125850", + "in_reply_to_screen_name": "stevewfolds", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 02:55:43 +0000 2014", + "id": 468585835999531008, + "id_str": "468585835999531008", + "text": "@savagejen though in my fan fiction they pick on poor New Zealand", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468585049076416512, + "in_reply_to_status_id_str": "468585049076416512", + "in_reply_to_user_id": 11324652, + "in_reply_to_user_id_str": "11324652", + "in_reply_to_screen_name": "savagejen", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 02:54:16 +0000 2014", + "id": 468585467911610369, + "id_str": "468585467911610369", + "text": "@ddowza there has always been baseline suspicion among remote people groups of vaccination. Which is understandable.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468585224121507841, + "in_reply_to_status_id_str": "468585224121507841", + "in_reply_to_user_id": 84030041, + "in_reply_to_user_id_str": "84030041", + "in_reply_to_screen_name": "ddowza", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 02:53:45 +0000 2014", + "id": 468585338227924992, + "id_str": "468585338227924992", + "text": "@savagejen my perception is that the five eyes intelligence agencies see themselves as in this together against all outside forces", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468585049076416512, + "in_reply_to_status_id_str": "468585049076416512", + "in_reply_to_user_id": 11324652, + "in_reply_to_user_id_str": "11324652", + "in_reply_to_screen_name": "savagejen", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 02:52:21 +0000 2014", + "id": 468584985495371776, + "id_str": "468584985495371776", + "text": "But haha it’s just polio and haha it’s just kids in someone else’s country :|", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 10, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 02:51:31 +0000 2014", + "id": 468584777139101696, + "id_str": "468584777139101696", + "text": "There is no way the CIA could not have foreseen the fallout of abusing the role of vaccination workers. Consciously chose this outcome.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 21, + "favorite_count": 11, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 02:49:48 +0000 2014", + "id": 468584346018799616, + "id_str": "468584346018799616", + "text": "@savagejen surely, as the third eye of five, Canada would be managing its own?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468584080456818690, + "in_reply_to_status_id_str": "468584080456818690", + "in_reply_to_user_id": 11324652, + "in_reply_to_user_id_str": "11324652", + "in_reply_to_screen_name": "savagejen", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 02:46:19 +0000 2014", + "id": 468583469074100224, + "id_str": "468583469074100224", + "text": "Sorry about the time we directly contributed to a public health emergency to check a bad guy off the hit list http://t.co/gUx0JJv5jL", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 26, + "favorite_count": 6, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 02:32:39 +0000 2014", + "id": 468580028096479233, + "id_str": "468580028096479233", + "text": "@zauspar A hundred and fifty or more to C. To be a programming master is my destiny", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468579815662952448, + "in_reply_to_status_id_str": "468579815662952448", + "in_reply_to_user_id": 216571343, + "in_reply_to_user_id_str": "216571343", + "in_reply_to_screen_name": "zauspar", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 02:31:43 +0000 2014", + "id": 468579793060237312, + "id_str": "468579793060237312", + "text": "RT @mister_borogove: @0xabad1dea after 33 years of programming I can confidently say I'll master it in ten more years", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue May 20 02:31:33 +0000 2014", + "id": 468579754598100992, + "id_str": "468579754598100992", + "text": "@0xabad1dea after 33 years of programming I can confidently say I'll master it in ten more years", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 468578904022978560, + "in_reply_to_status_id_str": "468578904022978560", + "in_reply_to_user_id": 126030998, + "in_reply_to_user_id_str": "126030998", + "in_reply_to_screen_name": "0xabad1dea", + "user": { + "id": 16798412, + "id_str": "16798412" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 29, + "favorite_count": 24, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "0xabad1dea", + "name": "Melissa", + "id": 126030998, + "id_str": "126030998", + "indices": [ + 0, + 11 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 29, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 02:30:19 +0000 2014", + "id": 468579440508014592, + "id_str": "468579440508014592", + "text": "Am I a programming master yet? Gosh I hope so.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 8, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 02:28:11 +0000 2014", + "id": 468578904022978560, + "id_str": "468578904022978560", + "text": "Me age 14: it takes ten years to master programming?? That will be forever!\n\nMe age 26: … uh oh", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 43, + "favorite_count": 62, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 02:26:27 +0000 2014", + "id": 468578468020912130, + "id_str": "468578468020912130", + "text": "@Talen_Lee a wise man (@solardiz) once said to me I’m trying to live all my lifetimes at once re: http://t.co/t1oSo9rFvb", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468577988326346752, + "in_reply_to_status_id_str": "468577988326346752", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 02:23:26 +0000 2014", + "id": 468577709191602176, + "id_str": "468577709191602176", + "text": "@Talen_Lee this doesn’t solve my problem", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468577317812326401, + "in_reply_to_status_id_str": "468577317812326401", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 02:20:26 +0000 2014", + "id": 468576955302805504, + "id_str": "468576955302805504", + "text": "@Talen_Lee yes, but the list of things I genuinely want to do would consume infinite time", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468576840055918592, + "in_reply_to_status_id_str": "468576840055918592", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 02:18:46 +0000 2014", + "id": 468576536120283136, + "id_str": "468576536120283136", + "text": "You’d think — spending all that money on a gaming rig — I’d have an easier time rationalizing to myself I need to make use of it and game.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 02:13:29 +0000 2014", + "id": 468575205778931712, + "id_str": "468575205778931712", + "text": "@zhuowei it’s on back burner. It was an idea I had years ago I worked on while I had writer’s block last year", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468574610905391104, + "in_reply_to_status_id_str": "468574610905391104", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 01:54:44 +0000 2014", + "id": 468570489175023616, + "id_str": "468570489175023616", + "text": "@ra6bit @mattblaze @emptywheel @moxie talk about rolling a 1 on motive check", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468570214209449984, + "in_reply_to_status_id_str": "468570214209449984", + "in_reply_to_user_id": 537333195, + "in_reply_to_user_id_str": "537333195", + "in_reply_to_screen_name": "ra6bit", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 01:52:25 +0000 2014", + "id": 468569903193391104, + "id_str": "468569903193391104", + "text": "@ra6bit @mattblaze @emptywheel isn’t that the country which publicly demanded Blackberry provide a backdoor?…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468569645138845696, + "in_reply_to_status_id_str": "468569645138845696", + "in_reply_to_user_id": 537333195, + "in_reply_to_user_id_str": "537333195", + "in_reply_to_screen_name": "ra6bit", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 01:47:01 +0000 2014", + "id": 468568543923941376, + "id_str": "468568543923941376", + "text": "@ErrataRob @mattblaze it only now occurs to me you meant buy Huawei equipment and not literally all of Huawei", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468566250868977664, + "in_reply_to_status_id_str": "468566250868977664", + "in_reply_to_user_id": 15300995, + "in_reply_to_user_id_str": "15300995", + "in_reply_to_screen_name": "ErrataRob", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 01:41:55 +0000 2014", + "id": 468567261553643520, + "id_str": "468567261553643520", + "text": "@ErrataRob @mattblaze Huawei employs people on the same order of magnitude as the entire population of the Bahamas", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468566250868977664, + "in_reply_to_status_id_str": "468566250868977664", + "in_reply_to_user_id": 15300995, + "in_reply_to_user_id_str": "15300995", + "in_reply_to_screen_name": "ErrataRob", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 01:38:29 +0000 2014", + "id": 468566397774069760, + "id_str": "468566397774069760", + "text": "@daiconrad emoji 😎", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468566273266565121, + "in_reply_to_status_id_str": "468566273266565121", + "in_reply_to_user_id": 25549372, + "in_reply_to_user_id_str": "25549372", + "in_reply_to_screen_name": "daiconrad", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "sl" + }, + { + "created_at": "Tue May 20 01:34:30 +0000 2014", + "id": 468565394794377216, + "id_str": "468565394794377216", + "text": "@mattblaze the sad reality is that USA is something like 70% of Bahamas’ economy. What can they do?!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468563534478344193, + "in_reply_to_status_id_str": "468563534478344193", + "in_reply_to_user_id": 26567591, + "in_reply_to_user_id_str": "26567591", + "in_reply_to_screen_name": "mattblaze", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 01:32:40 +0000 2014", + "id": 468564932137857024, + "id_str": "468564932137857024", + "text": "RT @danielwithmusic: @0xabad1dea when all you have is a surveillance state, everything looks like a small island nation.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue May 20 01:32:00 +0000 2014", + "id": 468564765988515841, + "id_str": "468564765988515841", + "text": "@0xabad1dea when all you have is a surveillance state, everything looks like a small island nation.", + "source": "Tweetbot for Mac", + "truncated": false, + "in_reply_to_status_id": 468563600513437696, + "in_reply_to_status_id_str": "468563600513437696", + "in_reply_to_user_id": 126030998, + "in_reply_to_user_id_str": "126030998", + "in_reply_to_screen_name": "0xabad1dea", + "user": { + "id": 73962161, + "id_str": "73962161" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 12, + "favorite_count": 10, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "0xabad1dea", + "name": "Melissa", + "id": 126030998, + "id_str": "126030998", + "indices": [ + 0, + 11 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 12, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 01:27:22 +0000 2014", + "id": 468563600513437696, + "id_str": "468563600513437696", + "text": "“We genuinely believe this small island country poses no threat, but sometimes they mail us marijuana. Better tap everything” 📞📡👮", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 16, + "favorite_count": 15, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 01:24:29 +0000 2014", + "id": 468562875037261824, + "id_str": "468562875037261824", + "text": "@zauspar so what I’m hearing is that level 4 is immortal", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468562641619660800, + "in_reply_to_status_id_str": "468562641619660800", + "in_reply_to_user_id": 216571343, + "in_reply_to_user_id_str": "216571343", + "in_reply_to_screen_name": "zauspar", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 01:18:06 +0000 2014", + "id": 468561270267211776, + "id_str": "468561270267211776", + "text": "@pro2rat @suburbsec not really what I meant; just that culturally and legally, all major websites will gravitate to a few controllers.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468560153793425409, + "in_reply_to_status_id_str": "468560153793425409", + "in_reply_to_user_id": 21598194, + "in_reply_to_user_id_str": "21598194", + "in_reply_to_screen_name": "pro2rat", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 00:56:17 +0000 2014", + "id": 468555778409103360, + "id_str": "468555778409103360", + "text": "I guess new hair growing in to replace the really long hair I lose is why the top of my head is always so frizzy", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 00:51:48 +0000 2014", + "id": 468554649977360384, + "id_str": "468554649977360384", + "text": "It’s probably not actually falling out more than usual. But the fact that I wonder if it is makes it seem like I’m about to go bald.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 00:50:58 +0000 2014", + "id": 468554438781984768, + "id_str": "468554438781984768", + "text": "Back to worrying that my hair is falling out more than usual due to anxiety, which is probably what one would call “self fulfilling”", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 5, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 00:46:25 +0000 2014", + "id": 468553294617382912, + "id_str": "468553294617382912", + "text": "@DaveAtErrata @Niki7a @spacerog I give up. There is no way I can phrase this that won’t convince you I’m trying to take your rights away.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468552874134626306, + "in_reply_to_status_id_str": "468552874134626306", + "in_reply_to_user_id": 15817736, + "in_reply_to_user_id_str": "15817736", + "in_reply_to_screen_name": "DaveAtErrata", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 00:41:00 +0000 2014", + "id": 468551931242508289, + "id_str": "468551931242508289", + "text": "@DaveAtErrata @Niki7a @spacerog actually I found Ms. Nikita’s explanation to sorta make sense even if I don’t totally agree with it", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468551697628147712, + "in_reply_to_status_id_str": "468551697628147712", + "in_reply_to_user_id": 15817736, + "in_reply_to_user_id_str": "15817736", + "in_reply_to_screen_name": "DaveAtErrata", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 00:39:01 +0000 2014", + "id": 468551433508646912, + "id_str": "468551433508646912", + "text": "@DaveAtErrata @Niki7a @spacerog btw analogy to gayness is completely unfounded unless you think I can kill people with my carebear stare 🌈", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468551180558536704, + "in_reply_to_status_id_str": "468551180558536704", + "in_reply_to_user_id": 15817736, + "in_reply_to_user_id_str": "15817736", + "in_reply_to_screen_name": "DaveAtErrata", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 00:34:28 +0000 2014", + "id": 468550286886596608, + "id_str": "468550286886596608", + "text": "@DaveAtErrata @Niki7a @spacerog ~also not what I said! It was very specifically about trapping me in a room with a big gun!~", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468549839442419713, + "in_reply_to_status_id_str": "468549839442419713", + "in_reply_to_user_id": 15817736, + "in_reply_to_user_id_str": "15817736", + "in_reply_to_screen_name": "DaveAtErrata", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 00:28:43 +0000 2014", + "id": 468548842737377280, + "id_str": "468548842737377280", + "text": "@DaveAtErrata @Niki7a @spacerog well, I guess it’s flattering you think I can single handedly change laws by saying I feel disrespected.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468548582321434624, + "in_reply_to_status_id_str": "468548582321434624", + "in_reply_to_user_id": 15817736, + "in_reply_to_user_id_str": "15817736", + "in_reply_to_screen_name": "DaveAtErrata", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 00:27:45 +0000 2014", + "id": 468548596371976193, + "id_str": "468548596371976193", + "text": "@zhuowei @m1sp no there’s Tattari who has no characterization but exists, and Moko", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468548192120754176, + "in_reply_to_status_id_str": "468548192120754176", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 00:26:44 +0000 2014", + "id": 468548341970640897, + "id_str": "468548341970640897", + "text": "@DaveAtErrata @Niki7a @spacerog good thing I never did that", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468548248266092544, + "in_reply_to_status_id_str": "468548248266092544", + "in_reply_to_user_id": 15817736, + "in_reply_to_user_id_str": "15817736", + "in_reply_to_screen_name": "DaveAtErrata", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 00:25:37 +0000 2014", + "id": 468548061766361088, + "id_str": "468548061766361088", + "text": "@DaveAtErrata @Niki7a @spacerog if you think me articulating what I find disrespectful is a problem then I don’t know what else I can do", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468547922108628992, + "in_reply_to_status_id_str": "468547922108628992", + "in_reply_to_user_id": 15817736, + "in_reply_to_user_id_str": "15817736", + "in_reply_to_screen_name": "DaveAtErrata", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 00:14:37 +0000 2014", + "id": 468545290761285632, + "id_str": "468545290761285632", + "text": "@washiiko Tropico 5??? I’m still not good at Tropico 1", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468544223646470144, + "in_reply_to_status_id_str": "468544223646470144", + "in_reply_to_user_id": 47900074, + "in_reply_to_user_id_str": "47900074", + "in_reply_to_screen_name": "washiiko", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 00:10:34 +0000 2014", + "id": 468544271201480707, + "id_str": "468544271201480707", + "text": "@FioraAeterna earthquakes are definitely weather!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468543771013939200, + "in_reply_to_status_id_str": "468543771013939200", + "in_reply_to_user_id": 2468699718, + "in_reply_to_user_id_str": "2468699718", + "in_reply_to_screen_name": "FioraAeterna", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 00:07:03 +0000 2014", + "id": 468543388024066048, + "id_str": "468543388024066048", + "text": "@Niki7a in that I simply cannot imagine a reason anyone would wanna bring a rifle into a restaurant except they were planning on using it.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468542414026579969, + "in_reply_to_status_id_str": "468542414026579969", + "in_reply_to_user_id": 19465618, + "in_reply_to_user_id_str": "19465618", + "in_reply_to_screen_name": "Niki7a", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 00:06:10 +0000 2014", + "id": 468543167391105024, + "id_str": "468543167391105024", + "text": "@Niki7a thank you ma’am, I suspect that overall I have a fundamental cultural disconnect with friends to the south and west", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468542414026579969, + "in_reply_to_status_id_str": "468542414026579969", + "in_reply_to_user_id": 19465618, + "in_reply_to_user_id_str": "19465618", + "in_reply_to_screen_name": "Niki7a", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 20 00:03:49 +0000 2014", + "id": 468542575499292673, + "id_str": "468542575499292673", + "text": "Oh no, they’re dismantling HAARP. What will mainstream news site commenters blame earthquakes on now? http://t.co/YlrEYeeDsz", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 4, + "favorite_count": 7, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 23:59:03 +0000 2014", + "id": 468541376880443392, + "id_str": "468541376880443392", + "text": "@m1sp after working with the character I decided they’re a FTM in progress \n\nWhich makes the Flametender thing… problematic", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468535761344540672, + "in_reply_to_status_id_str": "468535761344540672", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 23:43:52 +0000 2014", + "id": 468537552124002304, + "id_str": "468537552124002304", + "text": "@DaveAtErrata @spacerog you found me out, I think I’m the empress and everyone who disrespects me goes straight to abadjail forever.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468537345172836352, + "in_reply_to_status_id_str": "468537345172836352", + "in_reply_to_user_id": 15817736, + "in_reply_to_user_id_str": "15817736", + "in_reply_to_screen_name": "DaveAtErrata", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 23:41:14 +0000 2014", + "id": 468536889377849344, + "id_str": "468536889377849344", + "text": "@DaveAtErrata @spacerog pretty sure all I said was I find it incredibly disrespectful to bring a rifle into the same room as me", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468536421650010112, + "in_reply_to_status_id_str": "468536421650010112", + "in_reply_to_user_id": 15817736, + "in_reply_to_user_id_str": "15817736", + "in_reply_to_screen_name": "DaveAtErrata", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 23:36:04 +0000 2014", + "id": 468535590146039808, + "id_str": "468535590146039808", + "text": "@DaveAtErrata @spacerog no I’m pretty sure that’s not what I said.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468535330384388096, + "in_reply_to_status_id_str": "468535330384388096", + "in_reply_to_user_id": 15817736, + "in_reply_to_user_id_str": "15817736", + "in_reply_to_screen_name": "DaveAtErrata", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 23:34:18 +0000 2014", + "id": 468535145516244993, + "id_str": "468535145516244993", + "text": "@DaveAtErrata @spacerog ftr I’m not anti gun so much as I’m anti people acting like they have a mind to shoot someone", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468534930872360961, + "in_reply_to_status_id_str": "468534930872360961", + "in_reply_to_user_id": 15817736, + "in_reply_to_user_id_str": "15817736", + "in_reply_to_screen_name": "DaveAtErrata", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 23:24:47 +0000 2014", + "id": 468532750975520769, + "id_str": "468532750975520769", + "text": "@Talen_Lee but they can’t SHOOT up.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468532524306546690, + "in_reply_to_status_id_str": "468532524306546690", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 23:22:18 +0000 2014", + "id": 468532128247205889, + "id_str": "468532128247205889", + "text": "@spacerog note I am not chastising you for not wanting to eat there anymore\n\nI’m angry at people who wave guns around for jollies", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468531824516677633, + "in_reply_to_status_id_str": "468531824516677633", + "in_reply_to_user_id": 14133061, + "in_reply_to_user_id_str": "14133061", + "in_reply_to_screen_name": "spacerog", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 23:21:42 +0000 2014", + "id": 468531975859343360, + "id_str": "468531975859343360", + "text": "@spacerog there’s a difference between something being legal and something being not the total vacancy of respect for other human beings", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468531824516677633, + "in_reply_to_status_id_str": "468531824516677633", + "in_reply_to_user_id": 14133061, + "in_reply_to_user_id_str": "14133061", + "in_reply_to_screen_name": "spacerog", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 23:19:57 +0000 2014", + "id": 468531533452959745, + "id_str": "468531533452959745", + "text": "@spacerog but why do people do this. Why do they bring rifles into family restaurants. Who do they think is not worried they’re gonna shoot", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468530721972166656, + "in_reply_to_status_id_str": "468530721972166656", + "in_reply_to_user_id": 14133061, + "in_reply_to_user_id_str": "14133061", + "in_reply_to_screen_name": "spacerog", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 23:16:20 +0000 2014", + "id": 468530626124316672, + "id_str": "468530626124316672", + "text": "@DarrenPMeyer http://t.co/VI5C3zTJpY", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468530306882871296, + "in_reply_to_status_id_str": "468530306882871296", + "in_reply_to_user_id": 468928589, + "in_reply_to_user_id_str": "468928589", + "in_reply_to_screen_name": "DarrenPMeyer", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Mon May 19 23:13:10 +0000 2014", + "id": 468529826564149248, + "id_str": "468529826564149248", + "text": "@Tuplet they didn’t even deny Chelsea Manning’s name change with such an excuse and the government HATES her", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468529326242406401, + "in_reply_to_status_id_str": "468529326242406401", + "in_reply_to_user_id": 34310651, + "in_reply_to_user_id_str": "34310651", + "in_reply_to_screen_name": "Tuplet", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 23:04:51 +0000 2014", + "id": 468527734659252224, + "id_str": "468527734659252224", + "text": "I think the real headline here is “university apparently has no backups???” http://t.co/fLl1L96uhD", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 11, + "favorite_count": 11, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 22:54:49 +0000 2014", + "id": 468525209847603200, + "id_str": "468525209847603200", + "text": "@Talen_Lee if you encounter a straight person, remain calm. Be polite: don’t assume they’re trans. Some straight people suffer from cis.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468513290386038784, + "in_reply_to_status_id_str": "468513290386038784", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 22:27:53 +0000 2014", + "id": 468518431575506944, + "id_str": "468518431575506944", + "text": "@m1sp if you can't tell, I'm having fun working on the plot of Arth, the Flametender who Shouldn't Be", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 22:01:08 +0000 2014", + "id": 468511701743452160, + "id_str": "468511701743452160", + "text": "@Talen_Lee this EXACT one? It’s a redesign of a considerably less creepy version…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468511131263176704, + "in_reply_to_status_id_str": "468511131263176704", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 21:59:39 +0000 2014", + "id": 468511326651043840, + "id_str": "468511326651043840", + "text": "@ELLIOTTCABLE relevant subreddit.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468511109251878913, + "in_reply_to_status_id_str": "468511109251878913", + "in_reply_to_user_id": 771681, + "in_reply_to_user_id_str": "771681", + "in_reply_to_screen_name": "ELLIOTTCABLE", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "ht" + }, + { + "created_at": "Mon May 19 21:58:41 +0000 2014", + "id": 468511084341899264, + "id_str": "468511084341899264", + "text": "@Talen_Lee the problem is not ALL twelve year olds", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468510962878648320, + "in_reply_to_status_id_str": "468510962878648320", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 21:57:30 +0000 2014", + "id": 468510785640345600, + "id_str": "468510785640345600", + "text": "RT @personasama: Dear @McDonalds, your newest friend seemed a little lonely so I've assembled some of his peers to back him up http://t.co/…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Mon May 19 21:46:32 +0000 2014", + "id": 468508026651955201, + "id_str": "468508026651955201", + "text": "Dear @McDonalds, your newest friend seemed a little lonely so I've assembled some of his peers to back him up http://t.co/LY1JvpkVQr", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 468466673784455169, + "in_reply_to_status_id_str": "468466673784455169", + "in_reply_to_user_id": 71026122, + "in_reply_to_user_id_str": "71026122", + "in_reply_to_screen_name": "McDonalds", + "user": { + "id": 14562370, + "id_str": "14562370" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 432, + "favorite_count": 361, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "McDonalds", + "name": "McDonald's", + "id": 71026122, + "id_str": "71026122", + "indices": [ + 5, + 15 + ] + } + ], + "media": [ + { + "id": 468508025351729153, + "id_str": "468508025351729153", + "indices": [ + 110, + 132 + ], + "media_url": "http://pbs.twimg.com/media/BoB5kRmCcAEwQkF.png", + "media_url_https": "https://pbs.twimg.com/media/BoB5kRmCcAEwQkF.png", + "url": "http://t.co/LY1JvpkVQr", + "display_url": "pic.twitter.com/LY1JvpkVQr", + "expanded_url": "http://twitter.com/personasama/status/468508026651955201/photo/1", + "type": "photo", + "sizes": { + "small": { + "w": 340, + "h": 629, + "resize": "fit" + }, + "medium": { + "w": 512, + "h": 947, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 512, + "h": 947, + "resize": "fit" + } + } + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 432, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 21:56:57 +0000 2014", + "id": 468510645911322624, + "id_str": "468510645911322624", + "text": "@Talen_Lee man there’s some rough weather in Australia", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468509818177613826, + "in_reply_to_status_id_str": "468509818177613826", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 21:56:23 +0000 2014", + "id": 468510502759710720, + "id_str": "468510502759710720", + "text": "@CamelsHammers @hemantmehta for a split second I was experiencing serious Poe", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468435433974931457, + "in_reply_to_status_id_str": "468435433974931457", + "in_reply_to_user_id": 63716380, + "in_reply_to_user_id_str": "63716380", + "in_reply_to_screen_name": "CamelsHammers", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 21:53:22 +0000 2014", + "id": 468509744744112129, + "id_str": "468509744744112129", + "text": "@Ninjifox yes and no respectively", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468503899679121409, + "in_reply_to_status_id_str": "468503899679121409", + "in_reply_to_user_id": 119217218, + "in_reply_to_user_id_str": "119217218", + "in_reply_to_screen_name": "Ninji_Folf", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 21:52:40 +0000 2014", + "id": 468509571171250176, + "id_str": "468509571171250176", + "text": "RT @Support: Some users may not be seeing the latest Tweets in their timelines. We're currently investigating this issue.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Mon May 19 21:28:00 +0000 2014", + "id": 468503362543972352, + "id_str": "468503362543972352", + "text": "Some users may not be seeing the latest Tweets in their timelines. We're currently investigating this issue.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 17874544, + "id_str": "17874544" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1384, + "favorite_count": 513, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 1384, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 21:50:55 +0000 2014", + "id": 468509130815471619, + "id_str": "468509130815471619", + "text": "@puellavulnerata @runasand I've publicly disclosed several times I come from federally aligned blood :)", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 468508942499196928, + "in_reply_to_status_id_str": "468508942499196928", + "in_reply_to_user_id": 54666727, + "in_reply_to_user_id_str": "54666727", + "in_reply_to_screen_name": "puellavulnerata", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 21:50:20 +0000 2014", + "id": 468508982580355073, + "id_str": "468508982580355073", + "text": "I've never looked at this map before; does UK always look like ground zero of a horrible disease? http://t.co/UuFWo7Px0T", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 4, + "favorite_count": 5, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 21:42:56 +0000 2014", + "id": 468507119327531008, + "id_str": "468507119327531008", + "text": "Reminder: part of the reason discourse on the internet seems so dumb is because you can’t tell when you’re arguing with a twelve year old", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 26, + "favorite_count": 27, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 21:40:54 +0000 2014", + "id": 468506607060414464, + "id_str": "468506607060414464", + "text": "@eevee @papayakitty I assume the person at the wheel is instructed to respond no matter how stupid it makes them look", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468506391083110400, + "in_reply_to_status_id_str": "468506391083110400", + "in_reply_to_user_id": 14412937, + "in_reply_to_user_id_str": "14412937", + "in_reply_to_screen_name": "eevee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 21:40:12 +0000 2014", + "id": 468506431092973568, + "id_str": "468506431092973568", + "text": "@eevee they all have the same bio with the same broken English", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468483747822567424, + "in_reply_to_status_id_str": "468483747822567424", + "in_reply_to_user_id": 14412937, + "in_reply_to_user_id_str": "14412937", + "in_reply_to_screen_name": "eevee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 21:39:59 +0000 2014", + "id": 468506379238395904, + "id_str": "468506379238395904", + "text": "@eevee I think it’s someone trying to keyword search things they can then post to reddit for massive karma?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468483747822567424, + "in_reply_to_status_id_str": "468483747822567424", + "in_reply_to_user_id": 14412937, + "in_reply_to_user_id_str": "14412937", + "in_reply_to_screen_name": "eevee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 21:39:08 +0000 2014", + "id": 468506162162180097, + "id_str": "468506162162180097", + "text": "@Daiz42 I think I have yet to see anyone older than about 14 say that in genuine seriousness", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468505911867109379, + "in_reply_to_status_id_str": "468505911867109379", + "in_reply_to_user_id": 1303903314, + "in_reply_to_user_id_str": "1303903314", + "in_reply_to_screen_name": "Daiz42", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 21:37:57 +0000 2014", + "id": 468505864601485313, + "id_str": "468505864601485313", + "text": "@runasand … huh. My dad used to work for them actually… and I never really understood on what… :p", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468481459771424769, + "in_reply_to_status_id_str": "468481459771424769", + "in_reply_to_user_id": 19959946, + "in_reply_to_user_id_str": "19959946", + "in_reply_to_screen_name": "runasand", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 21:36:48 +0000 2014", + "id": 468505576146616320, + "id_str": "468505576146616320", + "text": "@papayakitty @eevee I got super annoyed at Pandora responding to me complaining about their invasive UI like I had a customer support prob", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468477067290746880, + "in_reply_to_status_id_str": "468477067290746880", + "in_reply_to_user_id": 14478751, + "in_reply_to_user_id_str": "14478751", + "in_reply_to_screen_name": "papayakitty", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 21:34:05 +0000 2014", + "id": 468504891875663872, + "id_str": "468504891875663872", + "text": "RT @eqca: Congrats on getting to the end of the marriage trail, Oregon: http://t.co/k8WwkZ7Amv http://t.co/7eu2K8CHxw", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Mon May 19 19:39:08 +0000 2014", + "id": 468475963588608000, + "id_str": "468475963588608000", + "text": "Congrats on getting to the end of the marriage trail, Oregon: http://t.co/k8WwkZ7Amv http://t.co/7eu2K8CHxw", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 16224459, + "id_str": "16224459" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 377, + "favorite_count": 261, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/k8WwkZ7Amv", + "expanded_url": "http://bit.ly/R0WRPH", + "display_url": "bit.ly/R0WRPH", + "indices": [ + 62, + 84 + ] + } + ], + "user_mentions": [ + + ], + "media": [ + { + "id": 468475962141974528, + "id_str": "468475962141974528", + "indices": [ + 85, + 107 + ], + "media_url": "http://pbs.twimg.com/media/BoBcZ81IIAAb2Jf.jpg", + "media_url_https": "https://pbs.twimg.com/media/BoBcZ81IIAAb2Jf.jpg", + "url": "http://t.co/7eu2K8CHxw", + "display_url": "pic.twitter.com/7eu2K8CHxw", + "expanded_url": "http://twitter.com/eqca/status/468475963588608000/photo/1", + "type": "photo", + "sizes": { + "medium": { + "w": 600, + "h": 600, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 1024, + "h": 1024, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 340, + "resize": "fit" + } + } + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 377, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 21:33:04 +0000 2014", + "id": 468504635242606592, + "id_str": "468504635242606592", + "text": "@m1sp there’s a method to when I retweet vs when I hyperlink. Attempting to deprive them of the internet points and leave only the shame", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468504400558694400, + "in_reply_to_status_id_str": "468504400558694400", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 21:31:24 +0000 2014", + "id": 468504217335115776, + "id_str": "468504217335115776", + "text": "It’s clear no one in their marketing department is aware of Uncanny Valley. They must all be replicants https://t.co/6WltQbfUJI", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "quoted_status_id": 468466673784455169, + "quoted_status_id_str": "468466673784455169", + "retweet_count": 2, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 21:27:15 +0000 2014", + "id": 468503173897129984, + "id_str": "468503173897129984", + "text": "@AliceLikesBob yes. Honestly I hate it, but not because of the general premise", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468502990614429696, + "in_reply_to_status_id_str": "468502990614429696", + "in_reply_to_user_id": 45805076, + "in_reply_to_user_id_str": "45805076", + "in_reply_to_screen_name": "AliceLikesBob", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 21:25:06 +0000 2014", + "id": 468502631493959680, + "id_str": "468502631493959680", + "text": "@zauspar @m1sp green human part 2 http://t.co/qARCM0qnX7", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 216571343, + "in_reply_to_user_id_str": "216571343", + "in_reply_to_screen_name": "zauspar", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "tl" + }, + { + "created_at": "Mon May 19 20:51:45 +0000 2014", + "id": 468494240172236801, + "id_str": "468494240172236801", + "text": "@JZdziarski full disclosure, to contextualize my obvious bitterness: I am an *ex*-fundamentalist. The bad side of Christianity was my life.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1267770224, + "in_reply_to_user_id_str": "1267770224", + "in_reply_to_screen_name": "JZdziarski", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 20:25:56 +0000 2014", + "id": 468487743270817792, + "id_str": "468487743270817792", + "text": "@JZdziarski I guess it's good to hear from someone on the Christian side who will vocally speak against this sort of thing", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 468486293458927616, + "in_reply_to_status_id_str": "468486293458927616", + "in_reply_to_user_id": 1267770224, + "in_reply_to_user_id_str": "1267770224", + "in_reply_to_screen_name": "JZdziarski", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 20:17:25 +0000 2014", + "id": 468485597683015680, + "id_str": "468485597683015680", + "text": "@JZdziarski the bits about this being in Lynchburg, Virginia and the judge being a former employee of Liberty U are probably relevant.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 468485403398266880, + "in_reply_to_status_id_str": "468485403398266880", + "in_reply_to_user_id": 1267770224, + "in_reply_to_user_id_str": "1267770224", + "in_reply_to_screen_name": "JZdziarski", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 20:16:47 +0000 2014", + "id": 468485440061046785, + "id_str": "468485440061046785", + "text": "@m1sp where, I must say, she was unambiguously the happiest I had ever seen her, after we went to school together for three years.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 468484984672505857, + "in_reply_to_status_id_str": "468484984672505857", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 20:15:32 +0000 2014", + "id": 468485126486511617, + "id_str": "468485126486511617", + "text": "@m1sp really? I guess it only recently became mentally concrete for me when I saw her for the first time in a few years at that wedding", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 468484984672505857, + "in_reply_to_status_id_str": "468484984672505857", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 20:14:11 +0000 2014", + "id": 468484786785636352, + "id_str": "468484786785636352", + "text": "@Aehmlo @m1sp @Myriachan which just goes to show how fuzzy an understanding of mathematics these wizards have", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 468483572387414016, + "in_reply_to_status_id_str": "468483572387414016", + "in_reply_to_user_id": 451108446, + "in_reply_to_user_id_str": "451108446", + "in_reply_to_screen_name": "Aehmlo", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 20:13:52 +0000 2014", + "id": 468484705235791872, + "id_str": "468484705235791872", + "text": "My sister-in-law has been denied her transition name change. Same state didn't deny her earlier last name change http://t.co/zPJwjyf10g", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 11, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 20:04:37 +0000 2014", + "id": 468482378336579584, + "id_str": "468482378336579584", + "text": "@Myriachan @m1sp so really, Evil Hermione is the worst possible outcome", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 468482166309937153, + "in_reply_to_status_id_str": "468482166309937153", + "in_reply_to_user_id": 1556497868, + "in_reply_to_user_id_str": "1556497868", + "in_reply_to_screen_name": "Myriachan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 20:04:19 +0000 2014", + "id": 468482301052329984, + "id_str": "468482301052329984", + "text": "@Myriachan @m1sp yeah, insofar as his ability to not be an idiot who needs Hermione to do his research for him goes.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 468482166309937153, + "in_reply_to_status_id_str": "468482166309937153", + "in_reply_to_user_id": 1556497868, + "in_reply_to_user_id_str": "1556497868", + "in_reply_to_screen_name": "Myriachan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 19:59:19 +0000 2014", + "id": 468481042488500225, + "id_str": "468481042488500225", + "text": "@m1sp @Myriachan I think, if he had \"won\", he would have blown off the isolation policy as needless; he was already trending that way", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 468480768671358978, + "in_reply_to_status_id_str": "468480768671358978", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 19:57:53 +0000 2014", + "id": 468480684341067776, + "id_str": "468480684341067776", + "text": "@Myriachan @m1sp there's no class privilege to reinforce nor any resources he needs; from his POV they're already irrevocably inferior", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 468480292185862144, + "in_reply_to_status_id_str": "468480292185862144", + "in_reply_to_user_id": 1556497868, + "in_reply_to_user_id_str": "1556497868", + "in_reply_to_screen_name": "Myriachan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 19:57:27 +0000 2014", + "id": 468480575146573827, + "id_str": "468480575146573827", + "text": "@Myriachan @m1sp I think a large *point* of Voldemort is that he would never consider conquering the muggles to be anything worth doing", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 468480292185862144, + "in_reply_to_status_id_str": "468480292185862144", + "in_reply_to_user_id": 1556497868, + "in_reply_to_user_id_str": "1556497868", + "in_reply_to_screen_name": "Myriachan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 19:55:40 +0000 2014", + "id": 468480126796439553, + "id_str": "468480126796439553", + "text": "@m1sp @Myriachan they do ape muggle technology in a skeumorphic way but seem to generally miss why it's that way it is", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 468479612272377856, + "in_reply_to_status_id_str": "468479612272377856", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 19:54:43 +0000 2014", + "id": 468479885946933249, + "id_str": "468479885946933249", + "text": "@m1sp @Myriachan muggleborns, in UK at least, are brought in and largely isolated starting at age 11", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 468479612272377856, + "in_reply_to_status_id_str": "468479612272377856", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 19:54:13 +0000 2014", + "id": 468479760835026946, + "id_str": "468479760835026946", + "text": "@m1sp @Myriachan true, it has all happened in the last century, and they collectively began the isolation policy centuries ago.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 468479612272377856, + "in_reply_to_status_id_str": "468479612272377856", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 19:50:58 +0000 2014", + "id": 468478941142212608, + "id_str": "468478941142212608", + "text": "@Myriachan @m1sp so taking the same course of action against Muggle England would only be begging that to happen again", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 468478548303290369, + "in_reply_to_status_id_str": "468478548303290369", + "in_reply_to_user_id": 1556497868, + "in_reply_to_user_id_str": "1556497868", + "in_reply_to_screen_name": "Myriachan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 19:50:30 +0000 2014", + "id": 468478823269695488, + "id_str": "468478823269695488", + "text": "@Myriachan @m1sp in any case, it seems implied Grindelwald DID intend to conquer Germany, and that pushed Dumbledore into action at last", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 468478548303290369, + "in_reply_to_status_id_str": "468478548303290369", + "in_reply_to_user_id": 1556497868, + "in_reply_to_user_id_str": "1556497868", + "in_reply_to_screen_name": "Myriachan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 19:48:27 +0000 2014", + "id": 468478310163685376, + "id_str": "468478310163685376", + "text": "@Myriachan @m1sp not to imply that *I* have such a low opinion of muggles, mind.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 468477791399186433, + "in_reply_to_status_id_str": "468477791399186433", + "in_reply_to_user_id": 1556497868, + "in_reply_to_user_id_str": "1556497868", + "in_reply_to_screen_name": "Myriachan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 19:47:38 +0000 2014", + "id": 468478102734385152, + "id_str": "468478102734385152", + "text": "@Myriachan @m1sp same**", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 468477791399186433, + "in_reply_to_status_id_str": "468477791399186433", + "in_reply_to_user_id": 1556497868, + "in_reply_to_user_id_str": "1556497868", + "in_reply_to_screen_name": "Myriachan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 19:47:34 +0000 2014", + "id": 468478085101539328, + "id_str": "468478085101539328", + "text": "@Myriachan @m1sp -- for the sane reason that no self-respecting human would try to be acknowledged as king of all dogs.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 468477791399186433, + "in_reply_to_status_id_str": "468477791399186433", + "in_reply_to_user_id": 1556497868, + "in_reply_to_user_id_str": "1556497868", + "in_reply_to_screen_name": "Myriachan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 19:47:14 +0000 2014", + "id": 468478001198669826, + "id_str": "468478001198669826", + "text": "@Myriachan @m1sp I think he simply did not have any interest in having political rapport among Muggles --", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 468477791399186433, + "in_reply_to_status_id_str": "468477791399186433", + "in_reply_to_user_id": 1556497868, + "in_reply_to_user_id_str": "1556497868", + "in_reply_to_screen_name": "Myriachan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 19:44:43 +0000 2014", + "id": 468477370861883392, + "id_str": "468477370861883392", + "text": "@m1sp @Myriachan Snape's father was a muggle, not a muggleborn wizard.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 468477173947314176, + "in_reply_to_status_id_str": "468477173947314176", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 19:41:25 +0000 2014", + "id": 468476537474666496, + "id_str": "468476537474666496", + "text": "@Myriachan @m1sp seems to mean mud as in filth rather than as in muddled (mixed).", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 468476205105020928, + "in_reply_to_status_id_str": "468476205105020928", + "in_reply_to_user_id": 1556497868, + "in_reply_to_user_id_str": "1556497868", + "in_reply_to_screen_name": "Myriachan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 19:40:35 +0000 2014", + "id": 468476328933855232, + "id_str": "468476328933855232", + "text": "@Myriachan @m1sp that's a slur for someone like Hermione who has zero close magical relatives", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 468476205105020928, + "in_reply_to_status_id_str": "468476205105020928", + "in_reply_to_user_id": 1556497868, + "in_reply_to_user_id_str": "1556497868", + "in_reply_to_screen_name": "Myriachan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 19:40:18 +0000 2014", + "id": 468476257613934592, + "id_str": "468476257613934592", + "text": "@m1sp @Myriachan I think they don't really have a word for it because the mixed status describes most modern British magicals", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 468475982794334208, + "in_reply_to_status_id_str": "468475982794334208", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 19:39:01 +0000 2014", + "id": 468475934333751297, + "id_str": "468475934333751297", + "text": "@Myriachan @m1sp you're \"pureblooded\" if both your parents and all four of your grandparents were magical", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 468475545487806466, + "in_reply_to_status_id_str": "468475545487806466", + "in_reply_to_user_id": 1556497868, + "in_reply_to_user_id_str": "1556497868", + "in_reply_to_screen_name": "Myriachan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 19:38:21 +0000 2014", + "id": 468475765798223872, + "id_str": "468475765798223872", + "text": "@Myriachan @m1sp The wizards don't seem to have a word for pureblood on one side and magical but not pure on the other", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 468475545487806466, + "in_reply_to_status_id_str": "468475545487806466", + "in_reply_to_user_id": 1556497868, + "in_reply_to_user_id_str": "1556497868", + "in_reply_to_screen_name": "Myriachan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 19:14:21 +0000 2014", + "id": 468469729586601985, + "id_str": "468469729586601985", + "text": "@FioraAeterna @Tuplet I guess I can see a point in systematically toning down things slightly to get a PG 13 instead of an R though", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468469497058566144, + "in_reply_to_status_id_str": "468469497058566144", + "in_reply_to_user_id": 2468699718, + "in_reply_to_user_id_str": "2468699718", + "in_reply_to_screen_name": "FioraAeterna", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 19:11:09 +0000 2014", + "id": 468468923391029248, + "id_str": "468468923391029248", + "text": "@ShadowTodd that was pretty much my only thought on this \n\n“Surely someone besides him knew he would do this…? So wha…?”", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468455819592216577, + "in_reply_to_status_id_str": "468455819592216577", + "in_reply_to_user_id": 168769498, + "in_reply_to_user_id_str": "168769498", + "in_reply_to_screen_name": "ShadowTodd", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 19:09:42 +0000 2014", + "id": 468468557010202624, + "id_str": "468468557010202624", + "text": "@Tuplet @FioraAeterna for home releases they have been known to put everything back in and adjust the rating to reflect that", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468466677647028224, + "in_reply_to_status_id_str": "468466677647028224", + "in_reply_to_user_id": 34310651, + "in_reply_to_user_id_str": "34310651", + "in_reply_to_screen_name": "Tuplet", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 19:08:16 +0000 2014", + "id": 468468198405578753, + "id_str": "468468198405578753", + "text": "@Tuplet @FioraAeterna outside of overt porn, that is.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468467469141553153, + "in_reply_to_status_id_str": "468467469141553153", + "in_reply_to_user_id": 34310651, + "in_reply_to_user_id_str": "34310651", + "in_reply_to_screen_name": "Tuplet", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 19:08:06 +0000 2014", + "id": 468468153337806848, + "id_str": "468468153337806848", + "text": "@Tuplet @FioraAeterna in the United States such restrictions are a voluntary decision made by the movie theatre (most of them make it).", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468467469141553153, + "in_reply_to_status_id_str": "468467469141553153", + "in_reply_to_user_id": 34310651, + "in_reply_to_user_id_str": "34310651", + "in_reply_to_screen_name": "Tuplet", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 19:04:05 +0000 2014", + "id": 468467145123590145, + "id_str": "468467145123590145", + "text": "RT @Idzie: \"The table of four adults next do us did that thing again; they went silent. We kept talking. Our son asked why... http://t.co/F…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sat May 17 21:06:23 +0000 2014", + "id": 467773147073486848, + "id_str": "467773147073486848", + "text": "\"The table of four adults next do us did that thing again; they went silent. We kept talking. Our son asked why... http://t.co/F0at74fFpA", + "source": "Facebook", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 18298329, + "id_str": "18298329" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 93, + "favorite_count": 50, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/F0at74fFpA", + "expanded_url": "http://fb.me/34YejGPUk", + "display_url": "fb.me/34YejGPUk", + "indices": [ + 115, + 137 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 93, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 19:03:32 +0000 2014", + "id": 468467007550410752, + "id_str": "468467007550410752", + "text": "@Tuplet @FioraAeterna people will cut stuff out to make the rating they want, it’s true, but only because they want $$ from kiddie tickets", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468466677647028224, + "in_reply_to_status_id_str": "468466677647028224", + "in_reply_to_user_id": 34310651, + "in_reply_to_user_id_str": "34310651", + "in_reply_to_screen_name": "Tuplet", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 19:02:30 +0000 2014", + "id": 468466746245263361, + "id_str": "468466746245263361", + "text": "Whoops! I made that spending mistake I constantly make again and bought that wine I don’t like! http://t.co/UgdggOu41y", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 14, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 19:01:11 +0000 2014", + "id": 468466412345098241, + "id_str": "468466412345098241", + "text": "@makomk it’s not a trigger warning if you are declining to make the triggering content available with it", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468465910714740736, + "in_reply_to_status_id_str": "468465910714740736", + "in_reply_to_user_id": 14836648, + "in_reply_to_user_id_str": "14836648", + "in_reply_to_screen_name": "makomk", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 18:59:47 +0000 2014", + "id": 468466061139267584, + "id_str": "468466061139267584", + "text": "@Aerinravage lots of people seem to find it galling to be \"handheld\" even though I've never seen anyone object to a rating on a movie", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 468465352486424577, + "in_reply_to_status_id_str": "468465352486424577", + "in_reply_to_user_id": 37823346, + "in_reply_to_user_id_str": "37823346", + "in_reply_to_screen_name": "Aerinravage", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 18:51:18 +0000 2014", + "id": 468463925382897667, + "id_str": "468463925382897667", + "text": "Of all the reasons to object to trigger warnings, please use a better one than calling them “censorship,” that’s nonsensical", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 5, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 18:43:20 +0000 2014", + "id": 468461920069378048, + "id_str": "468461920069378048", + "text": "@puellavulnerata I’m guessing it means a power outage to the data center will result in gaps", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468447292014354433, + "in_reply_to_status_id_str": "468447292014354433", + "in_reply_to_user_id": 54666727, + "in_reply_to_user_id_str": "54666727", + "in_reply_to_screen_name": "puellavulnerata", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 18:41:15 +0000 2014", + "id": 468461397622677504, + "id_str": "468461397622677504", + "text": "@tenfootfangs JITT, just in time tweeting", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468461260841832458, + "in_reply_to_status_id_str": "468461260841832458", + "in_reply_to_user_id": 22337789, + "in_reply_to_user_id_str": "22337789", + "in_reply_to_screen_name": "tenfootfangs", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 18:40:37 +0000 2014", + "id": 468461237467353088, + "id_str": "468461237467353088", + "text": "RT @botherder: An important take from the latest @the_intercept article is that the #NSA sensibly improved their PowerPoint design skills o…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Mon May 19 17:31:38 +0000 2014", + "id": 468443880070066176, + "id_str": "468443880070066176", + "text": "An important take from the latest @the_intercept article is that the #NSA sensibly improved their PowerPoint design skills over the years.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 153049309, + "id_str": "153049309" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 47, + "favorite_count": 44, + "entities": { + "hashtags": [ + { + "text": "NSA", + "indices": [ + 69, + 73 + ] + } + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "the_intercept", + "name": "The Intercept", + "id": 2329066872, + "id_str": "2329066872", + "indices": [ + 34, + 48 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 47, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 18:39:38 +0000 2014", + "id": 468460989193916416, + "id_str": "468460989193916416", + "text": "@alt_m1sp you’re probably reading too much into old people getting pushy for more babies ;)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468445000724795392, + "in_reply_to_status_id_str": "468445000724795392", + "in_reply_to_user_id": 2401670173, + "in_reply_to_user_id_str": "2401670173", + "in_reply_to_screen_name": "alt_m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 18:37:34 +0000 2014", + "id": 468460469351895040, + "id_str": "468460469351895040", + "text": "@blowdart if only we acted like our commitment to rights also extended beyond our borders", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468441811321495552, + "in_reply_to_status_id_str": "468441811321495552", + "in_reply_to_user_id": 1847381, + "in_reply_to_user_id_str": "1847381", + "in_reply_to_screen_name": "blowdart", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 18:35:37 +0000 2014", + "id": 468459979297800193, + "id_str": "468459979297800193", + "text": "Internet scientists warn that encroaching Twitch lifeforms will destroy fragile youtube comment ecosystem http://t.co/yeoV4gKyza", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 9, + "favorite_count": 12, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 18:20:28 +0000 2014", + "id": 468456168009240576, + "id_str": "468456168009240576", + "text": "RT @sec_reactions: When I am surprised to find that the WAF is doing its job. - by @sempf http://t.co/4WYilICTUb", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Mon May 19 17:40:34 +0000 2014", + "id": 468446127499776000, + "id_str": "468446127499776000", + "text": "When I am surprised to find that the WAF is doing its job. - by @sempf http://t.co/4WYilICTUb", + "source": "Tumblr", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 774321211, + "id_str": "774321211" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 7, + "favorite_count": 2, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/4WYilICTUb", + "expanded_url": "http://tmblr.co/ZJ5JTu1GJRq_v", + "display_url": "tmblr.co/ZJ5JTu1GJRq_v", + "indices": [ + 71, + 93 + ] + } + ], + "user_mentions": [ + { + "screen_name": "sempf", + "name": "Bill Sempf", + "id": 16731644, + "id_str": "16731644", + "indices": [ + 64, + 70 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 7, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 17:17:11 +0000 2014", + "id": 468440243331690498, + "id_str": "468440243331690498", + "text": "@puellavulnerata I dunno I think I prefer the fanfic of an island of people who each average 300 phone calls a day as their sole comm system", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468439385159892992, + "in_reply_to_status_id_str": "468439385159892992", + "in_reply_to_user_id": 54666727, + "in_reply_to_user_id_str": "54666727", + "in_reply_to_screen_name": "puellavulnerata", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 17:15:19 +0000 2014", + "id": 468439771443134464, + "id_str": "468439771443134464", + "text": "RT @puellavulnerata: Obviously, Bahamians do not sit around making 300 phone calls daily, so we can conclude 'country X' accounts for most …", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Mon May 19 17:13:47 +0000 2014", + "id": 468439385159892992, + "id_str": "468439385159892992", + "text": "Obviously, Bahamians do not sit around making 300 phone calls daily, so we can conclude 'country X' accounts for most SOMALGET volume.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 54666727, + "id_str": "54666727" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 25, + "favorite_count": 24, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 25, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 17:12:54 +0000 2014", + "id": 468439165194231808, + "id_str": "468439165194231808", + "text": "@11rcombs @skimbrel that’s probably fair. But, snowcloud pun", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468438762524262400, + "in_reply_to_status_id_str": "468438762524262400", + "in_reply_to_user_id": 98022472, + "in_reply_to_user_id_str": "98022472", + "in_reply_to_screen_name": "11rcombs", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 17:05:53 +0000 2014", + "id": 468437396770816000, + "id_str": "468437396770816000", + "text": "@loon It seems clear the Bahamas surveillance isn’t really about catching Americans doing whatever with their money", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468436923090882561, + "in_reply_to_status_id_str": "468436923090882561", + "in_reply_to_user_id": 14246348, + "in_reply_to_user_id_str": "14246348", + "in_reply_to_screen_name": "loon", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 17:03:37 +0000 2014", + "id": 468436827482124289, + "id_str": "468436827482124289", + "text": "Wait so the US is using the Bahamas as a test bed for total surveillance \n\nThey’re small, nearby, economically under our thumb…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 4, + "favorite_count": 6, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 17:02:08 +0000 2014", + "id": 468436453522169856, + "id_str": "468436453522169856", + "text": "RT @mattblaze: ... and one other unnamed country. (Clue: apparently shaped like a giant \"X\"). https://t.co/UCYdSp92og", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Mon May 19 16:52:24 +0000 2014", + "id": 468434004296093697, + "id_str": "468434004296093697", + "text": "... and one other unnamed country. (Clue: apparently shaped like a giant \"X\"). https://t.co/UCYdSp92og", + "source": "TweetDeck", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 26567591, + "id_str": "26567591" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 7, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "https://t.co/UCYdSp92og", + "expanded_url": "https://firstlook.org/theintercept/article/2014/05/19/data-pirates-caribbean-nsa-recording-every-cell-phone-call-bahamas/", + "display_url": "firstlook.org/theintercept/a…", + "indices": [ + 79, + 102 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 3, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 16:52:11 +0000 2014", + "id": 468433949858213888, + "id_str": "468433949858213888", + "text": "@aspects_ebooks @zhuowei wow you actually improved this sentence", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468432950745640961, + "in_reply_to_status_id_str": "468432950745640961", + "in_reply_to_user_id": 2345404375, + "in_reply_to_user_id_str": "2345404375", + "in_reply_to_screen_name": "aspects_ebooks", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 16:50:30 +0000 2014", + "id": 468433524895514625, + "id_str": "468433524895514625", + "text": "Indicting military officers in other countries? Bold move Cotton, let’s see if it pays off", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 6, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 16:28:18 +0000 2014", + "id": 468427940297187328, + "id_str": "468427940297187328", + "text": "Things I never put on my soundcloud: a chiptune specifically for the \"Houri meddles in her sister's affairs\" scene http://t.co/RIkNnW0feJ", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 16:22:34 +0000 2014", + "id": 468426495661449216, + "id_str": "468426495661449216", + "text": "@explainxkcd @mendel for some reason I think she looks like a Carrie but I have no logical basis for this", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 468426081892970497, + "in_reply_to_status_id_str": "468426081892970497", + "in_reply_to_user_id": 65071679, + "in_reply_to_user_id_str": "65071679", + "in_reply_to_screen_name": "explainxkcd", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 16:17:19 +0000 2014", + "id": 468425174287929346, + "id_str": "468425174287929346", + "text": "@gewt You can remember by assigning cartoonishly gendertypical mnemonics: venus is a handmirror and mars is a bow and arrow", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 468424484727173120, + "in_reply_to_status_id_str": "468424484727173120", + "in_reply_to_user_id": 18125825, + "in_reply_to_user_id_str": "18125825", + "in_reply_to_screen_name": "gewt", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 16:16:51 +0000 2014", + "id": 468425056545415168, + "id_str": "468425056545415168", + "text": "@gewt circle with cross is female. circle with arrow is male.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 468424484727173120, + "in_reply_to_status_id_str": "468424484727173120", + "in_reply_to_user_id": 18125825, + "in_reply_to_user_id_str": "18125825", + "in_reply_to_screen_name": "gewt", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 16:15:03 +0000 2014", + "id": 468424607041880066, + "id_str": "468424607041880066", + "text": ".@skimbrel the first google result for error 521 is, in fact, cloudflare, so I guess they're a special snowcloud", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 468424291831525377, + "in_reply_to_status_id_str": "468424291831525377", + "in_reply_to_user_id": 17934129, + "in_reply_to_user_id_str": "17934129", + "in_reply_to_screen_name": "skimbrel", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 5, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 16:12:54 +0000 2014", + "id": 468424064194072576, + "id_str": "468424064194072576", + "text": "@gewt I mighta put what gender I am, and which gender I very specifically am *not*, on my profile :)", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 468423858266312704, + "in_reply_to_status_id_str": "468423858266312704", + "in_reply_to_user_id": 18125825, + "in_reply_to_user_id_str": "18125825", + "in_reply_to_screen_name": "gewt", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 16:11:20 +0000 2014", + "id": 468423671561089024, + "id_str": "468423671561089024", + "text": "when I was a child I went through an American revolutionary war obsession phase, you see.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 16:09:02 +0000 2014", + "id": 468423092843610112, + "id_str": "468423092843610112", + "text": "@gewt but yes as a child I very specifically wanted Felicity Merriman as a friend", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 468422908855865345, + "in_reply_to_status_id_str": "468422908855865345", + "in_reply_to_user_id": 18125825, + "in_reply_to_user_id_str": "18125825", + "in_reply_to_screen_name": "gewt", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 16:08:04 +0000 2014", + "id": 468422847682318336, + "id_str": "468422847682318336", + "text": "@gewt probably fem if they were walking around 1700s colonial America like that", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 468422500842352640, + "in_reply_to_status_id_str": "468422500842352640", + "in_reply_to_user_id": 18125825, + "in_reply_to_user_id_str": "18125825", + "in_reply_to_screen_name": "gewt", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 16:07:38 +0000 2014", + "id": 468422739913875456, + "id_str": "468422739913875456", + "text": "@MechMK1 http://t.co/i8tvEXDauR", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 468422525693988864, + "in_reply_to_status_id_str": "468422525693988864", + "in_reply_to_user_id": 81556825, + "in_reply_to_user_id_str": "81556825", + "in_reply_to_screen_name": "MechMK1", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Mon May 19 16:06:31 +0000 2014", + "id": 468422457695961088, + "id_str": "468422457695961088", + "text": "Someone from late 1700s colonial America very specifically, with a frilly-sleeved dress.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 16:05:44 +0000 2014", + "id": 468422261977124864, + "id_str": "468422261977124864", + "text": "Sometimes this switch flips on in my head to start a running commentary explaining modern society to a time traveler from the 1700s", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 13, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 15:49:50 +0000 2014", + "id": 468418258904027136, + "id_str": "468418258904027136", + "text": "@gewt the voice of the last song", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 468417894750380032, + "in_reply_to_status_id_str": "468417894750380032", + "in_reply_to_user_id": 18125825, + "in_reply_to_user_id_str": "18125825", + "in_reply_to_screen_name": "gewt", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 15:48:08 +0000 2014", + "id": 468417831856766976, + "id_str": "468417831856766976", + "text": "Does the curly-hair bun girl on xkcd have a fanon name yet", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 15:43:54 +0000 2014", + "id": 468416764171550720, + "id_str": "468416764171550720", + "text": "What does it even mean for Cloudflare's error message to assure me my browser is working. Do not adjust your television set??", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 6, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 15:39:00 +0000 2014", + "id": 468415533445287936, + "id_str": "468415533445287936", + "text": "@der_bluthund @latentexistence (I want you to know I did read all these tweets)", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 468413974116331520, + "in_reply_to_status_id_str": "468413974116331520", + "in_reply_to_user_id": 137480382, + "in_reply_to_user_id_str": "137480382", + "in_reply_to_screen_name": "der_bluthund", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 15:38:33 +0000 2014", + "id": 468415421277040642, + "id_str": "468415421277040642", + "text": "@m1sp @landley that would be the \"ish\" part, fiction still deliberately uses the Romantic Tension paradigm between children.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 468415186651459584, + "in_reply_to_status_id_str": "468415186651459584", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 15:37:27 +0000 2014", + "id": 468415144176123904, + "id_str": "468415144176123904", + "text": "@hirojin -- that I already knew most of the major plot points thereafter.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 468414908363997184, + "in_reply_to_status_id_str": "468414908363997184", + "in_reply_to_user_id": 39625343, + "in_reply_to_user_id_str": "39625343", + "in_reply_to_screen_name": "hirojin", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 15:37:12 +0000 2014", + "id": 468415082201088001, + "id_str": "468415082201088001", + "text": "@hirojin I think I gave up at him trying to buy a magical first aid kit from some girl in Diagon Alley? But important to the context is--", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 468414908363997184, + "in_reply_to_status_id_str": "468414908363997184", + "in_reply_to_user_id": 39625343, + "in_reply_to_user_id_str": "39625343", + "in_reply_to_screen_name": "hirojin", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 15:35:22 +0000 2014", + "id": 468414617887457280, + "id_str": "468414617887457280", + "text": "Ever see an error 5xx be passive-aggressive? http://t.co/Y4gLkEsJY5", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 14, + "favorite_count": 29, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 15:24:46 +0000 2014", + "id": 468411951031529473, + "id_str": "468411951031529473", + "text": "@PrototypeCube @latentexistence they own a house, land, and a car. The problem is simply too many mouths for one salary", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 468411466333569024, + "in_reply_to_status_id_str": "468411466333569024", + "in_reply_to_user_id": 48324081, + "in_reply_to_user_id_str": "48324081", + "in_reply_to_screen_name": "PrototypeCube", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 15:23:42 +0000 2014", + "id": 468411683825016832, + "id_str": "468411683825016832", + "text": "@der_bluthund @latentexistence Did you mean: Arthur Weasley \n\nThough I was just ranting about things I didn't like about Ron in general :)", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 468411350935683072, + "in_reply_to_status_id_str": "468411350935683072", + "in_reply_to_user_id": 137480382, + "in_reply_to_user_id_str": "137480382", + "in_reply_to_screen_name": "der_bluthund", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 15:16:11 +0000 2014", + "id": 468409792231669761, + "id_str": "468409792231669761", + "text": "@hinanawi_chan is “you” a singular or plural pronoun?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468409719002898433, + "in_reply_to_status_id_str": "468409719002898433", + "in_reply_to_user_id": 2336014178, + "in_reply_to_user_id_str": "2336014178", + "in_reply_to_screen_name": "hinanawi_chan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 15:15:48 +0000 2014", + "id": 468409693187358720, + "id_str": "468409693187358720", + "text": "Follow abadidea for more insightful analysis of wizard school class privilege and social dynamics. Kill Ron Weasley", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 7, + "favorite_count": 10, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 15:13:58 +0000 2014", + "id": 468409234796072960, + "id_str": "468409234796072960", + "text": "@kevinmarks honestly I hate it.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468408854632333312, + "in_reply_to_status_id_str": "468408854632333312", + "in_reply_to_user_id": 57203, + "in_reply_to_user_id_str": "57203", + "in_reply_to_screen_name": "kevinmarks", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 15:11:35 +0000 2014", + "id": 468408633278361600, + "id_str": "468408633278361600", + "text": "@m1sp of course ಠ_ಠ", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468408464864063488, + "in_reply_to_status_id_str": "468408464864063488", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 15:11:07 +0000 2014", + "id": 468408516206923776, + "id_str": "468408516206923776", + "text": "@Talen_Lee but actually yeah I have a draft where Ismyrn says pretty much exactly that to Barsamin", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468400416124719105, + "in_reply_to_status_id_str": "468400416124719105", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 15:10:01 +0000 2014", + "id": 468408237881298944, + "id_str": "468408237881298944", + "text": "@m1sp yeah when Chewie was going on and on about it and I was like wait\n\nThis is all still first year? They’re eleven?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468408037716152321, + "in_reply_to_status_id_str": "468408037716152321", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 15:07:39 +0000 2014", + "id": 468407644697677824, + "id_str": "468407644697677824", + "text": "@Talen_Lee live divine die young", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468400416124719105, + "in_reply_to_status_id_str": "468400416124719105", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 15:06:00 +0000 2014", + "id": 468407226596876288, + "id_str": "468407226596876288", + "text": "@Talen_Lee hey, I made sure to avert this: if you got Aspected then you must just be a bad person anyway.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468397761310629888, + "in_reply_to_status_id_str": "468397761310629888", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 15:03:22 +0000 2014", + "id": 468406567348752385, + "id_str": "468406567348752385", + "text": "@m1sp [inferring] undoing eleven years of pureblood privilege first semester is a little unrealistic IMO", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468400374492049408, + "in_reply_to_status_id_str": "468400374492049408", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 15:02:01 +0000 2014", + "id": 468406225538125824, + "id_str": "468406225538125824", + "text": "@dewitt as an author, I like glasses", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468401635702501377, + "in_reply_to_status_id_str": "468401635702501377", + "in_reply_to_user_id": 673483, + "in_reply_to_user_id_str": "673483", + "in_reply_to_screen_name": "dewitt", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 15:01:52 +0000 2014", + "id": 468406186799562753, + "id_str": "468406186799562753", + "text": "@dewitt as an author I imagine it was to emphasize his vulnerability in the beginning of the story. Or she just likes glasses.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468401635702501377, + "in_reply_to_status_id_str": "468401635702501377", + "in_reply_to_user_id": 673483, + "in_reply_to_user_id_str": "673483", + "in_reply_to_screen_name": "dewitt", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 15:00:52 +0000 2014", + "id": 468405936420556800, + "id_str": "468405936420556800", + "text": "@Lenary Ginny and Harry live in the same tower for years, they can still hook up", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468400633855217664, + "in_reply_to_status_id_str": "468400633855217664", + "in_reply_to_user_id": 14466962, + "in_reply_to_user_id_str": "14466962", + "in_reply_to_screen_name": "Lenary", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 14:35:45 +0000 2014", + "id": 468399613847015425, + "id_str": "468399613847015425", + "text": "What I'm saying is that it should have been Harry, Hermione and Neville", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 14, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 14:35:45 +0000 2014", + "id": 468399613847015425, + "id_str": "468399613847015425", + "text": "What I'm saying is that it should have been Harry, Hermione and Neville", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 14, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 14:35:08 +0000 2014", + "id": 468399459454681089, + "id_str": "468399459454681089", + "text": "Ron is a terrible influence btw; he's only good for insider access to the wizard community Harry was systematically deprived of", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 4, + "favorite_count": 8, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 14:29:42 +0000 2014", + "id": 468398093567000576, + "id_str": "468398093567000576", + "text": "@Talen_Lee @m1sp Let me compromise my pure image aloud!", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 468395572982861825, + "in_reply_to_status_id_str": "468395572982861825", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 14:26:30 +0000 2014", + "id": 468397288742588416, + "id_str": "468397288742588416", + "text": "People call Harry Potter a nerd *solely* on account of the glasses: one visual detail trumping seven books of characterization.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 6, + "favorite_count": 18, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 14:16:35 +0000 2014", + "id": 468394793115328513, + "id_str": "468394793115328513", + "text": "@Talen_Lee @m1sp oh, oh. Chains are conductive, this is important because reasons", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468394632380809217, + "in_reply_to_status_id_str": "468394632380809217", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 14:15:02 +0000 2014", + "id": 468394403808419840, + "id_str": "468394403808419840", + "text": "@Talen_Lee let’s just say Barsamin seems to be particularly unlucky in remaining not anyone’s prisoner", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468393898679611392, + "in_reply_to_status_id_str": "468393898679611392", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 14:12:26 +0000 2014", + "id": 468393749513379840, + "id_str": "468393749513379840", + "text": "@Talen_Lee it really depends. The prior is much more thematically appropriate for a dungeon", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468392499048742913, + "in_reply_to_status_id_str": "468392499048742913", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 14:06:01 +0000 2014", + "id": 468392131112222721, + "id_str": "468392131112222721", + "text": "@dan_crowley I prefer to call them “content warnings” because trigger has a narrow psychological definition", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468385203702878208, + "in_reply_to_status_id_str": "468385203702878208", + "in_reply_to_user_id": 20532907, + "in_reply_to_user_id_str": "20532907", + "in_reply_to_screen_name": "dan_crowley", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 13:56:20 +0000 2014", + "id": 468389697308205056, + "id_str": "468389697308205056", + "text": "@hackaday my loyalty requires me to posit @ThePokeBot is better", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468345463477792769, + "in_reply_to_status_id_str": "468345463477792769", + "in_reply_to_user_id": 14607140, + "in_reply_to_user_id_str": "14607140", + "in_reply_to_screen_name": "hackaday", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 13:52:23 +0000 2014", + "id": 468388702796775424, + "id_str": "468388702796775424", + "text": "RT @shelomovskiy: Just had a phone call from a friend in Kiev saying that TV broadcast is off in #Kiev and #Odessa too.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Mon May 19 07:40:15 +0000 2014", + "id": 468295051303718912, + "id_str": "468295051303718912", + "text": "Just had a phone call from a friend in Kiev saying that TV broadcast is off in #Kiev and #Odessa too.", + "source": "Twitter for Android", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 90999438, + "id_str": "90999438" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 43, + "favorite_count": 3, + "entities": { + "hashtags": [ + { + "text": "Kiev", + "indices": [ + 79, + 84 + ] + }, + { + "text": "Odessa", + "indices": [ + 89, + 96 + ] + } + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 43, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 13:26:33 +0000 2014", + "id": 468382199080034304, + "id_str": "468382199080034304", + "text": "@Mark_Coker https://t.co/DRImNI8BE5", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468314635649556480, + "in_reply_to_status_id_str": "468314635649556480", + "in_reply_to_user_id": 64872429, + "in_reply_to_user_id_str": "64872429", + "in_reply_to_screen_name": "Mark_Coker", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "quoted_status_id": 468172611571441664, + "quoted_status_id_str": "468172611571441664", + "quoted_status": { + "created_at": "Sun May 18 23:33:43 +0000 2014", + "id": 468172611571441664, + "id_str": "468172611571441664", + "text": "@Trif4 my entire life has been one of denial and erasure: I’m not a girl because I tech. I tech therefore I’m not a girl", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468172227800993792, + "in_reply_to_status_id_str": "468172227800993792", + "in_reply_to_user_id": 80297629, + "in_reply_to_user_id_str": "80297629", + "in_reply_to_screen_name": "Trif4", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "Trif4", + "name": "Trif", + "id": 80297629, + "id_str": "80297629", + "indices": [ + 0, + 6 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Mon May 19 03:51:06 +0000 2014", + "id": 468237385118261248, + "id_str": "468237385118261248", + "text": "@zauspar green human http://t.co/4AwzoNaOiI cc @m1sp", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 216571343, + "in_reply_to_user_id_str": "216571343", + "in_reply_to_screen_name": "zauspar", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "sl" + }, + { + "created_at": "Mon May 19 03:42:23 +0000 2014", + "id": 468235190842961920, + "id_str": "468235190842961920", + "text": "@Kytri you practically have a finished script", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468231553663774721, + "in_reply_to_status_id_str": "468231553663774721", + "in_reply_to_user_id": 18954686, + "in_reply_to_user_id_str": "18954686", + "in_reply_to_screen_name": "Kytri", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 03:12:05 +0000 2014", + "id": 468227564805586945, + "id_str": "468227564805586945", + "text": "@Kytri this must be a different brother, the one I’m thinking of is definitely like, not even one boat", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468227308180889600, + "in_reply_to_status_id_str": "468227308180889600", + "in_reply_to_user_id": 18954686, + "in_reply_to_user_id_str": "18954686", + "in_reply_to_screen_name": "Kytri", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 03:06:23 +0000 2014", + "id": 468226129740853249, + "id_str": "468226129740853249", + "text": "@Kytri my husband is like this and I can’t convince him there’s an alternative way to walk", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468225789960265729, + "in_reply_to_status_id_str": "468225789960265729", + "in_reply_to_user_id": 18954686, + "in_reply_to_user_id_str": "18954686", + "in_reply_to_screen_name": "Kytri", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 03:05:38 +0000 2014", + "id": 468225940670398464, + "id_str": "468225940670398464", + "text": "@thegrugq I didn’t specify which experimental pronouns. Some of them are meant to coalesce and replace.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468225646104043520, + "in_reply_to_status_id_str": "468225646104043520", + "in_reply_to_user_id": 18983429, + "in_reply_to_user_id_str": "18983429", + "in_reply_to_screen_name": "thegrugq", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 03:05:03 +0000 2014", + "id": 468225794511085570, + "id_str": "468225794511085570", + "text": "@p0sixninja I’m confused. I’m unsure what our shared experience here is as you were originally responding to me talking about Twitch", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468225389379452928, + "in_reply_to_status_id_str": "468225389379452928", + "in_reply_to_user_id": 15053949, + "in_reply_to_user_id_str": "15053949", + "in_reply_to_screen_name": "p0sixninja", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 02:55:43 +0000 2014", + "id": 468223447294681088, + "id_str": "468223447294681088", + "text": "@p0sixninja I didn’t see this tweet earlier. Just FYI this is exactly the sort of response that makes everything worse.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468177130371969024, + "in_reply_to_status_id_str": "468177130371969024", + "in_reply_to_user_id": 15053949, + "in_reply_to_user_id_str": "15053949", + "in_reply_to_screen_name": "p0sixninja", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 02:30:10 +0000 2014", + "id": 468217014688161792, + "id_str": "468217014688161792", + "text": "@m1sp things that are hard: making Yerahuni not look like an expy of Talassen", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 02:27:37 +0000 2014", + "id": 468216375001899008, + "id_str": "468216375001899008", + "text": "@eevee well don’t just sit there, future eevee, tell us what stocks to buy", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468214762665291776, + "in_reply_to_status_id_str": "468214762665291776", + "in_reply_to_user_id": 14412937, + "in_reply_to_user_id_str": "14412937", + "in_reply_to_screen_name": "eevee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 02:13:30 +0000 2014", + "id": 468212821453307904, + "id_str": "468212821453307904", + "text": "RT @Draglitch: New twitch: Would you like to use your real name? Would you like to use your real name? Would you like to use your real name…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sun May 18 23:16:27 +0000 2014", + "id": 468168266301440000, + "id_str": "468168266301440000", + "text": "New twitch: Would you like to use your real name? Would you like to use your real name? Would you like to use your real name? Would you like", + "source": "TweetDeck", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 53473804, + "id_str": "53473804" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 107, + "favorite_count": 83, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 107, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 02:12:37 +0000 2014", + "id": 468212598945886208, + "id_str": "468212598945886208", + "text": "@0penSS I *really* don’t want remarks, positive or negative, on one thing in particular, and in the past those remarks often came", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468209903224360960, + "in_reply_to_status_id_str": "468209903224360960", + "in_reply_to_user_id": 207046848, + "in_reply_to_user_id_str": "207046848", + "in_reply_to_screen_name": "0penSS", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 01:48:40 +0000 2014", + "id": 468206574474113025, + "id_str": "468206574474113025", + "text": "@0penSS there are reasons for it, and reasons for making sure my rapunzel’s worth of hair was all in front of my shoulders", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468201956062679040, + "in_reply_to_status_id_str": "468201956062679040", + "in_reply_to_user_id": 207046848, + "in_reply_to_user_id_str": "207046848", + "in_reply_to_screen_name": "0penSS", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 01:47:19 +0000 2014", + "id": 468206231732387842, + "id_str": "468206231732387842", + "text": "@aredridel it doesn’t really make epistemological sense to the reader for the *narrative* to suddenly sprout new grammatical complexity", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468201625015054337, + "in_reply_to_status_id_str": "468201625015054337", + "in_reply_to_user_id": 17950990, + "in_reply_to_user_id_str": "17950990", + "in_reply_to_screen_name": "aredridel", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 01:12:42 +0000 2014", + "id": 468197522129690624, + "id_str": "468197522129690624", + "text": "@Canageek the consoles of the future better address the problem of entropy as a gaming requirement yes", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468197000861589504, + "in_reply_to_status_id_str": "468197000861589504", + "in_reply_to_user_id": 17096754, + "in_reply_to_user_id_str": "17096754", + "in_reply_to_screen_name": "Canageek", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 01:07:15 +0000 2014", + "id": 468196149200175104, + "id_str": "468196149200175104", + "text": "@zauspar yeh", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468196088655015936, + "in_reply_to_status_id_str": "468196088655015936", + "in_reply_to_user_id": 216571343, + "in_reply_to_user_id_str": "216571343", + "in_reply_to_screen_name": "zauspar", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Mon May 19 01:06:02 +0000 2014", + "id": 468195845678956544, + "id_str": "468195845678956544", + "text": "@zauspar it rhymes!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468195048312430593, + "in_reply_to_status_id_str": "468195048312430593", + "in_reply_to_user_id": 216571343, + "in_reply_to_user_id_str": "216571343", + "in_reply_to_screen_name": "zauspar", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 01:03:47 +0000 2014", + "id": 468195277648560129, + "id_str": "468195277648560129", + "text": "@vogon @antumbral twitter is getting too good at this http://t.co/cmTfTadHJN", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 468195009057939456, + "in_reply_to_status_id_str": "468195009057939456", + "in_reply_to_user_id": 6326912, + "in_reply_to_user_id_str": "6326912", + "in_reply_to_screen_name": "vogon", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 01:02:42 +0000 2014", + "id": 468195007007309824, + "id_str": "468195007007309824", + "text": "@Talen_Lee my zeroeth world problems are legitimate", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468194897288114176, + "in_reply_to_status_id_str": "468194897288114176", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 01:00:40 +0000 2014", + "id": 468194491237933058, + "id_str": "468194491237933058", + "text": "@Talen_Lee I try not to snip at people who send me pointless tweets, because they think they’re being friendly, but it’s hard sometimes", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468193190328008704, + "in_reply_to_status_id_str": "468193190328008704", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 00:59:05 +0000 2014", + "id": 468194095278870528, + "id_str": "468194095278870528", + "text": "@Canageek literally none of these things exist when I press new game", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468193951313190915, + "in_reply_to_status_id_str": "468193951313190915", + "in_reply_to_user_id": 17096754, + "in_reply_to_user_id_str": "17096754", + "in_reply_to_screen_name": "Canageek", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 00:58:43 +0000 2014", + "id": 468194002752532481, + "id_str": "468194002752532481", + "text": "@Canageek keep in mind that at 50 or 60 fps depending on the system there’s reasonably fine entropic detail in time from boot to press start", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468193450492313601, + "in_reply_to_status_id_str": "468193450492313601", + "in_reply_to_user_id": 17096754, + "in_reply_to_user_id_str": "17096754", + "in_reply_to_screen_name": "Canageek", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 00:57:46 +0000 2014", + "id": 468193761445441536, + "id_str": "468193761445441536", + "text": "@Canageek the mind of a NES or a gameboy is a very small and well-known place :)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468193450492313601, + "in_reply_to_status_id_str": "468193450492313601", + "in_reply_to_user_id": 17096754, + "in_reply_to_user_id_str": "17096754", + "in_reply_to_screen_name": "Canageek", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 00:57:04 +0000 2014", + "id": 468193586904068098, + "id_str": "468193586904068098", + "text": "@Canageek because they don’t.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468193450492313601, + "in_reply_to_status_id_str": "468193450492313601", + "in_reply_to_user_id": 17096754, + "in_reply_to_user_id_str": "17096754", + "in_reply_to_screen_name": "Canageek", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 00:56:12 +0000 2014", + "id": 468193368091004928, + "id_str": "468193368091004928", + "text": "@Canageek so the straightforward implementation is to run a frame counter from system power on to when they press start to seed the RNG", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468192958257197057, + "in_reply_to_status_id_str": "468192958257197057", + "in_reply_to_user_id": 17096754, + "in_reply_to_user_id_str": "17096754", + "in_reply_to_screen_name": "Canageek", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 00:55:37 +0000 2014", + "id": 468193224168062976, + "id_str": "468193224168062976", + "text": "@Canageek systems like NES and Gameboy have only one source of entropy available: player button presses", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468192958257197057, + "in_reply_to_status_id_str": "468192958257197057", + "in_reply_to_user_id": 17096754, + "in_reply_to_user_id_str": "17096754", + "in_reply_to_screen_name": "Canageek", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 00:54:20 +0000 2014", + "id": 468192898207342592, + "id_str": "468192898207342592", + "text": "@Canageek extremely relevant is that the bot is a speed running bot. Pokemon has a type-out effect for dialogue boxes.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468192684285243392, + "in_reply_to_status_id_str": "468192684285243392", + "in_reply_to_user_id": 17096754, + "in_reply_to_user_id_str": "17096754", + "in_reply_to_screen_name": "Canageek", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 00:53:48 +0000 2014", + "id": 468192766900846592, + "id_str": "468192766900846592", + "text": "@Canageek um, I reckon you’re not an 8-bit console programmer :’) there’s no other way it could work…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468192340268417024, + "in_reply_to_status_id_str": "468192340268417024", + "in_reply_to_user_id": 17096754, + "in_reply_to_user_id_str": "17096754", + "in_reply_to_screen_name": "Canageek", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 00:52:54 +0000 2014", + "id": 468192537694715904, + "id_str": "468192537694715904", + "text": "@Canageek the Nidoran needs a single character name; pulling it from chat lines is just a cutesy way of engaging viewers to get it.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468192280239542273, + "in_reply_to_status_id_str": "468192280239542273", + "in_reply_to_user_id": 17096754, + "in_reply_to_user_id_str": "17096754", + "in_reply_to_screen_name": "Canageek", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 00:51:34 +0000 2014", + "id": 468192203479977984, + "id_str": "468192203479977984", + "text": "@Canageek it also randomizes time spent at the start screen before beginning a run as the primary RNG perturber", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468191766865121281, + "in_reply_to_status_id_str": "468191766865121281", + "in_reply_to_user_id": 17096754, + "in_reply_to_user_id_str": "17096754", + "in_reply_to_screen_name": "Canageek", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 00:50:16 +0000 2014", + "id": 468191876353642496, + "id_str": "468191876353642496", + "text": "@Canageek Pokemon has a very poor RNG.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468191766865121281, + "in_reply_to_status_id_str": "468191766865121281", + "in_reply_to_user_id": 17096754, + "in_reply_to_user_id_str": "17096754", + "in_reply_to_screen_name": "Canageek", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 00:49:05 +0000 2014", + "id": 468191577635303425, + "id_str": "468191577635303425", + "text": "@Canageek the bot pulls single-character chat lines to name the Nidoran as a source of external entropy", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468191385917472768, + "in_reply_to_status_id_str": "468191385917472768", + "in_reply_to_user_id": 17096754, + "in_reply_to_user_id_str": "17096754", + "in_reply_to_screen_name": "Canageek", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 00:47:59 +0000 2014", + "id": 468191300114599936, + "id_str": "468191300114599936", + "text": "@Canageek I deleted a tweet and reposted it after autocorrect “fixed it for me", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468190838854393856, + "in_reply_to_status_id_str": "468190838854393856", + "in_reply_to_user_id": 17096754, + "in_reply_to_user_id_str": "17096754", + "in_reply_to_screen_name": "Canageek", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 00:47:29 +0000 2014", + "id": 468191174667165696, + "id_str": "468191174667165696", + "text": "@Talen_Lee @zhuowei exceptions that come to mind is the Netherlands is definitely not Holland and Ukraine asked us to drop the “the”", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468190570070822914, + "in_reply_to_status_id_str": "468190570070822914", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 00:46:55 +0000 2014", + "id": 468191032430305280, + "id_str": "468191032430305280", + "text": "@Talen_Lee @zhuowei most countries publish their own guidelines for how to spell their name in English and they usually roll with old stuff", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468190570070822914, + "in_reply_to_status_id_str": "468190570070822914", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 00:45:29 +0000 2014", + "id": 468190673242697728, + "id_str": "468190673242697728", + "text": "Thanks autocorrect, I definitely meant to have an unclosed open-quote, it’s a very common English feature", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 6, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 00:44:41 +0000 2014", + "id": 468190471098220544, + "id_str": "468190471098220544", + "text": "In the pokebot chat, it’s hard to tell the difference between someone who can’t read the FAQ and someone who just wants to name Nidoran ‘?’", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 00:43:33 +0000 2014", + "id": 468190185859989506, + "id_str": "468190185859989506", + "text": "@Talen_Lee I’ll have you know — !", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468189036482265088, + "in_reply_to_status_id_str": "468189036482265088", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 00:40:27 +0000 2014", + "id": 468189407154307073, + "id_str": "468189407154307073", + "text": "@abditum @Packetknife actually that’s totally hand-erased with a stylus on my iPad", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468189142229086209, + "in_reply_to_status_id_str": "468189142229086209", + "in_reply_to_user_id": 24346550, + "in_reply_to_user_id_str": "24346550", + "in_reply_to_screen_name": "abditum", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 00:30:58 +0000 2014", + "id": 468187021022744577, + "id_str": "468187021022744577", + "text": "@grumpybozo dangit I keep forgetting that", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468186895449858048, + "in_reply_to_status_id_str": "468186895449858048", + "in_reply_to_user_id": 317126349, + "in_reply_to_user_id_str": "317126349", + "in_reply_to_screen_name": "grumpybozo", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 00:29:51 +0000 2014", + "id": 468186737026805760, + "id_str": "468186737026805760", + "text": "If I ever go back to September Ever After I think I’ll try experimental pronouns\n\nSpoiler Sammers is and always was written as FTM trans", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 00:24:47 +0000 2014", + "id": 468185461668978688, + "id_str": "468185461668978688", + "text": "RT protected: retcon: Crisis on Infinite Genders", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 00:23:25 +0000 2014", + "id": 468185121107890178, + "id_str": "468185121107890178", + "text": "@Daiz42 well we are kinda speaking English \n\nGoing around telling other languages what to do would be the classic English *failure* mode", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468184792354545664, + "in_reply_to_status_id_str": "468184792354545664", + "in_reply_to_user_id": 1303903314, + "in_reply_to_user_id_str": "1303903314", + "in_reply_to_screen_name": "Daiz42", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 00:22:31 +0000 2014", + "id": 468184891969269760, + "id_str": "468184891969269760", + "text": "I kinda regret I didn’t think to use experimental pronouns in the novel… and it’d be kinda abrupt to introduce them in book 2", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 00:16:35 +0000 2014", + "id": 468183399765913600, + "id_str": "468183399765913600", + "text": "@Daiz42 I have no qualms whatsoever about asserting that the entirety of Indo-European culture *made a mistake.*", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468183181154582528, + "in_reply_to_status_id_str": "468183181154582528", + "in_reply_to_user_id": 1303903314, + "in_reply_to_user_id_str": "1303903314", + "in_reply_to_screen_name": "Daiz42", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 00:13:37 +0000 2014", + "id": 468182654471655425, + "id_str": "468182654471655425", + "text": "@Trif4 boku wa it’s complicated", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468177234751401985, + "in_reply_to_status_id_str": "468177234751401985", + "in_reply_to_user_id": 80297629, + "in_reply_to_user_id_str": "80297629", + "in_reply_to_screen_name": "Trif4", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 19 00:03:26 +0000 2014", + "id": 468180090422312960, + "id_str": "468180090422312960", + "text": "@Packetknife http://t.co/euPA3mJIeJ", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468178351228977152, + "in_reply_to_status_id_str": "468178351228977152", + "in_reply_to_user_id": 19564254, + "in_reply_to_user_id_str": "19564254", + "in_reply_to_screen_name": "Packetknife", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Sun May 18 23:56:10 +0000 2014", + "id": 468178260723912704, + "id_str": "468178260723912704", + "text": "@MaruZenunim @Trif4 and I remain unsure of what to do or how to feel about that", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468176880802480128, + "in_reply_to_status_id_str": "468176880802480128", + "in_reply_to_user_id": 628721558, + "in_reply_to_user_id_str": "628721558", + "in_reply_to_screen_name": "MaruZenunim", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 23:54:17 +0000 2014", + "id": 468177789364215808, + "id_str": "468177789364215808", + "text": "@eevee what are queer talking about? Of course gay does.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468177441559547904, + "in_reply_to_status_id_str": "468177441559547904", + "in_reply_to_user_id": 14412937, + "in_reply_to_user_id_str": "14412937", + "in_reply_to_screen_name": "eevee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 23:52:35 +0000 2014", + "id": 468177358357536768, + "id_str": "468177358357536768", + "text": "@MaruZenunim @Trif4 I’ve started to notice some people might assume I’m trans now that I’m more consistently read as femme online", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468176880802480128, + "in_reply_to_status_id_str": "468176880802480128", + "in_reply_to_user_id": 628721558, + "in_reply_to_user_id_str": "628721558", + "in_reply_to_screen_name": "MaruZenunim", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 23:50:02 +0000 2014", + "id": 468176716452888577, + "id_str": "468176716452888577", + "text": "Imagine if our language had sexual orientation encoded into pronouns like we do gender. I’d have to complain about bi erasure a lot more…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 8, + "favorite_count": 9, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 23:45:36 +0000 2014", + "id": 468175603993440256, + "id_str": "468175603993440256", + "text": "@FioraAeterna @hachidorii @Trif4 I RADIATE SPARKLES IN YOUR GENERAL DIRECTION", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468175434883276800, + "in_reply_to_status_id_str": "468175434883276800", + "in_reply_to_user_id": 2468699718, + "in_reply_to_user_id_str": "2468699718", + "in_reply_to_screen_name": "FioraAeterna", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 5, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 23:44:44 +0000 2014", + "id": 468175383482073088, + "id_str": "468175383482073088", + "text": "@ovioprime @dobharrison hopefully they will be nailed to some strict rules but of course they’re the ones with all the money so…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468175125162897410, + "in_reply_to_status_id_str": "468175125162897410", + "in_reply_to_user_id": 890346812, + "in_reply_to_user_id_str": "890346812", + "in_reply_to_screen_name": "ovioprime", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 23:44:16 +0000 2014", + "id": 468175268444925952, + "id_str": "468175268444925952", + "text": "@ovioprime @dobharrison it’s the other way around that’s the problem; Google is actively removing a competitor to YouTube from the field", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468175125162897410, + "in_reply_to_status_id_str": "468175125162897410", + "in_reply_to_user_id": 890346812, + "in_reply_to_user_id_str": "890346812", + "in_reply_to_screen_name": "ovioprime", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 23:43:40 +0000 2014", + "id": 468175117391241216, + "id_str": "468175117391241216", + "text": "RT @protosphere_: FUCKING PRINTERS", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sun May 18 23:40:44 +0000 2014", + "id": 468174377100386305, + "id_str": "468174377100386305", + "text": "FUCKING PRINTERS", + "source": "TweetDeck", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 354662280, + "id_str": "354662280" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 18, + "favorite_count": 20, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 18, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 23:43:35 +0000 2014", + "id": 468175094456778752, + "id_str": "468175094456778752", + "text": "RT @protosphere_: I'm relying on this printer to work first time.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sun May 18 23:36:09 +0000 2014", + "id": 468173225524862976, + "id_str": "468173225524862976", + "text": "I'm relying on this printer to work first time.", + "source": "YoruFukurou", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 354662280, + "id_str": "354662280" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 9, + "favorite_count": 9, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 9, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 23:41:24 +0000 2014", + "id": 468174545380466688, + "id_str": "468174545380466688", + "text": "@ovioprime @dobharrison Google does have to go through anti-monopoly regulators to buy Twitch, but they know how to deal with that", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468173934764900355, + "in_reply_to_status_id_str": "468173934764900355", + "in_reply_to_user_id": 890346812, + "in_reply_to_user_id_str": "890346812", + "in_reply_to_screen_name": "ovioprime", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 23:40:38 +0000 2014", + "id": 468174351708454912, + "id_str": "468174351708454912", + "text": "The reason I’m so insistent on feminine pronouns/titles is because there’s one less woman who made it into tech every time you make me a guy", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 42, + "favorite_count": 68, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 23:35:30 +0000 2014", + "id": 468173062408773632, + "id_str": "468173062408773632", + "text": "@Trif4 part of the reason I’m so aggressively public with my life these days is to stomp out the “boy in disguise” stuff", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468172667548602368, + "in_reply_to_status_id_str": "468172667548602368", + "in_reply_to_user_id": 80297629, + "in_reply_to_user_id_str": "80297629", + "in_reply_to_screen_name": "Trif4", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 23:34:25 +0000 2014", + "id": 468172788277452800, + "id_str": "468172788277452800", + "text": "@Trif4 expect me to be male, insist I’m male, tell me to stop lying and admit I’m male", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468172667548602368, + "in_reply_to_status_id_str": "468172667548602368", + "in_reply_to_user_id": 80297629, + "in_reply_to_user_id_str": "80297629", + "in_reply_to_screen_name": "Trif4", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 23:33:43 +0000 2014", + "id": 468172611571441664, + "id_str": "468172611571441664", + "text": "@Trif4 my entire life has been one of denial and erasure: I’m not a girl because I tech. I tech therefore I’m not a girl", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468172227800993792, + "in_reply_to_status_id_str": "468172227800993792", + "in_reply_to_user_id": 80297629, + "in_reply_to_user_id_str": "80297629", + "in_reply_to_screen_name": "Trif4", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 23:33:11 +0000 2014", + "id": 468172479241125888, + "id_str": "468172479241125888", + "text": "@Trif4 precisely\n\nIt’s not your fault but the world is already all about your gender", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468172227800993792, + "in_reply_to_status_id_str": "468172227800993792", + "in_reply_to_user_id": 80297629, + "in_reply_to_user_id_str": "80297629", + "in_reply_to_screen_name": "Trif4", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 23:27:37 +0000 2014", + "id": 468171075654676480, + "id_str": "468171075654676480", + "text": "@p0sixninja I’m really picky about gender words you know", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468170797249732608, + "in_reply_to_status_id_str": "468170797249732608", + "in_reply_to_user_id": 15053949, + "in_reply_to_user_id_str": "15053949", + "in_reply_to_screen_name": "p0sixninja", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 23:27:07 +0000 2014", + "id": 468170948756398080, + "id_str": "468170948756398080", + "text": "@scooterthetroll I don’t think that really fits the analogy", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468170773559910400, + "in_reply_to_status_id_str": "468170773559910400", + "in_reply_to_user_id": 241719856, + "in_reply_to_user_id_str": "241719856", + "in_reply_to_screen_name": "scooterthetroll", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 23:19:17 +0000 2014", + "id": 468168977726730240, + "id_str": "468168977726730240", + "text": "@boblord you know I kind of want to but I’m scared", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468167777493073922, + "in_reply_to_status_id_str": "468167777493073922", + "in_reply_to_user_id": 7320972, + "in_reply_to_user_id_str": "7320972", + "in_reply_to_screen_name": "boblord", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 23:14:54 +0000 2014", + "id": 468167874918768640, + "id_str": "468167874918768640", + "text": "@zhuowei oh Google-chan, I caught you spying on me again!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468167640247042048, + "in_reply_to_status_id_str": "468167640247042048", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 23:13:49 +0000 2014", + "id": 468167604633624576, + "id_str": "468167604633624576", + "text": "RT @aegies: the crappy thing about YT/twitch is that it seems totally mindshare based. youtube doesn't NEED twitch. they don't want to comp…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sun May 18 23:11:57 +0000 2014", + "id": 468167132509777920, + "id_str": "468167132509777920", + "text": "the crappy thing about YT/twitch is that it seems totally mindshare based. youtube doesn't NEED twitch. they don't want to compete with it.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 7125992, + "id_str": "7125992" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 24, + "favorite_count": 10, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 24, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 23:10:40 +0000 2014", + "id": 468166812245700609, + "id_str": "468166812245700609", + "text": "@dozykraut they have yet to figure out the internet is available in multiple countries simultaneously so", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468166379276079104, + "in_reply_to_status_id_str": "468166379276079104", + "in_reply_to_user_id": 23579460, + "in_reply_to_user_id_str": "23579460", + "in_reply_to_screen_name": "dozykraut", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 23:05:50 +0000 2014", + "id": 468165594127532034, + "id_str": "468165594127532034", + "text": "@kyhwana ohh that thing that they bought Skype to replace rather than upgrade", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468165452711993344, + "in_reply_to_status_id_str": "468165452711993344", + "in_reply_to_user_id": 30135560, + "in_reply_to_user_id_str": "30135560", + "in_reply_to_screen_name": "kyhwana", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 23:05:13 +0000 2014", + "id": 468165437394796544, + "id_str": "468165437394796544", + "text": "@Tamora_Tea attn @MarkKriegsman this seems right up your mischief managing alley", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467894926936510464, + "in_reply_to_status_id_str": "467894926936510464", + "in_reply_to_user_id": 22534299, + "in_reply_to_user_id_str": "22534299", + "in_reply_to_screen_name": "Tamora_Tea", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 23:03:39 +0000 2014", + "id": 468165044727840768, + "id_str": "468165044727840768", + "text": "RT @zhuowei: @0xabad1dea Twitch plays Acquisition Negotiations", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sun May 18 23:03:10 +0000 2014", + "id": 468164921838936066, + "id_str": "468164921838936066", + "text": "@0xabad1dea Twitch plays Acquisition Negotiations", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 468163721509212160, + "in_reply_to_status_id_str": "468163721509212160", + "in_reply_to_user_id": 126030998, + "in_reply_to_user_id_str": "126030998", + "in_reply_to_screen_name": "0xabad1dea", + "user": { + "id": 383083538, + "id_str": "383083538" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 7, + "favorite_count": 12, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "0xabad1dea", + "name": "Melissa", + "id": 126030998, + "id_str": "126030998", + "indices": [ + 0, + 11 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 7, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 23:03:32 +0000 2014", + "id": 468165016466624512, + "id_str": "468165016466624512", + "text": "My fan theory is that Microsoft is going to buy Facebook and Google is going to buy Twitter and after that there will be two internets", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 37, + "favorite_count": 47, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 23:02:18 +0000 2014", + "id": 468164705803317248, + "id_str": "468164705803317248", + "text": "Really not a fan of this trend of everything on the internet being slowly subsumed into Google or Microsoft or occasionally Facebook", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 119, + "favorite_count": 78, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 23:01:28 +0000 2014", + "id": 468164496566280192, + "id_str": "468164496566280192", + "text": "@kylemaxwell but it does more than Instagram :)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468164280806678530, + "in_reply_to_status_id_str": "468164280806678530", + "in_reply_to_user_id": 727603, + "in_reply_to_user_id_str": "727603", + "in_reply_to_screen_name": "kylemaxwell", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 23:01:11 +0000 2014", + "id": 468164424218714112, + "id_str": "468164424218714112", + "text": "@vogon what about getting their tendrils into x-bone and playstation boxes", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468164005291622401, + "in_reply_to_status_id_str": "468164005291622401", + "in_reply_to_user_id": 6326912, + "in_reply_to_user_id_str": "6326912", + "in_reply_to_screen_name": "vogon", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 22:58:58 +0000 2014", + "id": 468163864446906368, + "id_str": "468163864446906368", + "text": "@DrPizza *twitch*\n\nCould u not", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468163766694469632, + "in_reply_to_status_id_str": "468163766694469632", + "in_reply_to_user_id": 11375732, + "in_reply_to_user_id_str": "11375732", + "in_reply_to_screen_name": "DrPizza", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 22:58:23 +0000 2014", + "id": 468163721509212160, + "id_str": "468163721509212160", + "text": "So that game where you guess the news from the sarcasm on twitter? I’m feeling a bit… twitchy. Bad news.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 5, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 22:56:32 +0000 2014", + "id": 468163252086931456, + "id_str": "468163252086931456", + "text": "@DrPizza wait what", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468162726683226112, + "in_reply_to_status_id_str": "468162726683226112", + "in_reply_to_user_id": 11375732, + "in_reply_to_user_id_str": "11375732", + "in_reply_to_screen_name": "DrPizza", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 22:55:43 +0000 2014", + "id": 468163046968688640, + "id_str": "468163046968688640", + "text": "@zauspar — but then again my timeline leans very privacy centric", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468160746128281601, + "in_reply_to_status_id_str": "468160746128281601", + "in_reply_to_user_id": 216571343, + "in_reply_to_user_id_str": "216571343", + "in_reply_to_screen_name": "zauspar", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 22:55:25 +0000 2014", + "id": 468162971076952065, + "id_str": "468162971076952065", + "text": "@zauspar actually I can’t think of a single techie who was happy with that one outside of the implication nest wasn’t failing —", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468160746128281601, + "in_reply_to_status_id_str": "468160746128281601", + "in_reply_to_user_id": 216571343, + "in_reply_to_user_id_str": "216571343", + "in_reply_to_screen_name": "zauspar", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 22:49:45 +0000 2014", + "id": 468161545172975616, + "id_str": "468161545172975616", + "text": "@alt_m1sp @zauspar I hate fish. But you don’t like eggs?!\n\nIs it because you think too hard about it 🐣", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468147347088609280, + "in_reply_to_status_id_str": "468147347088609280", + "in_reply_to_user_id": 2401670173, + "in_reply_to_user_id_str": "2401670173", + "in_reply_to_screen_name": "alt_m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 22:45:58 +0000 2014", + "id": 468160593502142464, + "id_str": "468160593502142464", + "text": "@zauspar I have faaaiiiiled. \n\nThough I didn’t start Aspects intending it to get all gendery, just kinda happened", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468138000728461312, + "in_reply_to_status_id_str": "468138000728461312", + "in_reply_to_user_id": 216571343, + "in_reply_to_user_id_str": "216571343", + "in_reply_to_screen_name": "zauspar", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 22:41:44 +0000 2014", + "id": 468159528606113793, + "id_str": "468159528606113793", + "text": "@Quiara apologies", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468159442165727232, + "in_reply_to_status_id_str": "468159442165727232", + "in_reply_to_user_id": 3223691, + "in_reply_to_user_id_str": "3223691", + "in_reply_to_screen_name": "Quiara", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "ro" + }, + { + "created_at": "Sun May 18 22:40:11 +0000 2014", + "id": 468159141316288512, + "id_str": "468159141316288512", + "text": ".@Quiara don’t forget the part where the adults never bother reminding the boy not to do that because boys will be boys", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468120002085003264, + "in_reply_to_status_id_str": "468120002085003264", + "in_reply_to_user_id": 3223691, + "in_reply_to_user_id_str": "3223691", + "in_reply_to_screen_name": "Quiara", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 5, + "favorite_count": 10, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 22:36:55 +0000 2014", + "id": 468158317441740800, + "id_str": "468158317441740800", + "text": "RT @Quiara: One thing I want people to stop telling young girls: \"if he pulls your hair or hits you, he likes you and doesn't know how to t…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sun May 18 20:04:40 +0000 2014", + "id": 468120002085003264, + "id_str": "468120002085003264", + "text": "One thing I want people to stop telling young girls: \"if he pulls your hair or hits you, he likes you and doesn't know how to tell you.\"", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 3223691, + "id_str": "3223691" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 32, + "favorite_count": 20, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 32, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 22:34:35 +0000 2014", + "id": 468157729102520320, + "id_str": "468157729102520320", + "text": "@TweetsofOld Florida. Florida never changes.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468120172608233473, + "in_reply_to_status_id_str": "468120172608233473", + "in_reply_to_user_id": 66666549, + "in_reply_to_user_id_str": "66666549", + "in_reply_to_screen_name": "TweetsofOld", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "pt" + }, + { + "created_at": "Sun May 18 22:33:48 +0000 2014", + "id": 468157532075458560, + "id_str": "468157532075458560", + "text": "RT @bbaskin: My son received his first love letter... in the form of a custom Minecraft world. I have great hopes for his generation.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sun May 18 20:03:23 +0000 2014", + "id": 468119681556316160, + "id_str": "468119681556316160", + "text": "My son received his first love letter... in the form of a custom Minecraft world. I have great hopes for his generation.", + "source": "TweetDeck", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 17442948, + "id_str": "17442948" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 76, + "favorite_count": 83, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 76, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 22:07:16 +0000 2014", + "id": 468150855292956673, + "id_str": "468150855292956673", + "text": "RT @tweetbot: If your Tweetbot for Mac is crashing.\nQuit and paste the text below in Terminal\n\ndefaults remove com.tapbots.TweetbotMac remo…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sun May 18 18:19:28 +0000 2014", + "id": 468093526454968320, + "id_str": "468093526454968320", + "text": "If your Tweetbot for Mac is crashing.\nQuit and paste the text below in Terminal\n\ndefaults remove com.tapbots.TweetbotMac remoteConfiguration", + "source": "Tweetbot for Mac", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 274626857, + "id_str": "274626857" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1245, + "favorite_count": 1488, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 1245, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 22:06:40 +0000 2014", + "id": 468150702913507331, + "id_str": "468150702913507331", + "text": "RT @zhuowei: @FioraAeterna @0xabad1dea On the same page: \"OpenSSL also copes if /dev/null moves while openssl is running. \"", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sun May 18 22:06:30 +0000 2014", + "id": 468150660815286272, + "id_str": "468150660815286272", + "text": "@FioraAeterna @0xabad1dea On the same page: \"OpenSSL also copes if /dev/null moves while openssl is running. \"", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 468095183352233984, + "in_reply_to_status_id_str": "468095183352233984", + "in_reply_to_user_id": 2468699718, + "in_reply_to_user_id_str": "2468699718", + "in_reply_to_screen_name": "FioraAeterna", + "user": { + "id": 383083538, + "id_str": "383083538" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 11, + "favorite_count": 12, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "FioraAeterna", + "name": "Fiora", + "id": 2468699718, + "id_str": "2468699718", + "indices": [ + 0, + 13 + ] + }, + { + "screen_name": "0xabad1dea", + "name": "Melissa", + "id": 126030998, + "id_str": "126030998", + "indices": [ + 14, + 25 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 11, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 22:06:03 +0000 2014", + "id": 468150548739665921, + "id_str": "468150548739665921", + "text": "@JZdziarski was", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468102817807618049, + "in_reply_to_status_id_str": "468102817807618049", + "in_reply_to_user_id": 1267770224, + "in_reply_to_user_id_str": "1267770224", + "in_reply_to_screen_name": "JZdziarski", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Sun May 18 22:05:14 +0000 2014", + "id": 468150345060085761, + "id_str": "468150345060085761", + "text": "@alt_m1sp but don’t you disappear from Cutie Twitter.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468100791849320449, + "in_reply_to_status_id_str": "468100791849320449", + "in_reply_to_user_id": 2401670173, + "in_reply_to_user_id_str": "2401670173", + "in_reply_to_screen_name": "alt_m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 22:03:10 +0000 2014", + "id": 468149824567918594, + "id_str": "468149824567918594", + "text": ".@FioraAeterna context could not improve this", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468095183352233984, + "in_reply_to_status_id_str": "468095183352233984", + "in_reply_to_user_id": 2468699718, + "in_reply_to_user_id_str": "2468699718", + "in_reply_to_screen_name": "FioraAeterna", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 5, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 22:02:45 +0000 2014", + "id": 468149717227282432, + "id_str": "468149717227282432", + "text": "RT @FioraAeterna: \"But the good news is, if the size of socklen_t changes while your program is running, openSSL will cope!\"", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sun May 18 18:26:03 +0000 2014", + "id": 468095183352233984, + "id_str": "468095183352233984", + "text": "\"But the good news is, if the size of socklen_t changes while your program is running, openSSL will cope!\"", + "source": "TweetDeck", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2468699718, + "id_str": "2468699718" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 29, + "favorite_count": 31, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 29, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 21:51:24 +0000 2014", + "id": 468146864404332544, + "id_str": "468146864404332544", + "text": "@elad3 just some dreugh", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 160897504, + "in_reply_to_user_id_str": "160897504", + "in_reply_to_screen_name": "elad3", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 21:47:05 +0000 2014", + "id": 468145777274281984, + "id_str": "468145777274281984", + "text": "@0xabad1dea hey, I thought multi-pic tweets more or less displayed correctly in tweetbot…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468092379807756288, + "in_reply_to_status_id_str": "468092379807756288", + "in_reply_to_user_id": 126030998, + "in_reply_to_user_id_str": "126030998", + "in_reply_to_screen_name": "0xabad1dea", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 21:41:10 +0000 2014", + "id": 468144286765051904, + "id_str": "468144286765051904", + "text": "From the mountains to the sea, each river crossed twice as wide as the one before.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 19:38:06 +0000 2014", + "id": 468113316393783296, + "id_str": "468113316393783296", + "text": "Goodbye Skyrim. Going home to Assassin's Creed 3. Bonus double selfie http://t.co/hgYpBoPmjc", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 10, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 19:31:02 +0000 2014", + "id": 468111537828548608, + "id_str": "468111537828548608", + "text": "@joshrossi 💻🔥", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 468108487764230144, + "in_reply_to_status_id_str": "468108487764230144", + "in_reply_to_user_id": 29956188, + "in_reply_to_user_id_str": "29956188", + "in_reply_to_screen_name": "joshrossi", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Sun May 18 19:18:35 +0000 2014", + "id": 468108403597144064, + "id_str": "468108403597144064", + "text": ".@zhuowei the dude selling maple sugar candy applied the same level of fraud paranoia as the Apple Store selling me iPads :)", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 468108101552320512, + "in_reply_to_status_id_str": "468108101552320512", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 19:17:20 +0000 2014", + "id": 468108089875779584, + "id_str": "468108089875779584", + "text": "For those asking why, if I'm in Skyrim, there's no loot: http://t.co/O9vuKN51hm", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 5, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 19:15:58 +0000 2014", + "id": 468107745431154688, + "id_str": "468107745431154688", + "text": "@zhuowei different last names", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 468107694331551744, + "in_reply_to_status_id_str": "468107694331551744", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 19:14:56 +0000 2014", + "id": 468107485799518208, + "id_str": "468107485799518208", + "text": "Wow \"my ID card and my debit card don't match because I got married\" always works", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 5, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 18:49:22 +0000 2014", + "id": 468101052248883201, + "id_str": "468101052248883201", + "text": "@zauspar YES http://t.co/Q5RQzfJsFt", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 468100893007564801, + "in_reply_to_status_id_str": "468100893007564801", + "in_reply_to_user_id": 216571343, + "in_reply_to_user_id_str": "216571343", + "in_reply_to_screen_name": "zauspar", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Sun May 18 18:38:38 +0000 2014", + "id": 468098351523962880, + "id_str": "468098351523962880", + "text": "Who brought the potion of breathing? http://t.co/oTo5WtE8u3", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 18:29:32 +0000 2014", + "id": 468096059437510656, + "id_str": "468096059437510656", + "text": "I'm pretty sure Sam and her dad from @jephjacques Questionable Content are here it's an uncanny resemblance", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 5, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 18:27:33 +0000 2014", + "id": 468095560701206528, + "id_str": "468095560701206528", + "text": "Update he's not dead just filthy", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 5, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 18:26:30 +0000 2014", + "id": 468095298079047680, + "id_str": "468095298079047680", + "text": "LTE drops to 3G in the caves. I can see my breath. Chickened out of crawling through the hole though. Is my husband dead?", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 5, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 18:16:59 +0000 2014", + "id": 468092902162186240, + "id_str": "468092902162186240", + "text": "@zhuowei @mralext20 as if you'd know! ... ... Yes iPhone 5S", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 468092744175349760, + "in_reply_to_status_id_str": "468092744175349760", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 18:14:54 +0000 2014", + "id": 468092379807756288, + "id_str": "468092379807756288", + "text": "Literally Skyrim http://t.co/LzNHshS1qt", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 16, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 17:55:15 +0000 2014", + "id": 468087435596136450, + "id_str": "468087435596136450", + "text": "Mandatory double selfie I'm good at looking at the camera http://t.co/1ww3XXnwF0", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 11, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 17:51:25 +0000 2014", + "id": 468086471032078337, + "id_str": "468086471032078337", + "text": "Square root. http://t.co/IstIiDa8Yt", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 56, + "favorite_count": 70, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "ro" + }, + { + "created_at": "Sun May 18 17:50:46 +0000 2014", + "id": 468086304606269440, + "id_str": "468086304606269440", + "text": ",@myfreeweb actually there IS still ice here in mid-May http://t.co/psIXkdDKjO", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 468079897039372290, + "in_reply_to_status_id_str": "468079897039372290", + "in_reply_to_user_id": 121042274, + "in_reply_to_user_id_str": "121042274", + "in_reply_to_screen_name": "myfreeweb", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 17:49:32 +0000 2014", + "id": 468085994039029760, + "id_str": "468085994039029760", + "text": "@Talen_Lee @RichardBarrell @m1sp I live in Massachusetts. New Hampshire is where you live tax free and die :)", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 468083808000958464, + "in_reply_to_status_id_str": "468083808000958464", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 17:17:53 +0000 2014", + "id": 468078030154645504, + "id_str": "468078030154645504", + "text": "I think everyone in New Hampshire looks alike. Oh gods I'm racist. Oh gods I'm from New Hampshire I must look like these people", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 7, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 17:16:46 +0000 2014", + "id": 468077748041551872, + "id_str": "468077748041551872", + "text": "@jwatte @p_minten yeah I don't think any of my trans friends would say XX or XY conveys anywhere near the full story for them", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 468071159678787584, + "in_reply_to_status_id_str": "468071159678787584", + "in_reply_to_user_id": 27054163, + "in_reply_to_user_id_str": "27054163", + "in_reply_to_screen_name": "jwatte", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 17:15:40 +0000 2014", + "id": 468077472282464256, + "id_str": "468077472282464256", + "text": "Hello everyone. Did you know there is LTE in Skyrim http://t.co/GBa1EPFJNx", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 8, + "favorite_count": 20, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 16:11:04 +0000 2014", + "id": 468061213495414784, + "id_str": "468061213495414784", + "text": "@Kufat 👋 ack'd", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 468060694575734784, + "in_reply_to_status_id_str": "468060694575734784", + "in_reply_to_user_id": 207691003, + "in_reply_to_user_id_str": "207691003", + "in_reply_to_screen_name": "Kufat", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 16:08:20 +0000 2014", + "id": 468060526061584384, + "id_str": "468060526061584384", + "text": "Why are the flags at half staff in New Hampshire today ... ? Just left that way for a few days now or?", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 16:04:02 +0000 2014", + "id": 468059445575286784, + "id_str": "468059445575286784", + "text": "I call all synthetic female voices Siri. DH calls them all GLaDOS", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 6, + "favorite_count": 23, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 15:59:37 +0000 2014", + "id": 468058335171076096, + "id_str": "468058335171076096", + "text": "@m1sp 🎵🎶🎵", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Sun May 18 14:35:41 +0000 2014", + "id": 468037212173795328, + "id_str": "468037212173795328", + "text": "> when sugar comes before flour in the cupcake ingredient list \n\n> when you can't convince yourself there's a right way to spell flour", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 5, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 13:45:19 +0000 2014", + "id": 468024536076918784, + "id_str": "468024536076918784", + "text": "@zauspar I confess: I do not use the Mac version", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468024421350125568, + "in_reply_to_status_id_str": "468024421350125568", + "in_reply_to_user_id": 216571343, + "in_reply_to_user_id_str": "216571343", + "in_reply_to_screen_name": "zauspar", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 13:42:48 +0000 2014", + "id": 468023902011015168, + "id_str": "468023902011015168", + "text": "I guess, if I’m going to get out of bed and demand we go to New Hampshire, now is the time", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 13:25:11 +0000 2014", + "id": 468019469487722496, + "id_str": "468019469487722496", + "text": "@ezchili I’m just gonna go ahead and assume it’s Sephiroth", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467981366291087360, + "in_reply_to_status_id_str": "467981366291087360", + "in_reply_to_user_id": 107076934, + "in_reply_to_user_id_str": "107076934", + "in_reply_to_screen_name": "ezchili", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 13:05:27 +0000 2014", + "id": 468014502655451137, + "id_str": "468014502655451137", + "text": "@Talen_Lee you can’t make a monkey\n\nYou can’t make a monkey \n\nYou can’t make a monkey outta me…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468014166024810496, + "in_reply_to_status_id_str": "468014166024810496", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 13:04:11 +0000 2014", + "id": 468014185083727872, + "id_str": "468014185083727872", + "text": "@gryxitl *bleary-eyed stare*", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467911328276180992, + "in_reply_to_status_id_str": "467911328276180992", + "in_reply_to_user_id": 15798961, + "in_reply_to_user_id_str": "15798961", + "in_reply_to_screen_name": "gryxitl", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 13:03:44 +0000 2014", + "id": 468014071170621440, + "id_str": "468014071170621440", + "text": "@Talen_Lee YES", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 468001756354314241, + "in_reply_to_status_id_str": "468001756354314241", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Sun May 18 05:38:58 +0000 2014", + "id": 467902142041579520, + "id_str": "467902142041579520", + "text": "@Talen_Lee @zhuowei it’s almost like thirty million is several times the population of Virginia", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467901737680904192, + "in_reply_to_status_id_str": "467901737680904192", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 05:34:51 +0000 2014", + "id": 467901107050520576, + "id_str": "467901107050520576", + "text": "@zhuowei @Talen_Lee this was before I wrote her backstory as a lark with purple arrows to three different men on my chart", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467899286412218368, + "in_reply_to_status_id_str": "467899286412218368", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 05:30:24 +0000 2014", + "id": 467899986404192256, + "id_str": "467899986404192256", + "text": "@zhuowei @Talen_Lee which then made her seem actually far more consistent and specific of a person to me.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467899286412218368, + "in_reply_to_status_id_str": "467899286412218368", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 05:29:07 +0000 2014", + "id": 467899661194231808, + "id_str": "467899661194231808", + "text": "@zhuowei @Talen_Lee she became mute when I noticed she had very few lines and considered what would happen if I just… got rid of them", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467899286412218368, + "in_reply_to_status_id_str": "467899286412218368", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 05:25:12 +0000 2014", + "id": 467898678171025408, + "id_str": "467898678171025408", + "text": "@WhiteMageSlave I see you surrendered to the fate of default colors instead of being like me and changing every single one", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467898337430351872, + "in_reply_to_status_id_str": "467898337430351872", + "in_reply_to_user_id": 90791634, + "in_reply_to_user_id_str": "90791634", + "in_reply_to_screen_name": "WhiteMageSlave", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 05:24:06 +0000 2014", + "id": 467898400328126464, + "id_str": "467898400328126464", + "text": "@zhuowei @Talen_Lee not just because of atrocious art but because of things like… Deloram had lines", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467897640454078464, + "in_reply_to_status_id_str": "467897640454078464", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 05:23:39 +0000 2014", + "id": 467898285823623168, + "id_str": "467898285823623168", + "text": "@zhuowei @Talen_Lee I have all of 3B and 4A in an imgur album, but I can’t bear to show most of it http://t.co/oGyrmQuzq5", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467897640454078464, + "in_reply_to_status_id_str": "467897640454078464", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 05:18:48 +0000 2014", + "id": 467897065930883073, + "id_str": "467897065930883073", + "text": "@zhuowei @Talen_Lee I see you and raise you one incredibly poorly drawn pterosaur http://t.co/PA51tT0K2q", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467895800349995009, + "in_reply_to_status_id_str": "467895800349995009", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 05:12:11 +0000 2014", + "id": 467895399735631872, + "id_str": "467895399735631872", + "text": "@zhuowei @Talen_Lee I think maybe everyone in Aspects world might have the same neuroatypical need for concision as their Will of the World…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467893380706349056, + "in_reply_to_status_id_str": "467893380706349056", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 05:09:30 +0000 2014", + "id": 467894728403746816, + "id_str": "467894728403746816", + "text": "@EllieAsksWhy @thegrugq @ErrataRob my 3rd grade teacher explicitly lied to my face about that scene in Ruth", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467894464598769667, + "in_reply_to_status_id_str": "467894464598769667", + "in_reply_to_user_id": 153811467, + "in_reply_to_user_id_str": "153811467", + "in_reply_to_screen_name": "EllieAsksWhy", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 05:08:46 +0000 2014", + "id": 467894540654092289, + "id_str": "467894540654092289", + "text": "RT @PeerProd: In Europe, encrypted traffic went from 1.47% to 6.10%, and in Latin America, it increased from 1.8% to 10.37%\nhttp://t.co/gCN…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sun May 18 05:04:19 +0000 2014", + "id": 467893420019957760, + "id_str": "467893420019957760", + "text": "In Europe, encrypted traffic went from 1.47% to 6.10%, and in Latin America, it increased from 1.8% to 10.37%\nhttp://t.co/gCNsBuiVGQ #NSA", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 75183681, + "id_str": "75183681" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 48, + "favorite_count": 19, + "entities": { + "hashtags": [ + { + "text": "NSA", + "indices": [ + 133, + 137 + ] + } + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/gCNsBuiVGQ", + "expanded_url": "http://www.wired.com/2014/05/sandvine-report/", + "display_url": "wired.com/2014/05/sandvi…", + "indices": [ + 110, + 132 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 48, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 05:02:01 +0000 2014", + "id": 467892845035024385, + "id_str": "467892845035024385", + "text": "@EllieAsksWhy @ErrataRob @thegrugq that was the goal yes", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467892171501088768, + "in_reply_to_status_id_str": "467892171501088768", + "in_reply_to_user_id": 153811467, + "in_reply_to_user_id_str": "153811467", + "in_reply_to_screen_name": "EllieAsksWhy", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 04:53:29 +0000 2014", + "id": 467890694242451456, + "id_str": "467890694242451456", + "text": "RT @opsec_ebooks: Im often asked, \"What browser do you use?\" My usual answer was, well is, top secret after all.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sun May 18 04:10:33 +0000 2014", + "id": 467879889425559553, + "id_str": "467879889425559553", + "text": "Im often asked, \"What browser do you use?\" My usual answer was, well is, top secret after all.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2478060493, + "id_str": "2478060493" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 8, + "favorite_count": 14, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 8, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 04:53:06 +0000 2014", + "id": 467890597513011202, + "id_str": "467890597513011202", + "text": "@thegrugq I’m just quoting the Good Book dude", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467890479992807424, + "in_reply_to_status_id_str": "467890479992807424", + "in_reply_to_user_id": 18983429, + "in_reply_to_user_id_str": "18983429", + "in_reply_to_screen_name": "thegrugq", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 04:52:06 +0000 2014", + "id": 467890348216573952, + "id_str": "467890348216573952", + "text": "@thegrugq come, let us make our father drink wine, drink wine\n\nYou’ll go in then I’ll go in when our father drinks wine, drinks wine", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467890144192655360, + "in_reply_to_status_id_str": "467890144192655360", + "in_reply_to_user_id": 18983429, + "in_reply_to_user_id_str": "18983429", + "in_reply_to_screen_name": "thegrugq", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 04:49:47 +0000 2014", + "id": 467889765761552384, + "id_str": "467889765761552384", + "text": "@thegrugq @pandora_radio this is also true.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467889650091053056, + "in_reply_to_status_id_str": "467889650091053056", + "in_reply_to_user_id": 18983429, + "in_reply_to_user_id_str": "18983429", + "in_reply_to_screen_name": "thegrugq", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 04:49:33 +0000 2014", + "id": 467889703807488002, + "id_str": "467889703807488002", + "text": "@thegrugq doesn’t everyone celebrate patriarchal gatekeeping of feminine sexuality with kiddie rhymes?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467889047134666752, + "in_reply_to_status_id_str": "467889047134666752", + "in_reply_to_user_id": 18983429, + "in_reply_to_user_id_str": "18983429", + "in_reply_to_screen_name": "thegrugq", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 04:07:23 +0000 2014", + "id": 467879093388992512, + "id_str": "467879093388992512", + "text": "@bcrypt 💕", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467877998461333504, + "in_reply_to_status_id_str": "467877998461333504", + "in_reply_to_user_id": 968881477, + "in_reply_to_user_id_str": "968881477", + "in_reply_to_screen_name": "bcrypt", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Sun May 18 04:02:53 +0000 2014", + "id": 467877960238637057, + "id_str": "467877960238637057", + "text": "@Togglebear @qDot as a Melissa, yes we do.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467873942607523840, + "in_reply_to_status_id_str": "467873942607523840", + "in_reply_to_user_id": 1258687728, + "in_reply_to_user_id_str": "1258687728", + "in_reply_to_screen_name": "Togglebear", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 03:55:12 +0000 2014", + "id": 467876026149011456, + "id_str": "467876026149011456", + "text": "@blakeffm @puellavulnerata yes. All shall bow before my millennial might", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467860916676362240, + "in_reply_to_status_id_str": "467860916676362240", + "in_reply_to_user_id": 187221051, + "in_reply_to_user_id_str": "187221051", + "in_reply_to_screen_name": "blakeffm", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 03:54:00 +0000 2014", + "id": 467875728252346369, + "id_str": "467875728252346369", + "text": "@eqe @pandora_radio what is this HTML of which you speak?\n\nSent from my iPad", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467875379504369664, + "in_reply_to_status_id_str": "467875379504369664", + "in_reply_to_user_id": 16076004, + "in_reply_to_user_id_str": "16076004", + "in_reply_to_screen_name": "eqe", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 03:37:43 +0000 2014", + "id": 467871627485904896, + "id_str": "467871627485904896", + "text": "Dear @pandora_radio, how many times do I have to manually close the “find your friends on Facebook” panel before you realize I rejected you?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 6, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 03:27:24 +0000 2014", + "id": 467869034139361280, + "id_str": "467869034139361280", + "text": "@WhiteMageSlave MindMaple. It eventually got too big for the iPad version and I had to finish it on the Windows version", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467868854220488704, + "in_reply_to_status_id_str": "467868854220488704", + "in_reply_to_user_id": 90791634, + "in_reply_to_user_id_str": "90791634", + "in_reply_to_screen_name": "WhiteMageSlave", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 02:56:33 +0000 2014", + "id": 467861266782908416, + "id_str": "467861266782908416", + "text": ".@mistydemeo @ticky @FioraAeterna my gender is villain", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467857476834975745, + "in_reply_to_status_id_str": "467857476834975745", + "in_reply_to_user_id": 296622166, + "in_reply_to_user_id_str": "296622166", + "in_reply_to_screen_name": "mistydemeo", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 12, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 02:56:19 +0000 2014", + "id": 467861209488695296, + "id_str": "467861209488695296", + "text": "RT @mistydemeo: Gender: hero RT @ticky: So, are you a boy, a girl or a hero? http://t.co/j1l8o7nQ4J", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sun May 18 02:41:29 +0000 2014", + "id": 467857476834975745, + "id_str": "467857476834975745", + "text": "Gender: hero RT @ticky: So, are you a boy, a girl or a hero? http://t.co/j1l8o7nQ4J", + "source": "YoruFukurou", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 296622166, + "id_str": "296622166" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 11, + "favorite_count": 6, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "ticky", + "name": "Jessica", + "id": 17400671, + "id_str": "17400671", + "indices": [ + 16, + 22 + ] + } + ], + "media": [ + { + "id": 467855524097032193, + "id_str": "467855524097032193", + "indices": [ + 61, + 83 + ], + "media_url": "http://pbs.twimg.com/media/Bn4oHtACAAENxG6.png", + "media_url_https": "https://pbs.twimg.com/media/Bn4oHtACAAENxG6.png", + "url": "http://t.co/j1l8o7nQ4J", + "display_url": "pic.twitter.com/j1l8o7nQ4J", + "expanded_url": "http://twitter.com/ticky/status/467855524344508416/photo/1", + "type": "photo", + "sizes": { + "large": { + "w": 746, + "h": 507, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 600, + "h": 408, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 231, + "resize": "fit" + } + }, + "source_status_id": 467855524344508416, + "source_status_id_str": "467855524344508416" + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 11, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 02:55:06 +0000 2014", + "id": 467860902638006272, + "id_str": "467860902638006272", + "text": "@zhuowei @Talen_Lee @mralext20 @m1sp no of course not http://t.co/RNSFPjWBvg", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467859305039794177, + "in_reply_to_status_id_str": "467859305039794177", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 02:42:48 +0000 2014", + "id": 467857806742126592, + "id_str": "467857806742126592", + "text": "@Talen_Lee since we’re on about theology, here’s mine rather concisely. http://t.co/Nzhu5DPUS5", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 02:41:43 +0000 2014", + "id": 467857536868024320, + "id_str": "467857536868024320", + "text": "@xa329 keeping that passage handy is such a blessing, let me tell you.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467856862369812480, + "in_reply_to_status_id_str": "467856862369812480", + "in_reply_to_user_id": 96867459, + "in_reply_to_user_id_str": "96867459", + "in_reply_to_screen_name": "xa329", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 02:36:53 +0000 2014", + "id": 467856318762455040, + "id_str": "467856318762455040", + "text": "@Talen_Lee @mistydemeo thank gods I was never invited to one of those", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467855976196878336, + "in_reply_to_status_id_str": "467855976196878336", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 02:36:10 +0000 2014", + "id": 467856140161003521, + "id_str": "467856140161003521", + "text": "@Myriachan don’t let crazies pluck your daisies", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467855987794538498, + "in_reply_to_status_id_str": "467855987794538498", + "in_reply_to_user_id": 1556497868, + "in_reply_to_user_id_str": "1556497868", + "in_reply_to_screen_name": "Myriachan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 02:34:58 +0000 2014", + "id": 467855836425879554, + "id_str": "467855836425879554", + "text": "@mistydemeo this one in particular, I think it was meant to be taken harmlessly, but it just kinda unfolds into eldritch horror", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467855592753623040, + "in_reply_to_status_id_str": "467855592753623040", + "in_reply_to_user_id": 296622166, + "in_reply_to_user_id_str": "296622166", + "in_reply_to_screen_name": "mistydemeo", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 02:34:10 +0000 2014", + "id": 467855636839936001, + "id_str": "467855636839936001", + "text": "@Myriachan don’t admit crazy into your vajazy \n\nOur scientists are working around the clock to address all gender combos", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467854731634036736, + "in_reply_to_status_id_str": "467854731634036736", + "in_reply_to_user_id": 1556497868, + "in_reply_to_user_id_str": "1556497868", + "in_reply_to_screen_name": "Myriachan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 02:28:09 +0000 2014", + "id": 467854120590639104, + "id_str": "467854120590639104", + "text": "@mistydemeo I’ll brush my teeth I’ll comb my hair I’ll show him that I really care if I could marry daddy when I grow up", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467853630347816960, + "in_reply_to_status_id_str": "467853630347816960", + "in_reply_to_user_id": 296622166, + "in_reply_to_user_id_str": "296622166", + "in_reply_to_screen_name": "mistydemeo", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 02:27:08 +0000 2014", + "id": 467853863823745025, + "id_str": "467853863823745025", + "text": "@mistydemeo it’s a fundamentalist Christian kiddie song. iirc by the same people as the anti-evolution song “can’t make a monkey outta me”", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467853630347816960, + "in_reply_to_status_id_str": "467853630347816960", + "in_reply_to_user_id": 296622166, + "in_reply_to_user_id_str": "296622166", + "in_reply_to_screen_name": "mistydemeo", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 02:24:13 +0000 2014", + "id": 467853133041790976, + "id_str": "467853133041790976", + "text": "In retrospect, why on earth did my mother think it was cute to encourage me to sing a song called “I want to marry Daddy when I grow up”", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 12, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 02:15:00 +0000 2014", + "id": 467850813034205184, + "id_str": "467850813034205184", + "text": "@mralext20 @Talen_Lee @zhuowei @m1sp just add sexual tension and the triangle of drama doom is complete. http://t.co/WwVjFxmldt", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467848766125379584, + "in_reply_to_status_id_str": "467848766125379584", + "in_reply_to_user_id": 905041434, + "in_reply_to_user_id_str": "905041434", + "in_reply_to_screen_name": "mralext20", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 02:06:20 +0000 2014", + "id": 467848629886017536, + "id_str": "467848629886017536", + "text": "@Talen_Lee @zhuowei @mralext20 @m1sp I find perverse delight in drawing two lines of a friendship triangle, then closing with an enemy line.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467847042740396032, + "in_reply_to_status_id_str": "467847042740396032", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 01:59:03 +0000 2014", + "id": 467846797353050112, + "id_str": "467846797353050112", + "text": "@kivikakk I’ll try my best. ☁️💥🚗", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467844040738615296, + "in_reply_to_status_id_str": "467844040738615296", + "in_reply_to_user_id": 67204542, + "in_reply_to_user_id_str": "67204542", + "in_reply_to_screen_name": "kivikakk", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 01:37:11 +0000 2014", + "id": 467841294094450689, + "id_str": "467841294094450689", + "text": "@JackLScanlan it kinda depends… is it “therefore Jesus” intelligent design, or “therefore I believe we may have a moral purpose” design", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467840962396299264, + "in_reply_to_status_id_str": "467840962396299264", + "in_reply_to_user_id": 10342612, + "in_reply_to_user_id_str": "10342612", + "in_reply_to_screen_name": "JackLScanlan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 01:32:16 +0000 2014", + "id": 467840057462636544, + "id_str": "467840057462636544", + "text": "@JackLScanlan my experience with cognitive dissonance, let me show you it", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467839957147475969, + "in_reply_to_status_id_str": "467839957147475969", + "in_reply_to_user_id": 10342612, + "in_reply_to_user_id_str": "10342612", + "in_reply_to_screen_name": "JackLScanlan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 01:30:53 +0000 2014", + "id": 467839710253965312, + "id_str": "467839710253965312", + "text": "@JackLScanlan it’s an attempt to prove it’s not true because it’s clearly evil. Gods would never allow evil like… disease or… birth defects", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467838890892476416, + "in_reply_to_status_id_str": "467838890892476416", + "in_reply_to_user_id": 10342612, + "in_reply_to_user_id_str": "10342612", + "in_reply_to_screen_name": "JackLScanlan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 01:28:53 +0000 2014", + "id": 467839208124870656, + "id_str": "467839208124870656", + "text": "@frkbmb mugdrinker report: mattjay", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 540721095, + "in_reply_to_user_id_str": "540721095", + "in_reply_to_screen_name": "frkbmb", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "nl" + }, + { + "created_at": "Sun May 18 00:52:19 +0000 2014", + "id": 467830005033340928, + "id_str": "467830005033340928", + "text": "@_jdpage I heard there was something queer about them anyways — it’s not right a hobbit should enjoy a boat.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467829616917610496, + "in_reply_to_status_id_str": "467829616917610496", + "in_reply_to_user_id": 233252431, + "in_reply_to_user_id_str": "233252431", + "in_reply_to_screen_name": "_jdpage", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 00:47:28 +0000 2014", + "id": 467828781822910464, + "id_str": "467828781822910464", + "text": ".@neiltyson better question: which commandment would Frodo skip?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467828507293138944, + "in_reply_to_status_id_str": "467828507293138944", + "in_reply_to_user_id": 19725644, + "in_reply_to_user_id_str": "19725644", + "in_reply_to_screen_name": "neiltyson", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 12, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 00:27:46 +0000 2014", + "id": 467823827771064320, + "id_str": "467823827771064320", + "text": "@Tuplet http://t.co/SB3unPojLz", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467823491140431872, + "in_reply_to_status_id_str": "467823491140431872", + "in_reply_to_user_id": 34310651, + "in_reply_to_user_id_str": "34310651", + "in_reply_to_screen_name": "Tuplet", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Sun May 18 00:19:41 +0000 2014", + "id": 467821790723858432, + "id_str": "467821790723858432", + "text": "@zhuowei @m1sp that's not really how people from her country would self-identify\n\nthat is, if there were people from her country...", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 467819350754217984, + "in_reply_to_status_id_str": "467819350754217984", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 00:17:09 +0000 2014", + "id": 467821154564984832, + "id_str": "467821154564984832", + "text": "@TakoArishi the book 4 version of this graph will have some pretty incredible metaphysical problems", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 467820551076343808, + "in_reply_to_status_id_str": "467820551076343808", + "in_reply_to_user_id": 22107482, + "in_reply_to_user_id_str": "22107482", + "in_reply_to_screen_name": "TakoArishi", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 00:15:09 +0000 2014", + "id": 467820650942717952, + "id_str": "467820650942717952", + "text": "@mtheoryx manually. This is the sort of activity that entertains me...", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 467820537708703744, + "in_reply_to_status_id_str": "467820537708703744", + "in_reply_to_user_id": 1558511, + "in_reply_to_user_id_str": "1558511", + "in_reply_to_screen_name": "mtheoryx", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 00:13:49 +0000 2014", + "id": 467820316816048130, + "id_str": "467820316816048130", + "text": "@TimelessP well at the end of book 2 there'll have been another 400 pages for new characters to come in and old characters to screw up", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 467820121487343616, + "in_reply_to_status_id_str": "467820121487343616", + "in_reply_to_user_id": 8784462, + "in_reply_to_user_id_str": "8784462", + "in_reply_to_screen_name": "TimelessP", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 00:12:17 +0000 2014", + "id": 467819931296595968, + "id_str": "467819931296595968", + "text": "@mtheoryx this is my novel", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 467819820436582401, + "in_reply_to_status_id_str": "467819820436582401", + "in_reply_to_user_id": 1558511, + "in_reply_to_user_id_str": "1558511", + "in_reply_to_screen_name": "mtheoryx", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 00:12:09 +0000 2014", + "id": 467819897138196480, + "id_str": "467819897138196480", + "text": "@zauspar there's actually a fair few unmarked connections of knowing each other but not having very strong feelings either way", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 467819711552831488, + "in_reply_to_status_id_str": "467819711552831488", + "in_reply_to_user_id": 216571343, + "in_reply_to_user_id_str": "216571343", + "in_reply_to_screen_name": "zauspar", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 00:10:44 +0000 2014", + "id": 467819537669558273, + "id_str": "467819537669558273", + "text": "I developed an imaginary world and all I got was this incredibly dense artificial social graph. http://t.co/95CBNyGdgm", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 9, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sun May 18 00:07:36 +0000 2014", + "id": 467818749630746625, + "id_str": "467818749630746625", + "text": "@Tuplet I knew that would happen though.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 467818512908820481, + "in_reply_to_status_id_str": "467818512908820481", + "in_reply_to_user_id": 34310651, + "in_reply_to_user_id_str": "34310651", + "in_reply_to_screen_name": "Tuplet", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 17 23:56:48 +0000 2014", + "id": 467816034465247232, + "id_str": "467816034465247232", + "text": "@zhuowei @mralext20 @m1sp I want to", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 467815858295697408, + "in_reply_to_status_id_str": "467815858295697408", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 17 23:53:01 +0000 2014", + "id": 467815081724891136, + "id_str": "467815081724891136", + "text": "@Tuplet DID YOU JUST CALL MY GRAPH TRIVIAL. http://t.co/dAHMI3VBR3", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 467812704498249729, + "in_reply_to_status_id_str": "467812704498249729", + "in_reply_to_user_id": 34310651, + "in_reply_to_user_id_str": "34310651", + "in_reply_to_screen_name": "Tuplet", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sat May 17 23:40:14 +0000 2014", + "id": 467811862974062592, + "id_str": "467811862974062592", + "text": "@Tuplet those tend to fall over and die on non-trivial graphs", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 467811625819721729, + "in_reply_to_status_id_str": "467811625819721729", + "in_reply_to_user_id": 34310651, + "in_reply_to_user_id_str": "34310651", + "in_reply_to_screen_name": "Tuplet", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 17 23:28:02 +0000 2014", + "id": 467808791917264896, + "id_str": "467808791917264896", + "text": "@Tuplet it's layout assistance, as in, I can drag nodes, arrows reflow, etc. Doing this totally manually would be impossible", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 467808389746393089, + "in_reply_to_status_id_str": "467808389746393089", + "in_reply_to_user_id": 34310651, + "in_reply_to_user_id_str": "34310651", + "in_reply_to_screen_name": "Tuplet", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 17 23:17:30 +0000 2014", + "id": 467806142362828800, + "id_str": "467806142362828800", + "text": "@m1sp heheh THIS IS ALL PERFECTLY CLEAR http://t.co/TpVn9UKYoa", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sat May 17 22:01:00 +0000 2014", + "id": 467786890545229824, + "id_str": "467786890545229824", + "text": "@maxtch please please please tell me you're joking.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 467785763770232832, + "in_reply_to_status_id_str": "467785763770232832", + "in_reply_to_user_id": 168408129, + "in_reply_to_user_id_str": "168408129", + "in_reply_to_screen_name": "maxtch", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 17 21:46:29 +0000 2014", + "id": 467783236647915520, + "id_str": "467783236647915520", + "text": "@chriseng the software is called mindmaple and I think it's something their distributor does", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 467783091206230016, + "in_reply_to_status_id_str": "467783091206230016", + "in_reply_to_user_id": 13752192, + "in_reply_to_user_id_str": "13752192", + "in_reply_to_screen_name": "chriseng", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 17 21:24:04 +0000 2014", + "id": 467777595690328064, + "id_str": "467777595690328064", + "text": "Did @soundcloud increase their pro prices in the past year or did I just not think that it sounded rather overpriced at the time", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 17 21:22:47 +0000 2014", + "id": 467777274603786240, + "id_str": "467777274603786240", + "text": ".@AlyssaRowan I already paid for the serial, and they're tempting me to crack it out of pure spite.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 467776969598586880, + "in_reply_to_status_id_str": "467776969598586880", + "in_reply_to_user_id": 2269606975, + "in_reply_to_user_id_str": "2269606975", + "in_reply_to_screen_name": "AlyssaRowan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 6, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 17 21:16:19 +0000 2014", + "id": 467775644303364096, + "id_str": "467775644303364096", + "text": "We disabled paste in the serial key entry box because we personally hate you #UIRage", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 21, + "favorite_count": 27, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 17 21:16:19 +0000 2014", + "id": 467775644303364096, + "id_str": "467775644303364096", + "text": "We disabled paste in the serial key entry box because we personally hate you #UIRage", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 21, + "favorite_count": 27, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 17 21:10:05 +0000 2014", + "id": 467774077235904512, + "id_str": "467774077235904512", + "text": "Well that's a new low in buying software: tacked on a $3 fee by default for them to store my serial number in my account with them", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 17 20:58:31 +0000 2014", + "id": 467771166917414912, + "id_str": "467771166917414912", + "text": "AUGH I left the app to twitter and came back and it just lost a bunch of my nodes! Augh! Augh! AUGH!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 17 20:55:53 +0000 2014", + "id": 467770502585405440, + "id_str": "467770502585405440", + "text": "@zauspar there’s a minor character Green Human who’s introduced in the first chapter of book 2 but they need to escape their life situation", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467769572804661248, + "in_reply_to_status_id_str": "467769572804661248", + "in_reply_to_user_id": 216571343, + "in_reply_to_user_id_str": "216571343", + "in_reply_to_screen_name": "zauspar", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 17 20:50:56 +0000 2014", + "id": 467769256063410176, + "id_str": "467769256063410176", + "text": "@zauspar yes there will be more green humans, including someone on that chart who’s currently pink or blue but changes in adulthood", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467768938483298304, + "in_reply_to_status_id_str": "467768938483298304", + "in_reply_to_user_id": 216571343, + "in_reply_to_user_id_str": "216571343", + "in_reply_to_screen_name": "zauspar", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 17 20:50:06 +0000 2014", + "id": 467769046696337408, + "id_str": "467769046696337408", + "text": "@zauspar no I LOVE bragging about my machinations ahahahaha", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467768938483298304, + "in_reply_to_status_id_str": "467768938483298304", + "in_reply_to_user_id": 216571343, + "in_reply_to_user_id_str": "216571343", + "in_reply_to_screen_name": "zauspar", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 17 20:47:55 +0000 2014", + "id": 467768497825517570, + "id_str": "467768497825517570", + "text": "@zauspar Evren and Chakori are the monster girls. Fem pronouns for sure but they don’t fit as cisfem", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467768175245799424, + "in_reply_to_status_id_str": "467768175245799424", + "in_reply_to_user_id": 216571343, + "in_reply_to_user_id_str": "216571343", + "in_reply_to_screen_name": "zauspar", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 17 20:46:23 +0000 2014", + "id": 467768110921953280, + "id_str": "467768110921953280", + "text": "@zauspar people I don’t feel appropriate to slot as cis, for various reasons.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467767767090077697, + "in_reply_to_status_id_str": "467767767090077697", + "in_reply_to_user_id": 216571343, + "in_reply_to_user_id_str": "216571343", + "in_reply_to_screen_name": "zauspar", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 17 20:44:50 +0000 2014", + "id": 467767722227412992, + "id_str": "467767722227412992", + "text": "RT @p_minten: Gender is to biology what datetime is to programming: something people think is simple, except those who have to deal with it…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sat May 17 10:10:19 +0000 2014", + "id": 467608040133656576, + "id_str": "467608040133656576", + "text": "Gender is to biology what datetime is to programming: something people think is simple, except those who have to deal with it in depth.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 1956224965, + "id_str": "1956224965" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 415, + "favorite_count": 299, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 415, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 17 20:44:00 +0000 2014", + "id": 467767511149473792, + "id_str": "467767511149473792", + "text": "About half done! http://t.co/x7Uidx4tPe", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sat May 17 20:02:15 +0000 2014", + "id": 467757007056146432, + "id_str": "467757007056146432", + "text": "@m1sp Evren is “winning” with ten enemy arrows", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 17 19:35:31 +0000 2014", + "id": 467750279056617472, + "id_str": "467750279056617472", + "text": "@m1sp I keep having to drag Rashk’s node wider to fit more arrows", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467749639051956225, + "in_reply_to_status_id_str": "467749639051956225", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 17 19:33:38 +0000 2014", + "id": 467749804122992640, + "id_str": "467749804122992640", + "text": "@m1sp haha yeah way to go Bars. But I haven’t added Oseni, Luzcrezo and Ismyrn yet", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467749639051956225, + "in_reply_to_status_id_str": "467749639051956225", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 17 19:33:07 +0000 2014", + "id": 467749673025814528, + "id_str": "467749673025814528", + "text": "@m1sp hmm, probably. :p though I think I mentally skipped it because he died so soon after their “alliance” fell apart", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467749323795492864, + "in_reply_to_status_id_str": "467749323795492864", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 17 19:29:36 +0000 2014", + "id": 467748790477144064, + "id_str": "467748790477144064", + "text": "@m1sp indeed. She tried REALLY hard too.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467748727319302144, + "in_reply_to_status_id_str": "467748727319302144", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 17 19:29:20 +0000 2014", + "id": 467748724249067520, + "id_str": "467748724249067520", + "text": "@mralext20 @m1sp still not up to a third of the characters who need to go on this", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467748542212087809, + "in_reply_to_status_id_str": "467748542212087809", + "in_reply_to_user_id": 905041434, + "in_reply_to_user_id_str": "905041434", + "in_reply_to_screen_name": "mralext20", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 17 19:27:44 +0000 2014", + "id": 467748318064283649, + "id_str": "467748318064283649", + "text": "@m1sp help http://t.co/uo7SdZMrJB", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 4, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Sat May 17 18:49:51 +0000 2014", + "id": 467738784746831873, + "id_str": "467738784746831873", + "text": "@gotyaoi the legend now says Enemies <—> Or Frenemies", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467716021458305024, + "in_reply_to_status_id_str": "467716021458305024", + "in_reply_to_user_id": 393022772, + "in_reply_to_user_id_str": "393022772", + "in_reply_to_screen_name": "gotyaoi", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 17 18:38:34 +0000 2014", + "id": 467735948701073409, + "id_str": "467735948701073409", + "text": "RT @beng: Worrying signs that the girl will be a javascript programmer. \"Sometimes, Daddy, 5 and 5 makes 55 and sometimes it makes 10.\"", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sat May 17 10:11:13 +0000 2014", + "id": 467608266353430528, + "id_str": "467608266353430528", + "text": "Worrying signs that the girl will be a javascript programmer. \"Sometimes, Daddy, 5 and 5 makes 55 and sometimes it makes 10.\"", + "source": "Twitter for Mac", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 817010, + "id_str": "817010" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2348, + "favorite_count": 1431, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 2348, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 17 17:48:32 +0000 2014", + "id": 467723356326735872, + "id_str": "467723356326735872", + "text": "@sakjur it should as far as I know", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 467723204736610304, + "in_reply_to_status_id_str": "467723204736610304", + "in_reply_to_user_id": 63478005, + "in_reply_to_user_id_str": "63478005", + "in_reply_to_screen_name": "sakjur", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 17 17:46:14 +0000 2014", + "id": 467722777760649216, + "id_str": "467722777760649216", + "text": "@m1sp now that I look at it like this, it becomes clear that pretty much all of Vlinder's relationships flip after she's artificed", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 17 17:41:44 +0000 2014", + "id": 467721643616632832, + "id_str": "467721643616632832", + "text": "RT @SummaryBug: http://t.co/g2cqYkYDGx", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sat May 17 11:21:07 +0000 2014", + "id": 467625857125588993, + "id_str": "467625857125588993", + "text": "http://t.co/g2cqYkYDGx", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2500805586, + "id_str": "2500805586" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 24, + "favorite_count": 32, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ], + "media": [ + { + "id": 467625854722265089, + "id_str": "467625854722265089", + "indices": [ + 0, + 22 + ], + "media_url": "http://pbs.twimg.com/media/Bn1XPL6CUAECWiK.jpg", + "media_url_https": "https://pbs.twimg.com/media/Bn1XPL6CUAECWiK.jpg", + "url": "http://t.co/g2cqYkYDGx", + "display_url": "pic.twitter.com/g2cqYkYDGx", + "expanded_url": "http://twitter.com/SummaryBug/status/467625857125588993/photo/1", + "type": "photo", + "sizes": { + "medium": { + "w": 600, + "h": 338, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 191, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 1024, + "h": 576, + "resize": "fit" + } + } + } + ] + }, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + "retweet_count": 24, + "favorite_count": 0, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Sat May 17 17:39:10 +0000 2014", + "id": 467720999190806528, + "id_str": "467720999190806528", + "text": "@m1sp I think Solornel needs to re-evaluate what names he calls Rashk http://t.co/FxpIt9YuwE", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sat May 17 17:28:19 +0000 2014", + "id": 467718268208570368, + "id_str": "467718268208570368", + "text": "@TakoArishi @m1sp do you mean a tie-in game? Well I need to do SOMETHING with this 8-bit soundtrack", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 467716451496116225, + "in_reply_to_status_id_str": "467716451496116225", + "in_reply_to_user_id": 22107482, + "in_reply_to_user_id_str": "22107482", + "in_reply_to_screen_name": "TakoArishi", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 17 17:21:39 +0000 2014", + "id": 467716589660700673, + "id_str": "467716589660700673", + "text": "@m1sp @gotyaoi so what I really need is the ability to have striped arrows!", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 467716397653454848, + "in_reply_to_status_id_str": "467716397653454848", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 17 17:20:19 +0000 2014", + "id": 467716253214580737, + "id_str": "467716253214580737", + "text": "@gotyaoi I'm sure Tsovinar and Ziazan will make up at some point. Little late to make up with Solornel.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 467715496649838594, + "in_reply_to_status_id_str": "467715496649838594", + "in_reply_to_user_id": 393022772, + "in_reply_to_user_id_str": "393022772", + "in_reply_to_screen_name": "gotyaoi", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 17 17:19:02 +0000 2014", + "id": 467715933306245120, + "id_str": "467715933306245120", + "text": "@TakoArishi @m1sp so if you zoom out one will see that the red border of death fits around any gender", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 467715620155686913, + "in_reply_to_status_id_str": "467715620155686913", + "in_reply_to_user_id": 22107482, + "in_reply_to_user_id_str": "22107482", + "in_reply_to_screen_name": "TakoArishi", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 17 17:18:08 +0000 2014", + "id": 467715703920132097, + "id_str": "467715703920132097", + "text": "@gotyaoi I didn't want to add another color for \"you know if they could just stop fighting about stupid stuff for ten seconds\"", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 467715496649838594, + "in_reply_to_status_id_str": "467715496649838594", + "in_reply_to_user_id": 393022772, + "in_reply_to_user_id_str": "393022772", + "in_reply_to_screen_name": "gotyaoi", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 17 17:15:38 +0000 2014", + "id": 467715077370429440, + "id_str": "467715077370429440", + "text": "@demize95 yep", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 467714852388343809, + "in_reply_to_status_id_str": "467714852388343809", + "in_reply_to_user_id": 137133048, + "in_reply_to_user_id_str": "137133048", + "in_reply_to_screen_name": "demize95", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Sat May 17 17:14:09 +0000 2014", + "id": 467714703636955137, + "id_str": "467714703636955137", + "text": "@demize95 http://t.co/pyHqvnUkle", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 467714456332808194, + "in_reply_to_status_id_str": "467714456332808194", + "in_reply_to_user_id": 137133048, + "in_reply_to_user_id_str": "137133048", + "in_reply_to_screen_name": "demize95", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Sat May 17 17:13:21 +0000 2014", + "id": 467714502625337344, + "id_str": "467714502625337344", + "text": "@m1sp Erasmin gets both an incoming and an outgoing metaphysical problem node because she's just that special", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 467714020623912960, + "in_reply_to_status_id_str": "467714020623912960", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 17 17:12:51 +0000 2014", + "id": 467714373889572864, + "id_str": "467714373889572864", + "text": "@demize95 yep. Might have something to do with it being for http://t.co/gUEznnqXd3?", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 467713813807394817, + "in_reply_to_status_id_str": "467713813807394817", + "in_reply_to_user_id": 137133048, + "in_reply_to_user_id_str": "137133048", + "in_reply_to_screen_name": "demize95", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sat May 17 17:11:08 +0000 2014", + "id": 467713944866418688, + "id_str": "467713944866418688", + "text": "@demize95 let me dig it out of my bag…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467713813807394817, + "in_reply_to_status_id_str": "467713813807394817", + "in_reply_to_user_id": 137133048, + "in_reply_to_user_id_str": "137133048", + "in_reply_to_screen_name": "demize95", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 17 17:10:29 +0000 2014", + "id": 467713781330481152, + "id_str": "467713781330481152", + "text": "@m1sp http://t.co/QLiD041nYG", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467712760780840960, + "in_reply_to_status_id_str": "467712760780840960", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Sat May 17 17:10:04 +0000 2014", + "id": 467713677081063424, + "id_str": "467713677081063424", + "text": "@demize95 primarily that and iPad but other operating systems are available", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467713393747853313, + "in_reply_to_status_id_str": "467713393747853313", + "in_reply_to_user_id": 137133048, + "in_reply_to_user_id_str": "137133048", + "in_reply_to_screen_name": "demize95", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 17 17:05:51 +0000 2014", + "id": 467712614483906560, + "id_str": "467712614483906560", + "text": "@m1sp “friends”", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467712554093912064, + "in_reply_to_status_id_str": "467712554093912064", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "da" + }, + { + "created_at": "Sat May 17 17:05:35 +0000 2014", + "id": 467712545101733888, + "id_str": "467712545101733888", + "text": "@m1sp should I add another arrow color for “these two characters are sort of the same person”? XD", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467711649030238209, + "in_reply_to_status_id_str": "467711649030238209", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 17 17:02:53 +0000 2014", + "id": 467711867725807616, + "id_str": "467711867725807616", + "text": "@m1sp isn’t it sad that Tsovinar’s only double ended friendship arrow is with a dead person.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467711649030238209, + "in_reply_to_status_id_str": "467711649030238209", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 17 17:01:43 +0000 2014", + "id": 467711573977337856, + "id_str": "467711573977337856", + "text": "@m1sp you’ll note however that the purple arrow between Shanlar and Tsovinar is decidedly one-way :]", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467710755777675264, + "in_reply_to_status_id_str": "467710755777675264", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 17 17:00:09 +0000 2014", + "id": 467711180510101504, + "id_str": "467711180510101504", + "text": "@m1sp I mean what’s the point of a vow of abstinence if we don’t throw him a hardball", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467710755777675264, + "in_reply_to_status_id_str": "467710755777675264", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 17 16:59:37 +0000 2014", + "id": 467711046984011776, + "id_str": "467711046984011776", + "text": "@m1sp he experienced physical attraction towards her, yes, and she experiences physical attraction to… pretty much everyone cute", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467710755777675264, + "in_reply_to_status_id_str": "467710755777675264", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 17 16:57:17 +0000 2014", + "id": 467710457323606017, + "id_str": "467710457323606017", + "text": "Up to one seventh of the cast. I fear I may be depleting the world’s arrow supply. http://t.co/s6QcWWrPEu", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 4, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sat May 17 16:22:00 +0000 2014", + "id": 467701578695069697, + "id_str": "467701578695069697", + "text": "@attritionorg I apologize for the problems caused by being faux antagonistic in jest in front of too large an audience", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467700975038242817, + "in_reply_to_status_id_str": "467700975038242817", + "in_reply_to_user_id": 32625798, + "in_reply_to_user_id_str": "32625798", + "in_reply_to_screen_name": "attritionorg", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 17 16:07:06 +0000 2014", + "id": 467697829754847233, + "id_str": "467697829754847233", + "text": "@m1sp @Talen_Lee no experienced* programmer", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467685748460621824, + "in_reply_to_status_id_str": "467685748460621824", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 17 16:03:13 +0000 2014", + "id": 467696852373364736, + "id_str": "467696852373364736", + "text": "@aspects_ebooks this is another repeat", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467664799581888512, + "in_reply_to_status_id_str": "467664799581888512", + "in_reply_to_user_id": 2345404375, + "in_reply_to_user_id_str": "2345404375", + "in_reply_to_screen_name": "aspects_ebooks", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 17 15:49:59 +0000 2014", + "id": 467693521307049984, + "id_str": "467693521307049984", + "text": "@demize95 https://t.co/mLL76wjQso", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467691202641690624, + "in_reply_to_status_id_str": "467691202641690624", + "in_reply_to_user_id": 137133048, + "in_reply_to_user_id_str": "137133048", + "in_reply_to_screen_name": "demize95", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "quoted_status_id": 467521277343694849, + "quoted_status_id_str": "467521277343694849", + "quoted_status": { + "created_at": "Sat May 17 04:25:33 +0000 2014", + "id": 467521277343694849, + "id_str": "467521277343694849", + "text": "(Drawing the graph without automated layout assistance is completely out of the question)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 2, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Sat May 17 06:14:45 +0000 2014", + "id": 467548760772313090, + "id_str": "467548760772313090", + "text": "@m1sp I think Graph Theory may not be strong enough to handle Aspects. http://t.co/wLE2u5schk", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sat May 17 05:43:59 +0000 2014", + "id": 467541017533501441, + "id_str": "467541017533501441", + "text": "@TonyYarusso @rantyben I didn’t take it as a joke, I took it as a condemnation of the GUI lifestyle", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467538694434353152, + "in_reply_to_status_id_str": "467538694434353152", + "in_reply_to_user_id": 11742922, + "in_reply_to_user_id_str": "11742922", + "in_reply_to_screen_name": "TonyYarusso", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 17 05:38:24 +0000 2014", + "id": 467539612408086528, + "id_str": "467539612408086528", + "text": "@Talen_Lee :(", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467538257874407424, + "in_reply_to_status_id_str": "467538257874407424", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Sat May 17 05:32:37 +0000 2014", + "id": 467538153981489152, + "id_str": "467538153981489152", + "text": "@Talen_Lee which… which did you have in mind", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467535703618764801, + "in_reply_to_status_id_str": "467535703618764801", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 17 05:08:26 +0000 2014", + "id": 467532070819213312, + "id_str": "467532070819213312", + "text": "@focalintent this is what I want http://t.co/TP30DE0150", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467531436384202752, + "in_reply_to_status_id_str": "467531436384202752", + "in_reply_to_user_id": 8034552, + "in_reply_to_user_id_str": "8034552", + "in_reply_to_screen_name": "focalintent", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sat May 17 05:04:08 +0000 2014", + "id": 467530986428067840, + "id_str": "467530986428067840", + "text": "@itdaniher I’m trying to map many to many interpersonal relationships of different types between about 70 people", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467530770542641152, + "in_reply_to_status_id_str": "467530770542641152", + "in_reply_to_user_id": 16710819, + "in_reply_to_user_id_str": "16710819", + "in_reply_to_screen_name": "itdaniher", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 17 04:58:10 +0000 2014", + "id": 467529487379607552, + "id_str": "467529487379607552", + "text": "@itdaniher this is the effect I’m going for but it seems to be a JavaScript library that expects someone to write an app on top of it…?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467523584551055360, + "in_reply_to_status_id_str": "467523584551055360", + "in_reply_to_user_id": 16710819, + "in_reply_to_user_id_str": "16710819", + "in_reply_to_screen_name": "itdaniher", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 17 04:55:19 +0000 2014", + "id": 467528769779924992, + "id_str": "467528769779924992", + "text": "@isaackarth I’m not mapping minds, but I don’t know how else to express I’m not looking for Powerpoint’s boxes and arrows menu.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467525881192521728, + "in_reply_to_status_id_str": "467525881192521728", + "in_reply_to_user_id": 23019013, + "in_reply_to_user_id_str": "23019013", + "in_reply_to_screen_name": "isaackarth", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 17 04:25:33 +0000 2014", + "id": 467521277343694849, + "id_str": "467521277343694849", + "text": "(Drawing the graph without automated layout assistance is completely out of the question)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 17 04:24:42 +0000 2014", + "id": 467521063748771840, + "id_str": "467521063748771840", + "text": "Does anyone know a mind mapping type software with — this is completely mandatory — support for *colored* and *directional* connectors", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 17 04:17:03 +0000 2014", + "id": 467519139758628865, + "id_str": "467519139758628865", + "text": "@ErrataRob @Packetknife energy vs experience battle go", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467517891441487872, + "in_reply_to_status_id_str": "467517891441487872", + "in_reply_to_user_id": 15300995, + "in_reply_to_user_id_str": "15300995", + "in_reply_to_screen_name": "ErrataRob", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 17 04:03:37 +0000 2014", + "id": 467515757203435520, + "id_str": "467515757203435520", + "text": "@Packetknife you were the one complaining the other day that I keep stomping on it", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467515598478774276, + "in_reply_to_status_id_str": "467515598478774276", + "in_reply_to_user_id": 19564254, + "in_reply_to_user_id_str": "19564254", + "in_reply_to_screen_name": "Packetknife", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 17 04:00:54 +0000 2014", + "id": 467515076593717248, + "id_str": "467515076593717248", + "text": "@eevee fwiw since you “respond to any pronoun” I mentally slot you into the “lil cutie boy” gender with @m1sp I hope that’s okay", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467513239165607937, + "in_reply_to_status_id_str": "467513239165607937", + "in_reply_to_user_id": 14412937, + "in_reply_to_user_id_str": "14412937", + "in_reply_to_screen_name": "eevee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 6, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 17 03:58:24 +0000 2014", + "id": 467514447574343680, + "id_str": "467514447574343680", + "text": "@Packetknife the context is your ego… I mighta damaged it sorry", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467513950293491713, + "in_reply_to_status_id_str": "467513950293491713", + "in_reply_to_user_id": 19564254, + "in_reply_to_user_id_str": "19564254", + "in_reply_to_screen_name": "Packetknife", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 17 03:50:13 +0000 2014", + "id": 467512387734495233, + "id_str": "467512387734495233", + "text": "@eevee oh wait that’s terrible and they’re defining healthy as being cismale and sexually active for no apparent reason ಠ_ಠ", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 14412937, + "in_reply_to_user_id_str": "14412937", + "in_reply_to_screen_name": "eevee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 17 03:48:31 +0000 2014", + "id": 467511958028046337, + "id_str": "467511958028046337", + "text": "@eevee really digging your anon; imagine how many problems we could solve by forcing medicated pseudo-neurotypicality on people!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 14412937, + "in_reply_to_user_id_str": "14412937", + "in_reply_to_screen_name": "eevee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 17 03:10:31 +0000 2014", + "id": 467502393731461120, + "id_str": "467502393731461120", + "text": ".@Talen_Lee @demize95 @zhuowei y’all do realize I min-maxed my Hacker and Common Sense stats", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467502103863115776, + "in_reply_to_status_id_str": "467502103863115776", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 7, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 17 02:51:38 +0000 2014", + "id": 467497644911493122, + "id_str": "467497644911493122", + "text": "RT @zhuowei: @0xabad1dea You probably also plug in USB drives you find in parking lots.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sat May 17 02:51:30 +0000 2014", + "id": 467497608324198400, + "id_str": "467497608324198400", + "text": "@0xabad1dea You probably also plug in USB drives you find in parking lots.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 467497466510991360, + "in_reply_to_status_id_str": "467497466510991360", + "in_reply_to_user_id": 126030998, + "in_reply_to_user_id_str": "126030998", + "in_reply_to_screen_name": "0xabad1dea", + "user": { + "id": 383083538, + "id_str": "383083538" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 5, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "0xabad1dea", + "name": "Melissa ⚠", + "id": 126030998, + "id_str": "126030998", + "indices": [ + 0, + 11 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 1, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 17 02:51:32 +0000 2014", + "id": 467497619913449472, + "id_str": "467497619913449472", + "text": "@zhuowei @attritionorg there was also a plastic dinosaur, rubber bands, glitter…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467497387347296256, + "in_reply_to_status_id_str": "467497387347296256", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 17 02:50:56 +0000 2014", + "id": 467497466510991360, + "id_str": "467497466510991360", + "text": "And, being foolish and trusting, I actually touched it without gloves.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 17 02:49:56 +0000 2014", + "id": 467497215296942080, + "id_str": "467497215296942080", + "text": "If I ever die of a really weird illness, I remind the public that @attritionorg once mailed me an unwrapped, possibly used hypodermic needle", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 17 02:46:20 +0000 2014", + "id": 467496308538736640, + "id_str": "467496308538736640", + "text": "@attritionorg @spacerog to my recollection I was just minding my business and then Coworker wanted to know who was mailing me used needles", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467495743352487936, + "in_reply_to_status_id_str": "467495743352487936", + "in_reply_to_user_id": 32625798, + "in_reply_to_user_id_str": "32625798", + "in_reply_to_screen_name": "attritionorg", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 17 02:43:17 +0000 2014", + "id": 467495543263227904, + "id_str": "467495543263227904", + "text": "@spacerog @attritionorg man that stuff just showed UP, I didn’t know I was supposed to blog in great detail.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467495172440223745, + "in_reply_to_status_id_str": "467495172440223745", + "in_reply_to_user_id": 14133061, + "in_reply_to_user_id_str": "14133061", + "in_reply_to_screen_name": "spacerog", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 17 02:21:11 +0000 2014", + "id": 467489978730438656, + "id_str": "467489978730438656", + "text": "RT @SwiftOnSecurity: I'm sick of the tech world just assuming that everyone is male. http://t.co/HUJOffo8Ev", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Mon May 12 22:01:08 +0000 2014", + "id": 465974984524181504, + "id_str": "465974984524181504", + "text": "I'm sick of the tech world just assuming that everyone is male. http://t.co/HUJOffo8Ev", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2436389418, + "id_str": "2436389418" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 37, + "favorite_count": 30, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ], + "media": [ + { + "id": 465974983991107584, + "id_str": "465974983991107584", + "indices": [ + 64, + 86 + ], + "media_url": "http://pbs.twimg.com/media/Bnd5x3MCIAAuTTZ.png", + "media_url_https": "https://pbs.twimg.com/media/Bnd5x3MCIAAuTTZ.png", + "url": "http://t.co/HUJOffo8Ev", + "display_url": "pic.twitter.com/HUJOffo8Ev", + "expanded_url": "http://twitter.com/SwiftOnSecurity/status/465974984524181504/photo/1", + "type": "photo", + "sizes": { + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 415, + "h": 329, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 270, + "resize": "fit" + }, + "medium": { + "w": 415, + "h": 329, + "resize": "fit" + } + } + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 37, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sat May 17 02:04:25 +0000 2014", + "id": 467485762758656000, + "id_str": "467485762758656000", + "text": "@spacerog I’m not really healthy enough to walk all the way up a mountain; looks like I’m going to Lost River on Sunday.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467485527927574528, + "in_reply_to_status_id_str": "467485527927574528", + "in_reply_to_user_id": 14133061, + "in_reply_to_user_id_str": "14133061", + "in_reply_to_screen_name": "spacerog", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 17 02:02:05 +0000 2014", + "id": 467485172934647810, + "id_str": "467485172934647810", + "text": "@Kufat paging Doctor Pallas Cat for an expert opinion @sergeybratus", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467484958844813312, + "in_reply_to_status_id_str": "467484958844813312", + "in_reply_to_user_id": 207691003, + "in_reply_to_user_id_str": "207691003", + "in_reply_to_screen_name": "Kufat", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 17 02:00:12 +0000 2014", + "id": 467484698214559745, + "id_str": "467484698214559745", + "text": "@ELLIOTTCABLE ☺️", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467484486469300225, + "in_reply_to_status_id_str": "467484486469300225", + "in_reply_to_user_id": 771681, + "in_reply_to_user_id_str": "771681", + "in_reply_to_screen_name": "ELLIOTTCABLE", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Sat May 17 02:00:02 +0000 2014", + "id": 467484655659151360, + "id_str": "467484655659151360", + "text": "RT @ELLIOTTCABLE: In honor of @0xabad1dea: https://t.co/0oLr9H3CJS\n\nBreak things.™", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sat May 17 01:59:21 +0000 2014", + "id": 467484486469300225, + "id_str": "467484486469300225", + "text": "In honor of @0xabad1dea: https://t.co/0oLr9H3CJS\n\nBreak things.™", + "source": "Twitter for Mac", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 771681, + "id_str": "771681" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "quoted_status_id": 467484195649228801, + "quoted_status_id_str": "467484195649228801", + "retweet_count": 3, + "favorite_count": 1, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "https://t.co/0oLr9H3CJS", + "expanded_url": "https://twitter.com/swooshycueb/status/467484195649228801", + "display_url": "twitter.com/swooshycueb/st…", + "indices": [ + 25, + 48 + ] + } + ], + "user_mentions": [ + { + "screen_name": "0xabad1dea", + "name": "Melissa", + "id": 126030998, + "id_str": "126030998", + "indices": [ + 12, + 23 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 3, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sat May 17 01:42:18 +0000 2014", + "id": 467480196220596225, + "id_str": "467480196220596225", + "text": "Re: mountains: it looks like tomorrow will be rainy but Sunday will not; I’ll drag my vampiric husband out beneath the day star then.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 17 01:28:44 +0000 2014", + "id": 467476779675156480, + "id_str": "467476779675156480", + "text": "@ClaudioDekker way to judge :\\", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467476208868130817, + "in_reply_to_status_id_str": "467476208868130817", + "in_reply_to_user_id": 78721809, + "in_reply_to_user_id_str": "78721809", + "in_reply_to_screen_name": "ClaudioDekker", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 17 01:01:21 +0000 2014", + "id": 467469891230920704, + "id_str": "467469891230920704", + "text": "@tqbf @geekable @dakami from my point of view it’s like mommy and daddy are fighting on twitter \n\nNo opinion for which is which", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467469613911900161, + "in_reply_to_status_id_str": "467469613911900161", + "in_reply_to_user_id": 9395312, + "in_reply_to_user_id_str": "9395312", + "in_reply_to_screen_name": "tqbf", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 5, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 17 01:00:05 +0000 2014", + "id": 467469570895122432, + "id_str": "467469570895122432", + "text": ".@mrjuj my gaming rig IS a laptop. One COULD get about an hour in of Skyrim In Mountains.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467469372093526016, + "in_reply_to_status_id_str": "467469372093526016", + "in_reply_to_user_id": 41940570, + "in_reply_to_user_id_str": "41940570", + "in_reply_to_screen_name": "mrjuj", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 17 00:59:08 +0000 2014", + "id": 467469332243419136, + "id_str": "467469332243419136", + "text": "@vogon I would say that’s right to sexual consent regardless", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467469078957809664, + "in_reply_to_status_id_str": "467469078957809664", + "in_reply_to_user_id": 6326912, + "in_reply_to_user_id_str": "6326912", + "in_reply_to_screen_name": "vogon", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 17 00:57:39 +0000 2014", + "id": 467468959323676672, + "id_str": "467468959323676672", + "text": "@DoktorJeep nothing but", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467468877052387328, + "in_reply_to_status_id_str": "467468877052387328", + "in_reply_to_user_id": 135258477, + "in_reply_to_user_id_str": "135258477", + "in_reply_to_screen_name": "DoktorJeep", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 17 00:56:52 +0000 2014", + "id": 467468762212728832, + "id_str": "467468762212728832", + "text": "I could take a day trip to the mountains tomorrow… or I could play Skyrim", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 7, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 17 00:50:06 +0000 2014", + "id": 467467058309906432, + "id_str": "467467058309906432", + "text": "@_larry0 yeah that’s one of the corner cases >.> but pretty sure it predates iOS 7", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467466934083022848, + "in_reply_to_status_id_str": "467466934083022848", + "in_reply_to_user_id": 17055552, + "in_reply_to_user_id_str": "17055552", + "in_reply_to_screen_name": "_larry0", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 17 00:49:04 +0000 2014", + "id": 467466798158200833, + "id_str": "467466798158200833", + "text": "@_larry0 was it a .txt type page?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467466690817568768, + "in_reply_to_status_id_str": "467466690817568768", + "in_reply_to_user_id": 17055552, + "in_reply_to_user_id_str": "17055552", + "in_reply_to_screen_name": "_larry0", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "tl" + }, + { + "created_at": "Sat May 17 00:48:24 +0000 2014", + "id": 467466630247632896, + "id_str": "467466630247632896", + "text": "I just saw the word FACE in all caps in a narrative and interpreted it as a hexadecimal token", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 5, + "favorite_count": 16, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 17 00:47:04 +0000 2014", + "id": 467466294544330753, + "id_str": "467466294544330753", + "text": "@_larry0 not in general, but there are certain specific corner cases where it is known to be useless", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467465180956618754, + "in_reply_to_status_id_str": "467465180956618754", + "in_reply_to_user_id": 17055552, + "in_reply_to_user_id_str": "17055552", + "in_reply_to_screen_name": "_larry0", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 17 00:14:47 +0000 2014", + "id": 467458168881029120, + "id_str": "467458168881029120", + "text": "@acfrazier I am aware he is private, but the reply itself is standalone in the context of Verizon and warrants.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467457788671975425, + "in_reply_to_status_id_str": "467457788671975425", + "in_reply_to_user_id": 214222992, + "in_reply_to_user_id_str": "214222992", + "in_reply_to_screen_name": "acfrazier", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 17 00:10:29 +0000 2014", + "id": 467457087916605440, + "id_str": "467457087916605440", + "text": "It’s one thing when someone doesn’t read the FAQ. But being unable to *locate* the large block of text beneath the video is the next tier", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 16 23:54:09 +0000 2014", + "id": 467452978920964096, + "id_str": "467452978920964096", + "text": "@ELLIOTTCABLE @_yossi_ literally ⛔️ stop", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467452746430296065, + "in_reply_to_status_id_str": "467452746430296065", + "in_reply_to_user_id": 771681, + "in_reply_to_user_id_str": "771681", + "in_reply_to_screen_name": "ELLIOTTCABLE", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 16 23:53:19 +0000 2014", + "id": 467452769494777856, + "id_str": "467452769494777856", + "text": "@aspects_ebooks you already did this one", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467451525141655554, + "in_reply_to_status_id_str": "467451525141655554", + "in_reply_to_user_id": 2345404375, + "in_reply_to_user_id_str": "2345404375", + "in_reply_to_screen_name": "aspects_ebooks", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 16 23:52:44 +0000 2014", + "id": 467452621284835328, + "id_str": "467452621284835328", + "text": "@_yossi_ @ELLIOTTCABLE I’m pretty sure literally everyone does unicode wrong", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467452101791318016, + "in_reply_to_status_id_str": "467452101791318016", + "in_reply_to_user_id": 14330235, + "in_reply_to_user_id_str": "14330235", + "in_reply_to_screen_name": "_yossi_", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 16 23:40:58 +0000 2014", + "id": 467449659095810048, + "id_str": "467449659095810048", + "text": ".@ELLIOTTCABLE you sunk my tweetbot battleship http://t.co/1BJJSMIaC0", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467448641829883904, + "in_reply_to_status_id_str": "467448641829883904", + "in_reply_to_user_id": 771681, + "in_reply_to_user_id_str": "771681", + "in_reply_to_screen_name": "ELLIOTTCABLE", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 4, + "favorite_count": 9, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri May 16 23:39:52 +0000 2014", + "id": 467449385375506432, + "id_str": "467449385375506432", + "text": "RT @ELLIOTTCABLE: Sorry, @twitter. Sanitize your Unicode.\n\nhttps://t.co/ztLYXLB4gg\nhttps://t.co/UzyJRsMTsN\nhttps://t.co/SGBGiryaIm\nhttps://…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Fri May 16 23:36:55 +0000 2014", + "id": 467448641829883904, + "id_str": "467448641829883904", + "text": "Sorry, @twitter. Sanitize your Unicode.\n\nhttps://t.co/ztLYXLB4gg\nhttps://t.co/UzyJRsMTsN\nhttps://t.co/SGBGiryaIm\nhttps://t.co/CiaesFhRCT", + "source": "Twitter for Mac", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 771681, + "id_str": "771681" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "quoted_status_id": 467446906176548864, + "quoted_status_id_str": "467446906176548864", + "retweet_count": 24, + "favorite_count": 20, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "https://t.co/ztLYXLB4gg", + "expanded_url": "https://twitter.com/erisdev/status/467356840435912704", + "display_url": "twitter.com/erisdev/status…", + "indices": [ + 41, + 64 + ] + }, + { + "url": "https://t.co/UzyJRsMTsN", + "expanded_url": "https://twitter.com/kunalbhat/status/467445920955891712", + "display_url": "twitter.com/kunalbhat/stat…", + "indices": [ + 65, + 88 + ] + }, + { + "url": "https://t.co/SGBGiryaIm", + "expanded_url": "https://twitter.com/kunalbhat/status/467446491259625472", + "display_url": "twitter.com/kunalbhat/stat…", + "indices": [ + 89, + 112 + ] + }, + { + "url": "https://t.co/CiaesFhRCT", + "expanded_url": "https://twitter.com/kkrewink/status/467446906176548864", + "display_url": "twitter.com/kkrewink/statu…", + "indices": [ + 113, + 136 + ] + } + ], + "user_mentions": [ + { + "screen_name": "twitter", + "name": "Twitter", + "id": 783214, + "id_str": "783214", + "indices": [ + 7, + 15 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 24, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri May 16 23:32:20 +0000 2014", + "id": 467447489591644160, + "id_str": "467447489591644160", + "text": "@zhuowei @m1sp he already knew, before reading, that Nisrai goes killer grandma on Barsamin", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467447228609478656, + "in_reply_to_status_id_str": "467447228609478656", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 16 23:23:06 +0000 2014", + "id": 467445164907458561, + "id_str": "467445164907458561", + "text": "RT @ELLIOTTCABLE: next up, available-domain-name-poetry.\n\nhttp://t.co/anvf2iCNdp http://t.co/HOvcMf98U9 http://t.co/x6aNxyCHw3's http://t.c…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Fri May 16 23:22:21 +0000 2014", + "id": 467444974364024832, + "id_str": "467444974364024832", + "text": "next up, available-domain-name-poetry.\n\nhttp://t.co/anvf2iCNdp http://t.co/HOvcMf98U9 http://t.co/x6aNxyCHw3's http://t.co/gLe6UDWsoU, …", + "source": "Twitter for Mac", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 771681, + "id_str": "771681" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 5, + "favorite_count": 6, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/anvf2iCNdp", + "expanded_url": "http://lea.ky", + "display_url": "lea.ky", + "indices": [ + 40, + 62 + ] + }, + { + "url": "http://t.co/HOvcMf98U9", + "expanded_url": "http://les.bo", + "display_url": "les.bo", + "indices": [ + 63, + 85 + ] + }, + { + "url": "http://t.co/x6aNxyCHw3", + "expanded_url": "http://Lor.na", + "display_url": "Lor.na", + "indices": [ + 86, + 108 + ] + }, + { + "url": "http://t.co/gLe6UDWsoU", + "expanded_url": "http://lim.bs", + "display_url": "lim.bs", + "indices": [ + 111, + 133 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 5, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri May 16 23:10:51 +0000 2014", + "id": 467442080672133120, + "id_str": "467442080672133120", + "text": ".@grp yeah, I promise I haven’t forgotten about the Verizon Business phone metadata being shipped off wholesale.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467441502721822721, + "in_reply_to_status_id_str": "467441502721822721", + "in_reply_to_user_id": 69459178, + "in_reply_to_user_id_str": "69459178", + "in_reply_to_screen_name": "grp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 16 23:09:34 +0000 2014", + "id": 467441757035057155, + "id_str": "467441757035057155", + "text": "@jb33z snapchat", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467441539330097153, + "in_reply_to_status_id_str": "467441539330097153", + "in_reply_to_user_id": 128643572, + "in_reply_to_user_id_str": "128643572", + "in_reply_to_screen_name": "jb33z", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "nl" + }, + { + "created_at": "Fri May 16 23:09:20 +0000 2014", + "id": 467441700118335488, + "id_str": "467441700118335488", + "text": "@DarrenPMeyer in my case, I did have a choice between precisely these two companies, but not for identical service tiers", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467441483545468928, + "in_reply_to_status_id_str": "467441483545468928", + "in_reply_to_user_id": 468928589, + "in_reply_to_user_id_str": "468928589", + "in_reply_to_screen_name": "DarrenPMeyer", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 16 23:05:25 +0000 2014", + "id": 467440713224183808, + "id_str": "467440713224183808", + "text": "If I had to pick, the most important star on that chart is “requires a warrant,” which my ISP (Verizon) apparently does and Comcast doesn’t", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 4, + "favorite_count": 5, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 16 22:58:53 +0000 2014", + "id": 467439070734729216, + "id_str": "467439070734729216", + "text": "@grp amen", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467438967084687360, + "in_reply_to_status_id_str": "467438967084687360", + "in_reply_to_user_id": 69459178, + "in_reply_to_user_id_str": "69459178", + "in_reply_to_screen_name": "grp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Fri May 16 22:58:14 +0000 2014", + "id": 467438906820919296, + "id_str": "467438906820919296", + "text": "@thegrugq 3.5 negastars", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467438571029135360, + "in_reply_to_status_id_str": "467438571029135360", + "in_reply_to_user_id": 18983429, + "in_reply_to_user_id_str": "18983429", + "in_reply_to_screen_name": "thegrugq", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "sl" + }, + { + "created_at": "Fri May 16 22:55:03 +0000 2014", + "id": 467438103322693632, + "id_str": "467438103322693632", + "text": "I like how on the EFF’s (highly simplified) chart, only Snapchat managed to score 1 star. Even Pinterest is at 5 http://t.co/95KymWCdJ0", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 42, + "favorite_count": 19, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri May 16 22:49:59 +0000 2014", + "id": 467436829340209152, + "id_str": "467436829340209152", + "text": "@jrothwell @Edgemaster make sure you check the date… to my recollection this ended with “I’m wrong and I’m sorry”", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467436512981037056, + "in_reply_to_status_id_str": "467436512981037056", + "in_reply_to_user_id": 13966122, + "in_reply_to_user_id_str": "13966122", + "in_reply_to_screen_name": "jrothwell", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 16 22:29:50 +0000 2014", + "id": 467431760578760704, + "id_str": "467431760578760704", + "text": "@michaelossmann @hackerfantastic I hate #4.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467126589340127232, + "in_reply_to_status_id_str": "467126589340127232", + "in_reply_to_user_id": 245547167, + "in_reply_to_user_id_str": "245547167", + "in_reply_to_screen_name": "michaelossmann", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 16 22:22:09 +0000 2014", + "id": 467429825498861569, + "id_str": "467429825498861569", + "text": "RT @thegrugq: How to rob a bank in the digital era? Hold up the website. http://t.co/kM6w37khYV", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Fri May 16 22:21:58 +0000 2014", + "id": 467429778459340802, + "id_str": "467429778459340802", + "text": "How to rob a bank in the digital era? Hold up the website. http://t.co/kM6w37khYV", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 18983429, + "id_str": "18983429" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 51, + "favorite_count": 34, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ], + "media": [ + { + "id": 467429778337718272, + "id_str": "467429778337718272", + "indices": [ + 59, + 81 + ], + "media_url": "http://pbs.twimg.com/media/Bnyk6CdCYAA8pKg.jpg", + "media_url_https": "https://pbs.twimg.com/media/Bnyk6CdCYAA8pKg.jpg", + "url": "http://t.co/kM6w37khYV", + "display_url": "pic.twitter.com/kM6w37khYV", + "expanded_url": "http://twitter.com/thegrugq/status/467429778459340802/photo/1", + "type": "photo", + "sizes": { + "medium": { + "w": 600, + "h": 338, + "resize": "fit" + }, + "large": { + "w": 640, + "h": 360, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 191, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + } + } + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 51, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri May 16 22:21:51 +0000 2014", + "id": 467429750768943105, + "id_str": "467429750768943105", + "text": "@m1sp Oh, and, “well I see now, that makes Rosi’s nana sound less nuts”", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 16 22:20:40 +0000 2014", + "id": 467429450930733056, + "id_str": "467429450930733056", + "text": "@m1sp Husband finally read GitT. He has no comment except he likes Aramaz and Vahagn, apparently. The man is a danger.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 16 21:38:16 +0000 2014", + "id": 467418783020482560, + "id_str": "467418783020482560", + "text": "\"So many weddings\" — the lament of the mid-20s college graduate", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 5, + "favorite_count": 12, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 16 21:15:21 +0000 2014", + "id": 467413012803239936, + "id_str": "467413012803239936", + "text": "RT @JahKob: \"Its all fun and games until @notch retweets you.\" \n-Ancient wisdom", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Fri May 16 21:13:59 +0000 2014", + "id": 467412672539947008, + "id_str": "467412672539947008", + "text": "\"Its all fun and games until @notch retweets you.\" \n-Ancient wisdom", + "source": "Mobile Web (M5)", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 211105430, + "id_str": "211105430" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 22, + "favorite_count": 48, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "notch", + "name": "Markus Persson", + "id": 63485337, + "id_str": "63485337", + "indices": [ + 29, + 35 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 22, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 16 21:11:21 +0000 2014", + "id": 467412006698762240, + "id_str": "467412006698762240", + "text": "@SrFusion 🔔", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467411909952544770, + "in_reply_to_status_id_str": "467411909952544770", + "in_reply_to_user_id": 279219656, + "in_reply_to_user_id_str": "279219656", + "in_reply_to_screen_name": "SrFusion", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Fri May 16 21:09:05 +0000 2014", + "id": 467411436223078400, + "id_str": "467411436223078400", + "text": "@SrFusion one of these things is true, the others are acrid commentary", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467411285479415808, + "in_reply_to_status_id_str": "467411285479415808", + "in_reply_to_user_id": 279219656, + "in_reply_to_user_id_str": "279219656", + "in_reply_to_screen_name": "SrFusion", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 16 20:58:17 +0000 2014", + "id": 467408719782088704, + "id_str": "467408719782088704", + "text": "We have a street in Boston called Surface Road. Nearby are Two-Dimensional Plane Parkway and Physical Matter Boulevard", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 4, + "favorite_count": 11, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 16 20:41:49 +0000 2014", + "id": 467404577693007872, + "id_str": "467404577693007872", + "text": "@FioraAeterna @hinanawi_chan @m1sp *quietly sobs about being a giant*", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467403816552628225, + "in_reply_to_status_id_str": "467403816552628225", + "in_reply_to_user_id": 2468699718, + "in_reply_to_user_id_str": "2468699718", + "in_reply_to_screen_name": "FioraAeterna", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 16 20:40:14 +0000 2014", + "id": 467404175396327424, + "id_str": "467404175396327424", + "text": "@FioraAeterna @hinanawi_chan @m1sp oh, I — — o-o-oh :(", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467403816552628225, + "in_reply_to_status_id_str": "467403816552628225", + "in_reply_to_user_id": 2468699718, + "in_reply_to_user_id_str": "2468699718", + "in_reply_to_screen_name": "FioraAeterna", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "fi" + }, + { + "created_at": "Fri May 16 20:30:08 +0000 2014", + "id": 467401637364256768, + "id_str": "467401637364256768", + "text": "This is representative of @Veracode (well and me but you saw me already) http://t.co/BXIi7mxQIA", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri May 16 20:27:37 +0000 2014", + "id": 467401001495183360, + "id_str": "467401001495183360", + "text": "@n3wjack you insult my honor.", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 467400517271187456, + "in_reply_to_status_id_str": "467400517271187456", + "in_reply_to_user_id": 12635362, + "in_reply_to_user_id_str": "12635362", + "in_reply_to_screen_name": "n3wjack", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 16 19:48:20 +0000 2014", + "id": 467391117487767552, + "id_str": "467391117487767552", + "text": "RT @chriseng: Way to go ISC(2). Trivial \"negative dollar value\" bug in processing membership dues. Really? *facepalm* http://t.co/wqfVgOu2KI", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Fri May 16 19:23:37 +0000 2014", + "id": 467384896861007873, + "id_str": "467384896861007873", + "text": "Way to go ISC(2). Trivial \"negative dollar value\" bug in processing membership dues. Really? *facepalm* http://t.co/wqfVgOu2KI", + "source": "MetroTwit", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 13752192, + "id_str": "13752192" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 16, + "favorite_count": 11, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/wqfVgOu2KI", + "expanded_url": "http://krebsonsecurity.com/2014/05/white-hat-hacker-schools-security-pro-school/", + "display_url": "krebsonsecurity.com/2014/05/white-…", + "indices": [ + 104, + 126 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 16, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri May 16 18:57:55 +0000 2014", + "id": 467378428225019904, + "id_str": "467378428225019904", + "text": "@comex Flashing Danger Sign?", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 467378345240322048, + "in_reply_to_status_id_str": "467378345240322048", + "in_reply_to_user_id": 14550962, + "in_reply_to_user_id_str": "14550962", + "in_reply_to_screen_name": "comex", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "da" + }, + { + "created_at": "Fri May 16 18:15:50 +0000 2014", + "id": 467367836990861312, + "id_str": "467367836990861312", + "text": "@pbaylies @jwisser just need to drop some bass in here", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 467367577480859648, + "in_reply_to_status_id_str": "467367577480859648", + "in_reply_to_user_id": 302255160, + "in_reply_to_user_id_str": "302255160", + "in_reply_to_screen_name": "pbaylies", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 16 18:12:56 +0000 2014", + "id": 467367106913509376, + "id_str": "467367106913509376", + "text": "Now I'm worrying about readers never consciously noticing the date headers in my novel and never figuring out it's achronological 😨", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 16 17:53:08 +0000 2014", + "id": 467362127083495424, + "id_str": "467362127083495424", + "text": "@BrennanHolzer yeah! :D", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 467361970866253824, + "in_reply_to_status_id_str": "467361970866253824", + "in_reply_to_user_id": 2456945790, + "in_reply_to_user_id_str": "2456945790", + "in_reply_to_screen_name": "BrennanHolzer", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "lv" + }, + { + "created_at": "Fri May 16 17:51:58 +0000 2014", + "id": 467361832496529409, + "id_str": "467361832496529409", + "text": ".@pbaylies I have this one documented in a file from 2011, I think I came up with it myself? t * ((t>>12|t>>8)&60&t>>7)", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 467360539925315584, + "in_reply_to_status_id_str": "467360539925315584", + "in_reply_to_user_id": 302255160, + "in_reply_to_user_id_str": "302255160", + "in_reply_to_screen_name": "pbaylies", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 16 17:49:04 +0000 2014", + "id": 467361103920783360, + "id_str": "467361103920783360", + "text": "@pbaylies ... why didn't I think of that", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 467360834986201090, + "in_reply_to_status_id_str": "467360834986201090", + "in_reply_to_user_id": 302255160, + "in_reply_to_user_id_str": "302255160", + "in_reply_to_screen_name": "pbaylies", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 16 17:47:46 +0000 2014", + "id": 467360774797930496, + "id_str": "467360774797930496", + "text": "@pbaylies YES PERFECT THANK YOU.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 467360539925315584, + "in_reply_to_status_id_str": "467360539925315584", + "in_reply_to_user_id": 302255160, + "in_reply_to_user_id_str": "302255160", + "in_reply_to_screen_name": "pbaylies", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 16 17:47:41 +0000 2014", + "id": 467360752949788672, + "id_str": "467360752949788672", + "text": "RT @pbaylies: @0xabad1dea Like this? http://t.co/1yauvx3EZm", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Fri May 16 17:46:50 +0000 2014", + "id": 467360539925315584, + "id_str": "467360539925315584", + "text": "@0xabad1dea Like this? http://t.co/1yauvx3EZm", + "source": "TweetDeck", + "truncated": false, + "in_reply_to_status_id": 467360275445088257, + "in_reply_to_status_id_str": "467360275445088257", + "in_reply_to_user_id": 126030998, + "in_reply_to_user_id_str": "126030998", + "in_reply_to_screen_name": "0xabad1dea", + "user": { + "id": 302255160, + "id_str": "302255160" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 12, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/1yauvx3EZm", + "expanded_url": "http://wurstcaptures.untergrund.net/music/", + "display_url": "wurstcaptures.untergrund.net/music/", + "indices": [ + 23, + 45 + ] + } + ], + "user_mentions": [ + { + "screen_name": "0xabad1dea", + "name": "Melissa", + "id": 126030998, + "id_str": "126030998", + "indices": [ + 0, + 11 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 3, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri May 16 17:45:47 +0000 2014", + "id": 467360275445088257, + "id_str": "467360275445088257", + "text": "Does anyone remember the URL of the Javascript widget which would play sounds based on inputs that look like (t*(t>>8+t>>8)*100)+sin(t)", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 16 17:26:57 +0000 2014", + "id": 467355536456183808, + "id_str": "467355536456183808", + "text": ".@zhuowei THAT professor was a good sport and graded the essay *as* limerick, so I got two points off for a shaky rhyme.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 467355223460048896, + "in_reply_to_status_id_str": "467355223460048896", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 7, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 16 17:26:22 +0000 2014", + "id": 467355387591942145, + "id_str": "467355387591942145", + "text": ".@zhuowei I found assignments far more intellectually engaging if I could troll with them, whence the essays entirely in limerick", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 467355223460048896, + "in_reply_to_status_id_str": "467355223460048896", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 16 17:24:21 +0000 2014", + "id": 467354880219545600, + "id_str": "467354880219545600", + "text": "@Hamcha no, Twitter just slaughtered it with compression. I screencapped on OSX.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 467354696093814785, + "in_reply_to_status_id_str": "467354696093814785", + "in_reply_to_user_id": 544033, + "in_reply_to_user_id_str": "544033", + "in_reply_to_screen_name": "Hamcha", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 16 17:23:09 +0000 2014", + "id": 467354580238749696, + "id_str": "467354580238749696", + "text": "A *different* professor gave us similar linguistic latitude, got an assembler written in Ruby, and couldn't figure out how to install Ruby.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 8, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 16 17:17:02 +0000 2014", + "id": 467353039305986048, + "id_str": "467353039305986048", + "text": "Here's a sample of my handwritten MSIL, I recall that the //; thing was a hackaround for syntax highlighting. http://t.co/4lEtTgjkCy", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 7, + "favorite_count": 9, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri May 16 17:08:15 +0000 2014", + "id": 467350831436951554, + "id_str": "467350831436951554", + "text": "Just found my final from .net class in uni. Professor said it could be written in any .net language. He got MSIL.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 19, + "favorite_count": 49, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 16 16:53:17 +0000 2014", + "id": 467347062749925376, + "id_str": "467347062749925376", + "text": "@ShadowTodd well, it’s only half as long, so only half as likely to be hit! Good call.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467344563032432640, + "in_reply_to_status_id_str": "467344563032432640", + "in_reply_to_user_id": 168769498, + "in_reply_to_user_id_str": "168769498", + "in_reply_to_screen_name": "ShadowTodd", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 16 16:50:11 +0000 2014", + "id": 467346283255304192, + "id_str": "467346283255304192", + "text": "Via @EvilN8: the Q and Z thing was a holdover from phone-entered passwords.\n\nBut the passwords are case sensitive.\n\nG E N I U S 🌟", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 6, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 16 16:49:11 +0000 2014", + "id": 467346029978062849, + "id_str": "467346029978062849", + "text": "@EvilN8 @dchest @thegrugq … wut.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467345286289825792, + "in_reply_to_status_id_str": "467345286289825792", + "in_reply_to_user_id": 16018289, + "in_reply_to_user_id_str": "16018289", + "in_reply_to_screen_name": "EvilN8", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "de" + }, + { + "created_at": "Fri May 16 16:48:17 +0000 2014", + "id": 467345805993836544, + "id_str": "467345805993836544", + "text": "@kerouanton @dchest @thegrugq found it, they actually literally just changed it", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467345025924608000, + "in_reply_to_status_id_str": "467345025924608000", + "in_reply_to_user_id": 109188310, + "in_reply_to_user_id_str": "109188310", + "in_reply_to_screen_name": "kerouanton", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 16 16:47:13 +0000 2014", + "id": 467345534966317056, + "id_str": "467345534966317056", + "text": "@kerouanton o_O what’s going on… two different account types or?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467345025924608000, + "in_reply_to_status_id_str": "467345025924608000", + "in_reply_to_user_id": 109188310, + "in_reply_to_user_id_str": "109188310", + "in_reply_to_screen_name": "kerouanton", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 16 16:44:42 +0000 2014", + "id": 467344903547416576, + "id_str": "467344903547416576", + "text": "@EvilN8 @dchest @thegrugq your objection makes no sense, the passwords are case sensitive, they can’t be entered over phone anyway.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467344590110875648, + "in_reply_to_status_id_str": "467344590110875648", + "in_reply_to_user_id": 16018289, + "in_reply_to_user_id_str": "16018289", + "in_reply_to_screen_name": "EvilN8", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 16 16:40:55 +0000 2014", + "id": 467343950320521218, + "id_str": "467343950320521218", + "text": ".@dchest @thegrugq it’s basic science that Q’s and Z’s contain less entropy than the other alphanumerics", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466428784212992001, + "in_reply_to_status_id_str": "466428784212992001", + "in_reply_to_user_id": 793754, + "in_reply_to_user_id_str": "793754", + "in_reply_to_screen_name": "dchest", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 4, + "favorite_count": 5, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 16 16:40:06 +0000 2014", + "id": 467343745269395456, + "id_str": "467343745269395456", + "text": "RT @dchest: http://t.co/GdxAtv7UdL", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Wed May 14 04:04:22 +0000 2014", + "id": 466428784212992001, + "id_str": "466428784212992001", + "text": "http://t.co/GdxAtv7UdL", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 793754, + "id_str": "793754" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 97, + "favorite_count": 39, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ], + "media": [ + { + "id": 466428781453148160, + "id_str": "466428781453148160", + "indices": [ + 0, + 22 + ], + "media_url": "http://pbs.twimg.com/media/BnkWgWeIgAA5Bft.png", + "media_url_https": "https://pbs.twimg.com/media/BnkWgWeIgAA5Bft.png", + "url": "http://t.co/GdxAtv7UdL", + "display_url": "pic.twitter.com/GdxAtv7UdL", + "expanded_url": "http://twitter.com/dchest/status/466428784212992001/photo/1", + "type": "photo", + "sizes": { + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 570, + "h": 274, + "resize": "fit" + }, + "medium": { + "w": 570, + "h": 274, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 163, + "resize": "fit" + } + } + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + "retweet_count": 97, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Fri May 16 16:38:21 +0000 2014", + "id": 467343306574548992, + "id_str": "467343306574548992", + "text": "@apiary they’ll be attending 404~", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467343029201014785, + "in_reply_to_status_id_str": "467343029201014785", + "in_reply_to_user_id": 17897532, + "in_reply_to_user_id_str": "17897532", + "in_reply_to_screen_name": "apiary", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 16 16:33:16 +0000 2014", + "id": 467342027987124225, + "id_str": "467342027987124225", + "text": "There’s a reporter coming to document our corporate culture. Better look my best. http://t.co/ZI2Sr4jLNo", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 10, + "favorite_count": 49, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri May 16 16:09:51 +0000 2014", + "id": 467336133127729153, + "id_str": "467336133127729153", + "text": "Remember the infamous Photoshop outages of the 90s? No? But computers only get better! http://t.co/nTGwpNa0XD", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 14, + "favorite_count": 14, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri May 16 16:08:12 +0000 2014", + "id": 467335717082103809, + "id_str": "467335717082103809", + "text": "@ftrain @hypatiadotca I have to say… words of commenters in red may not have been the most appropriate choice.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467169592256004096, + "in_reply_to_status_id_str": "467169592256004096", + "in_reply_to_user_id": 6981492, + "in_reply_to_user_id_str": "6981492", + "in_reply_to_screen_name": "ftrain", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 16 16:03:16 +0000 2014", + "id": 467334477539450880, + "id_str": "467334477539450880", + "text": "@FioraAeterna I have no idea what’s going on but I like it", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467325910740656128, + "in_reply_to_status_id_str": "467325910740656128", + "in_reply_to_user_id": 2468699718, + "in_reply_to_user_id_str": "2468699718", + "in_reply_to_screen_name": "FioraAeterna", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 16 16:01:50 +0000 2014", + "id": 467334115168378880, + "id_str": "467334115168378880", + "text": ".@akachela @jeremiahfelt “but by then, the server had already repartitioned itself”\n\n😂😂 I’m sorry I’m laughing at this horrible tragedy 😂😂", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467317375738871808, + "in_reply_to_status_id_str": "467317375738871808", + "in_reply_to_user_id": 55633057, + "in_reply_to_user_id_str": "55633057", + "in_reply_to_screen_name": "akachela", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 9, + "favorite_count": 15, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 16 16:00:32 +0000 2014", + "id": 467333788922826752, + "id_str": "467333788922826752", + "text": "RT @akachela: IT peeps: Be glad you don't work for Emory right now http://t.co/gBsmLZpaTc", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Fri May 16 14:55:19 +0000 2014", + "id": 467317375738871808, + "id_str": "467317375738871808", + "text": "IT peeps: Be glad you don't work for Emory right now http://t.co/gBsmLZpaTc", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 55633057, + "id_str": "55633057" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 57, + "favorite_count": 23, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/gBsmLZpaTc", + "expanded_url": "http://it.emory.edu/windows7-incident/", + "display_url": "it.emory.edu/windows7-incid…", + "indices": [ + 53, + 75 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 57, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri May 16 15:38:04 +0000 2014", + "id": 467328136204812289, + "id_str": "467328136204812289", + "text": "Take care of all your \"forward this letter to 10 people or bad luck\" letters at once by implanting them on the block chain.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 34, + "favorite_count": 45, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 16 15:33:03 +0000 2014", + "id": 467326871802486784, + "id_str": "467326871802486784", + "text": "@lax_wanton_chi @bl4sty the bitcoin client is *intended* to be run on home computers.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 467326754093555713, + "in_reply_to_status_id_str": "467326754093555713", + "in_reply_to_user_id": 84354019, + "in_reply_to_user_id_str": "84354019", + "in_reply_to_screen_name": "lax_wanton_chi", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 16 15:27:20 +0000 2014", + "id": 467325431822450689, + "id_str": "467325431822450689", + "text": "Linux Poe's Law: it is impossible to determine at what point, *if any*, this thread became self-parody. http://t.co/08qwMvsv9N", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 34, + "favorite_count": 45, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri May 16 15:14:43 +0000 2014", + "id": 467322258193936384, + "id_str": "467322258193936384", + "text": "RT @DrDaxxy: @0xabad1dea @bl4sty apparently the culprit actually intended to destroy the network: http://t.co/FYykHYY2jx", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Fri May 16 14:59:24 +0000 2014", + "id": 467318405465640960, + "id_str": "467318405465640960", + "text": "@0xabad1dea @bl4sty apparently the culprit actually intended to destroy the network: http://t.co/FYykHYY2jx", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 467303640064327680, + "in_reply_to_status_id_str": "467303640064327680", + "in_reply_to_user_id": 126030998, + "in_reply_to_user_id_str": "126030998", + "in_reply_to_screen_name": "0xabad1dea", + "user": { + "id": 15369528, + "id_str": "15369528" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 14, + "favorite_count": 10, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/FYykHYY2jx", + "expanded_url": "http://pastebin.com/ct2WHUK5", + "display_url": "pastebin.com/ct2WHUK5", + "indices": [ + 85, + 107 + ] + } + ], + "user_mentions": [ + { + "screen_name": "0xabad1dea", + "name": "Melissa", + "id": 126030998, + "id_str": "126030998", + "indices": [ + 0, + 11 + ] + }, + { + "screen_name": "bl4sty", + "name": "blasty", + "id": 31218035, + "id_str": "31218035", + "indices": [ + 12, + 19 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 14, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri May 16 14:37:46 +0000 2014", + "id": 467312958763048962, + "id_str": "467312958763048962", + "text": "@WithMetta @garblefart and you can SAY it's a joke but I guarantee the people you think you're joking about are NOT laughing.", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 467312056623194113, + "in_reply_to_status_id_str": "467312056623194113", + "in_reply_to_user_id": 7376512, + "in_reply_to_user_id_str": "7376512", + "in_reply_to_screen_name": "WithMetta", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 16 14:37:05 +0000 2014", + "id": 467312786326839296, + "id_str": "467312786326839296", + "text": "@WithMetta @garblefart no one except a medical doctor should be asking strangers about their chromosomes :\\", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 467312056623194113, + "in_reply_to_status_id_str": "467312056623194113", + "in_reply_to_user_id": 7376512, + "in_reply_to_user_id_str": "7376512", + "in_reply_to_screen_name": "WithMetta", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 16 14:36:03 +0000 2014", + "id": 467312528087715840, + "id_str": "467312528087715840", + "text": "@agl__ that doesn't seem to grammatically parse for me, no, unless I'm in a *real* mental fog today?", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 467312124562137088, + "in_reply_to_status_id_str": "467312124562137088", + "in_reply_to_user_id": 235129029, + "in_reply_to_user_id_str": "235129029", + "in_reply_to_screen_name": "agl__", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 16 14:26:55 +0000 2014", + "id": 467310230414835713, + "id_str": "467310230414835713", + "text": "@WithMetta @garblefart that’s uh, really not helpful to the point at hand", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467308707513401344, + "in_reply_to_status_id_str": "467308707513401344", + "in_reply_to_user_id": 7376512, + "in_reply_to_user_id_str": "7376512", + "in_reply_to_screen_name": "WithMetta", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 16 14:17:18 +0000 2014", + "id": 467307810271657984, + "id_str": "467307810271657984", + "text": "RT @KJV_Programming: On the surface, time seems straightforward. It is an abomination http://t.co/9P1mvJ7unP", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Fri May 16 11:01:21 +0000 2014", + "id": 467258497378566144, + "id_str": "467258497378566144", + "text": "On the surface, time seems straightforward. It is an abomination http://t.co/9P1mvJ7unP", + "source": "Tumblr", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2209168532, + "id_str": "2209168532" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 28, + "favorite_count": 15, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/9P1mvJ7unP", + "expanded_url": "http://tmblr.co/ZPJihp1G0JzKv", + "display_url": "tmblr.co/ZPJihp1G0JzKv", + "indices": [ + 65, + 87 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 28, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri May 16 14:14:37 +0000 2014", + "id": 467307134368358401, + "id_str": "467307134368358401", + "text": "@DrPizza oh, THAT article. I chose to let the crazy slide past on its merry way…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467302851593895936, + "in_reply_to_status_id_str": "467302851593895936", + "in_reply_to_user_id": 11375732, + "in_reply_to_user_id_str": "11375732", + "in_reply_to_screen_name": "DrPizza", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 16 14:10:25 +0000 2014", + "id": 467306074752954368, + "id_str": "467306074752954368", + "text": "@Neostrategos …", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467305987985391616, + "in_reply_to_status_id_str": "467305987985391616", + "in_reply_to_user_id": 16369077, + "in_reply_to_user_id_str": "16369077", + "in_reply_to_screen_name": "Neostrategos", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Fri May 16 14:07:26 +0000 2014", + "id": 467305326321336321, + "id_str": "467305326321336321", + "text": "RT @garblefart: the gender binary is like everyone going \"are you teal or cyan\" and then freaking the fuck out if you say anything different", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Fri May 16 09:49:48 +0000 2014", + "id": 467240491520909312, + "id_str": "467240491520909312", + "text": "the gender binary is like everyone going \"are you teal or cyan\" and then freaking the fuck out if you say anything different", + "source": "TweetDeck", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 737104831, + "id_str": "737104831" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 17, + "favorite_count": 19, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 17, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 16 14:00:44 +0000 2014", + "id": 467303640064327680, + "id_str": "467303640064327680", + "text": ".@bl4sty my casually antagonistic side is cackling with glee at the elegance of that", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467228778864066560, + "in_reply_to_status_id_str": "467228778864066560", + "in_reply_to_user_id": 31218035, + "in_reply_to_user_id_str": "31218035", + "in_reply_to_screen_name": "bl4sty", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 16 13:57:21 +0000 2014", + "id": 467302788473831424, + "id_str": "467302788473831424", + "text": "RT @bl4sty: Someone embedded a virus signature in the bitcoin blockchain, causing MS security essentials to go bonkers, LOL. https://t.co/G…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Fri May 16 09:03:16 +0000 2014", + "id": 467228778864066560, + "id_str": "467228778864066560", + "text": "Someone embedded a virus signature in the bitcoin blockchain, causing MS security essentials to go bonkers, LOL. https://t.co/GZNfp1qQlo", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 31218035, + "id_str": "31218035" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 158, + "favorite_count": 76, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "https://t.co/GZNfp1qQlo", + "expanded_url": "https://answers.microsoft.com/en-us/protect/forum/mse-protect_updating/microsoft-security-essentials-reporting-false/0240ed8e-5a27-4843-a939-0279c8110e1c?tm=1400189799602", + "display_url": "answers.microsoft.com/en-us/protect/…", + "indices": [ + 113, + 136 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 158, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri May 16 13:54:46 +0000 2014", + "id": 467302137832411136, + "id_str": "467302137832411136", + "text": "@agl__ typo at “the OpenSSL, Heartbeat bug”", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466693376881213440, + "in_reply_to_status_id_str": "466693376881213440", + "in_reply_to_user_id": 235129029, + "in_reply_to_user_id_str": "235129029", + "in_reply_to_screen_name": "agl__", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "ro" + }, + { + "created_at": "Fri May 16 13:53:30 +0000 2014", + "id": 467301821636444160, + "id_str": "467301821636444160", + "text": "RT @agl__: SHA-256 certificates are coming: https://t.co/vrRiTORi9o", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Wed May 14 21:35:46 +0000 2014", + "id": 466693376881213440, + "id_str": "466693376881213440", + "text": "SHA-256 certificates are coming: https://t.co/vrRiTORi9o", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 235129029, + "id_str": "235129029" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 80, + "favorite_count": 39, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "https://t.co/vrRiTORi9o", + "expanded_url": "https://www.imperialviolet.org/2014/05/14/sha256.html", + "display_url": "imperialviolet.org/2014/05/14/sha…", + "indices": [ + 33, + 56 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "ro" + }, + "retweet_count": 80, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "ro" + }, + { + "created_at": "Fri May 16 13:42:47 +0000 2014", + "id": 467299121594765313, + "id_str": "467299121594765313", + "text": "@neoemonk I think they invented Drow, but Drowtales would be to them as they are to Lord of the Rings", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467297394431102977, + "in_reply_to_status_id_str": "467297394431102977", + "in_reply_to_user_id": 186772185, + "in_reply_to_user_id_str": "186772185", + "in_reply_to_screen_name": "neoemonk", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 16 13:40:51 +0000 2014", + "id": 467298636662333440, + "id_str": "467298636662333440", + "text": "RT @Dinosn: Practical and Portable X86 Recompilation http://t.co/e6zFfmFcYT", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Fri May 16 06:58:21 +0000 2014", + "id": 467197342450323456, + "id_str": "467197342450323456", + "text": "Practical and Portable X86 Recompilation http://t.co/e6zFfmFcYT", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 128484298, + "id_str": "128484298" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 47, + "favorite_count": 37, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/e6zFfmFcYT", + "expanded_url": "http://mp2.dk/blog/blog/2014/04/14/practical-and-portable-binary-recompilation/", + "display_url": "mp2.dk/blog/blog/2014…", + "indices": [ + 41, + 63 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "ro" + }, + "retweet_count": 47, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "ro" + }, + { + "created_at": "Fri May 16 04:20:54 +0000 2014", + "id": 467157718122233856, + "id_str": "467157718122233856", + "text": "@DrPizza they were giving me ads in Spanish…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467155737547124737, + "in_reply_to_status_id_str": "467155737547124737", + "in_reply_to_user_id": 11375732, + "in_reply_to_user_id_str": "11375732", + "in_reply_to_screen_name": "DrPizza", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 16 04:18:04 +0000 2014", + "id": 467157007154544640, + "id_str": "467157007154544640", + "text": "@MortiousPrime as I just showed to someone else, http://t.co/Xo4rrQewAz is representative of the current art direction", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467156663682625536, + "in_reply_to_status_id_str": "467156663682625536", + "in_reply_to_user_id": 91180846, + "in_reply_to_user_id_str": "91180846", + "in_reply_to_screen_name": "MortiousPrime", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri May 16 04:16:55 +0000 2014", + "id": 467156717240074240, + "id_str": "467156717240074240", + "text": "@MortiousPrime if you check right now, the current newest page is a placeholder for a sick colorist, not the normal plot :)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467156351022800896, + "in_reply_to_status_id_str": "467156351022800896", + "in_reply_to_user_id": 91180846, + "in_reply_to_user_id_str": "91180846", + "in_reply_to_screen_name": "MortiousPrime", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 16 04:16:09 +0000 2014", + "id": 467156525631295488, + "id_str": "467156525631295488", + "text": "@MortiousPrime out of this world art improvement, and the wholesale replacement of several older chapters with improved plot.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467156351022800896, + "in_reply_to_status_id_str": "467156351022800896", + "in_reply_to_user_id": 91180846, + "in_reply_to_user_id_str": "91180846", + "in_reply_to_screen_name": "MortiousPrime", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 16 04:04:27 +0000 2014", + "id": 467153578449051648, + "id_str": "467153578449051648", + "text": "@antumbral this recent page would be representative of current quality http://t.co/Rhv03I6qjm", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 467150978719182848, + "in_reply_to_status_id_str": "467150978719182848", + "in_reply_to_user_id": 19837512, + "in_reply_to_user_id_str": "19837512", + "in_reply_to_screen_name": "antumbral", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri May 16 03:56:08 +0000 2014", + "id": 467151486460243969, + "id_str": "467151486460243969", + "text": "@voodooKobra what do you think tumblr is... kitten blogs??", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 467151163482456065, + "in_reply_to_status_id_str": "467151163482456065", + "in_reply_to_user_id": 340518676, + "in_reply_to_user_id_str": "340518676", + "in_reply_to_screen_name": "voodooKobra", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 16 03:55:23 +0000 2014", + "id": 467151300044394496, + "id_str": "467151300044394496", + "text": "@antumbral depending on how long ago that was - they've DRAMATICALLY improved it and moved some of the raunchier stuff out of canon.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 467150978719182848, + "in_reply_to_status_id_str": "467150978719182848", + "in_reply_to_user_id": 19837512, + "in_reply_to_user_id_str": "19837512", + "in_reply_to_screen_name": "antumbral", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 16 03:54:51 +0000 2014", + "id": 467151166212567041, + "id_str": "467151166212567041", + "text": ".@TakoArishi there's no twitter because I literally never close the tab therefore I literally never open the tab", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 467150961832906752, + "in_reply_to_status_id_str": "467150961832906752", + "in_reply_to_user_id": 22107482, + "in_reply_to_user_id_str": "22107482", + "in_reply_to_screen_name": "TakoArishi", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 10, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 16 03:53:31 +0000 2014", + "id": 467150827648339968, + "id_str": "467150827648339968", + "text": "This is Google's summary of my life. http://t.co/sVpCinyYca", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 8, + "favorite_count": 19, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri May 16 03:45:24 +0000 2014", + "id": 467148786435760129, + "id_str": "467148786435760129", + "text": "@Vivicasus @Talen_Lee I... want to be... teased... more :(", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 467148374471237632, + "in_reply_to_status_id_str": "467148374471237632", + "in_reply_to_user_id": 22856941, + "in_reply_to_user_id_str": "22856941", + "in_reply_to_screen_name": "Vivicasus", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 16 03:36:47 +0000 2014", + "id": 467146617666420737, + "id_str": "467146617666420737", + "text": "@Talen_Lee …", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467122131525181440, + "in_reply_to_status_id_str": "467122131525181440", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Fri May 16 03:34:45 +0000 2014", + "id": 467146106799808512, + "id_str": "467146106799808512", + "text": "@Packetknife you would. http://t.co/ajwP6FcOc6\n\nhttp://t.co/iOb4vU4rmo\n\nhttp://t.co/8fGyjTXVNp", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 467113598717026304, + "in_reply_to_status_id_str": "467113598717026304", + "in_reply_to_user_id": 19564254, + "in_reply_to_user_id_str": "19564254", + "in_reply_to_screen_name": "Packetknife", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri May 16 01:52:44 +0000 2014", + "id": 467120432278425600, + "id_str": "467120432278425600", + "text": "@Packetknife @Aelkus @McGrewSecurity @ErrataRob actually Abadidea refuses to write novels in editors that don't support era-authentic fonts.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 467116906772963329, + "in_reply_to_status_id_str": "467116906772963329", + "in_reply_to_user_id": 19564254, + "in_reply_to_user_id_str": "19564254", + "in_reply_to_screen_name": "Packetknife", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 16 00:57:51 +0000 2014", + "id": 467106622721232896, + "id_str": "467106622721232896", + "text": "@zhuowei IF ONLY WE'D STARTED GRINDING FOR THE PERFECT RNG A HUNDRED YEARS AGO, POKEMON WOULD BE SOLVED BY NOW.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 467106049225277441, + "in_reply_to_status_id_str": "467106049225277441", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 16 00:09:58 +0000 2014", + "id": 467094569600159745, + "id_str": "467094569600159745", + "text": "Concerning my rampant idealism: I don't want people 100 years from now to say \"I wish they had started on this plan 100 years ago\"", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 8, + "favorite_count": 11, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 16 00:03:13 +0000 2014", + "id": 467092873662726144, + "id_str": "467092873662726144", + "text": "@rantyben genuinely unsure if touched by my idealism or amused by my naïveté", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 977910404, + "in_reply_to_user_id_str": "977910404", + "in_reply_to_screen_name": "rantyben", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 23:58:54 +0000 2014", + "id": 467091786960490496, + "id_str": "467091786960490496", + "text": "Time to get unreasonably excited that @ThePokeBot rolled a perfect Nidoran and a gold Brock split this makes sense trust me", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 23:47:43 +0000 2014", + "id": 467088972293091329, + "id_str": "467088972293091329", + "text": "@puellavulnerata you REALLY went in for the Greek mythology obsession phase, didn’t you.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467082434471682048, + "in_reply_to_status_id_str": "467082434471682048", + "in_reply_to_user_id": 54666727, + "in_reply_to_user_id_str": "54666727", + "in_reply_to_screen_name": "puellavulnerata", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 23:46:46 +0000 2014", + "id": 467088734115344387, + "id_str": "467088734115344387", + "text": "RT @waitomo11: Greenwald... in a nutshell. http://t.co/MERO5d30W6", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Thu May 15 23:13:19 +0000 2014", + "id": 467080312238125056, + "id_str": "467080312238125056", + "text": "Greenwald... in a nutshell. http://t.co/MERO5d30W6", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 39372881, + "id_str": "39372881" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 90, + "favorite_count": 68, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ], + "media": [ + { + "id": 467080311570829314, + "id_str": "467080311570829314", + "indices": [ + 28, + 50 + ], + "media_url": "http://pbs.twimg.com/media/BntnEZTCEAIbagv.png", + "media_url_https": "https://pbs.twimg.com/media/BntnEZTCEAIbagv.png", + "url": "http://t.co/MERO5d30W6", + "display_url": "pic.twitter.com/MERO5d30W6", + "expanded_url": "http://twitter.com/waitomo11/status/467080312238125056/photo/1", + "type": "photo", + "sizes": { + "medium": { + "w": 587, + "h": 132, + "resize": "fit" + }, + "large": { + "w": 587, + "h": 132, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 132, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 76, + "resize": "fit" + } + } + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 90, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 23:39:22 +0000 2014", + "id": 467086869939748865, + "id_str": "467086869939748865", + "text": "@innismir it’s a massive, systematic problem — and we need to *solve it* rather than hide behind our walls of birth privilege.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467086558253027328, + "in_reply_to_status_id_str": "467086558253027328", + "in_reply_to_user_id": 14061445, + "in_reply_to_user_id_str": "14061445", + "in_reply_to_screen_name": "innismir", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 22:55:50 +0000 2014", + "id": 467075914434887681, + "id_str": "467075914434887681", + "text": "@zauspar depending on the type of screen, I can see a 60hz flicker.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467073423634866177, + "in_reply_to_status_id_str": "467073423634866177", + "in_reply_to_user_id": 216571343, + "in_reply_to_user_id_str": "216571343", + "in_reply_to_screen_name": "zauspar", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 22:51:35 +0000 2014", + "id": 467074844753137664, + "id_str": "467074844753137664", + "text": "@SQLSoldier @mike_913 (I'm American, the couple lives here)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467069226654916608, + "in_reply_to_status_id_str": "467069226654916608", + "in_reply_to_user_id": 49236221, + "in_reply_to_user_id_str": "49236221", + "in_reply_to_screen_name": "SQLSoldier", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 22:49:05 +0000 2014", + "id": 467074217746247680, + "id_str": "467074217746247680", + "text": "@redtwitdown I do enjoy a good opportunity to control the flow of information, being a supervillain and all.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467073835485761536, + "in_reply_to_status_id_str": "467073835485761536", + "in_reply_to_user_id": 152803111, + "in_reply_to_user_id_str": "152803111", + "in_reply_to_screen_name": "redtwitdown", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 22:46:10 +0000 2014", + "id": 467073481243639808, + "id_str": "467073481243639808", + "text": "@Vudw (relevant to this context is that we graduated right in the middle of the economic disaster)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467073062878212098, + "in_reply_to_status_id_str": "467073062878212098", + "in_reply_to_user_id": 201380143, + "in_reply_to_user_id_str": "201380143", + "in_reply_to_screen_name": "Vudw", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 22:45:51 +0000 2014", + "id": 467073401065320448, + "id_str": "467073401065320448", + "text": "@Vudw my husband and I tried for almost two years to get \"real jobs\" with benefits in Virginia, with computer science degrees.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467073062878212098, + "in_reply_to_status_id_str": "467073062878212098", + "in_reply_to_user_id": 201380143, + "in_reply_to_user_id_str": "201380143", + "in_reply_to_screen_name": "Vudw", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 22:45:06 +0000 2014", + "id": 467073214225854464, + "id_str": "467073214225854464", + "text": "@Vudw aside from human rights and dignity? The economy", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467073062878212098, + "in_reply_to_status_id_str": "467073062878212098", + "in_reply_to_user_id": 201380143, + "in_reply_to_user_id_str": "201380143", + "in_reply_to_screen_name": "Vudw", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 22:43:10 +0000 2014", + "id": 467072727082209282, + "id_str": "467072727082209282", + "text": "@Kufat we already have that and have for years and we illegalize and marginalize them", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467071522599731200, + "in_reply_to_status_id_str": "467071522599731200", + "in_reply_to_user_id": 207691003, + "in_reply_to_user_id_str": "207691003", + "in_reply_to_screen_name": "Kufat", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 22:42:16 +0000 2014", + "id": 467072498501447680, + "id_str": "467072498501447680", + "text": "@cdf123x that makes no sense...? They're legally married and they have jobs, there's nothing shady", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467071671707242496, + "in_reply_to_status_id_str": "467071671707242496", + "in_reply_to_user_id": 107558533, + "in_reply_to_user_id_str": "107558533", + "in_reply_to_screen_name": "cdf123x", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 22:40:43 +0000 2014", + "id": 467072109282197505, + "id_str": "467072109282197505", + "text": "And absolutely nothing stopped me except scraping together the cash for the trip and the housing deposit. Job get, stability get, life get.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 22:40:00 +0000 2014", + "id": 467071927841202179, + "id_str": "467071927841202179", + "text": "Oh btw I'm totally 100% for open immigration. You know why? Because moving from Virginia to Massachusetts was the best thing I ever did", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 8, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 22:38:03 +0000 2014", + "id": 467071437879410688, + "id_str": "467071437879410688", + "text": "@runasand my friends, and they're apparently having difficulties and are worried", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467071293628882944, + "in_reply_to_status_id_str": "467071293628882944", + "in_reply_to_user_id": 19959946, + "in_reply_to_user_id_str": "19959946", + "in_reply_to_screen_name": "runasand", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 22:37:10 +0000 2014", + "id": 467071216512028673, + "id_str": "467071216512028673", + "text": "@admittedlyhuman marriage already is heavily policed. Guess what happens if I bring in six guys and say I want to marry them??", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467070246013386752, + "in_reply_to_status_id_str": "467070246013386752", + "in_reply_to_user_id": 19892410, + "in_reply_to_user_id_str": "19892410", + "in_reply_to_screen_name": "admittedlyhuman", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 22:32:37 +0000 2014", + "id": 467070070032580608, + "id_str": "467070070032580608", + "text": "@Kufat good", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 467069851727831041, + "in_reply_to_status_id_str": "467069851727831041", + "in_reply_to_user_id": 207691003, + "in_reply_to_user_id_str": "207691003", + "in_reply_to_screen_name": "Kufat", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Thu May 15 22:31:46 +0000 2014", + "id": 467069858912669698, + "id_str": "467069858912669698", + "text": "@admittedlyhuman oh I'm totally for open immigration : and I have no idea where you got that second option", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 467069179766788097, + "in_reply_to_status_id_str": "467069179766788097", + "in_reply_to_user_id": 19892410, + "in_reply_to_user_id_str": "19892410", + "in_reply_to_screen_name": "admittedlyhuman", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 22:29:36 +0000 2014", + "id": 467069313849896962, + "id_str": "467069313849896962", + "text": "@arebee disgust.", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 467069040377090049, + "in_reply_to_status_id_str": "467069040377090049", + "in_reply_to_user_id": 14705385, + "in_reply_to_user_id_str": "14705385", + "in_reply_to_screen_name": "arebee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 22:28:23 +0000 2014", + "id": 467069007028568066, + "id_str": "467069007028568066", + "text": "@geekable clearly. That does not mean I find it morally defensible to play marriage inquisition.", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 467068476541399040, + "in_reply_to_status_id_str": "467068476541399040", + "in_reply_to_user_id": 755035, + "in_reply_to_user_id_str": "755035", + "in_reply_to_screen_name": "geekable", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 22:28:23 +0000 2014", + "id": 467069007028568066, + "id_str": "467069007028568066", + "text": "@geekable clearly. That does not mean I find it morally defensible to play marriage inquisition.", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 467068476541399040, + "in_reply_to_status_id_str": "467068476541399040", + "in_reply_to_user_id": 755035, + "in_reply_to_user_id_str": "755035", + "in_reply_to_screen_name": "geekable", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 22:25:18 +0000 2014", + "id": 467068229257420800, + "id_str": "467068229257420800", + "text": "Which really upsets me. The govt has no business deciding whether an American and a Canadian are \"really in love\" enough to be married.", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 5, + "favorite_count": 10, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 22:21:22 +0000 2014", + "id": 467067242061266944, + "id_str": "467067242061266944", + "text": "Apparently I have to write a letter to the govt to swear that my friends are married \"for real\" because the paperwork isn't good enough", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 7, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 22:18:44 +0000 2014", + "id": 467066577381498880, + "id_str": "467066577381498880", + "text": "@ticky *whistles innocently* 🎸", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 467065090798125056, + "in_reply_to_status_id_str": "467065090798125056", + "in_reply_to_user_id": 17400671, + "in_reply_to_user_id_str": "17400671", + "in_reply_to_screen_name": "ticky", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 22:04:47 +0000 2014", + "id": 467063069018181632, + "id_str": "467063069018181632", + "text": "@JZdziarski @Kufat indisputable photographic proof that I am definitely a rock star for real and not appropriative http://t.co/nfnHLIEHwb", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 467062460436865024, + "in_reply_to_status_id_str": "467062460436865024", + "in_reply_to_user_id": 1267770224, + "in_reply_to_user_id_str": "1267770224", + "in_reply_to_screen_name": "JZdziarski", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 21:35:22 +0000 2014", + "id": 467055664876240896, + "id_str": "467055664876240896", + "text": "@focalintent yep! 😇", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467055468578635776, + "in_reply_to_status_id_str": "467055468578635776", + "in_reply_to_user_id": 8034552, + "in_reply_to_user_id_str": "8034552", + "in_reply_to_screen_name": "focalintent", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Thu May 15 21:19:18 +0000 2014", + "id": 467051619440676864, + "id_str": "467051619440676864", + "text": "@mistydemeo *falls down infinite black hole of complexity*", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467050928445468672, + "in_reply_to_status_id_str": "467050928445468672", + "in_reply_to_user_id": 296622166, + "in_reply_to_user_id_str": "296622166", + "in_reply_to_screen_name": "mistydemeo", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 20:51:47 +0000 2014", + "id": 467044697438175232, + "id_str": "467044697438175232", + "text": "@Myriachan error: Sun acquired by Oracle", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467044350023573504, + "in_reply_to_status_id_str": "467044350023573504", + "in_reply_to_user_id": 1556497868, + "in_reply_to_user_id_str": "1556497868", + "in_reply_to_screen_name": "Myriachan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 20:51:26 +0000 2014", + "id": 467044607122210816, + "id_str": "467044607122210816", + "text": "Apparently Ruby refuses to execute a gem with a description of \"FIXME\" or \"TODO\"", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 9, + "favorite_count": 15, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 20:41:59 +0000 2014", + "id": 467042227970392067, + "id_str": "467042227970392067", + "text": "@mistydemeo and I'm not actually sure how I should feel about it, if I should say \"oh, no, cis actually,\" or just not say anything.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467032391710564352, + "in_reply_to_status_id_str": "467032391710564352", + "in_reply_to_user_id": 296622166, + "in_reply_to_user_id_str": "296622166", + "in_reply_to_screen_name": "mistydemeo", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 20:38:30 +0000 2014", + "id": 467041351541202944, + "id_str": "467041351541202944", + "text": "@mistydemeo I realized recently that apparently some people think I'm trans? Which is okay for me but, accidental appropriation...", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467032391710564352, + "in_reply_to_status_id_str": "467032391710564352", + "in_reply_to_user_id": 296622166, + "in_reply_to_user_id_str": "296622166", + "in_reply_to_screen_name": "mistydemeo", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 20:28:41 +0000 2014", + "id": 467038884036349952, + "id_str": "467038884036349952", + "text": "@DarrenPMeyer @Paucis__Verbis ...huh!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467038629890887682, + "in_reply_to_status_id_str": "467038629890887682", + "in_reply_to_user_id": 468928589, + "in_reply_to_user_id_str": "468928589", + "in_reply_to_screen_name": "DarrenPMeyer", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "tl" + }, + { + "created_at": "Thu May 15 20:25:07 +0000 2014", + "id": 467037984869842944, + "id_str": "467037984869842944", + "text": "Cyber-archers. Cyber-pages. Cyber-yeomen \n\n(that one's unnecessarily gendered)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 5, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 20:20:45 +0000 2014", + "id": 467036887438614529, + "id_str": "467036887438614529", + "text": "RT @FioraAeterna: out of context irc: <abadidea> THE PINK AND SPARKLES AGENDA", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Thu May 15 20:20:10 +0000 2014", + "id": 467036738524045312, + "id_str": "467036738524045312", + "text": "out of context irc: <abadidea> THE PINK AND SPARKLES AGENDA", + "source": "TweetDeck", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2468699718, + "id_str": "2468699718" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 3, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 1, + "favorite_count": 0, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 20:20:02 +0000 2014", + "id": 467036704508223488, + "id_str": "467036704508223488", + "text": "@jesster_king irrelevant.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467036653736181761, + "in_reply_to_status_id_str": "467036653736181761", + "in_reply_to_user_id": 46763517, + "in_reply_to_user_id_str": "46763517", + "in_reply_to_screen_name": "jesster_king", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "no" + }, + { + "created_at": "Thu May 15 20:17:27 +0000 2014", + "id": 467036057176141824, + "id_str": "467036057176141824", + "text": "@jesster_king the shogunate", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467035504333312001, + "in_reply_to_status_id_str": "467035504333312001", + "in_reply_to_user_id": 46763517, + "in_reply_to_user_id_str": "46763517", + "in_reply_to_screen_name": "jesster_king", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 20:10:35 +0000 2014", + "id": 467034327625527296, + "id_str": "467034327625527296", + "text": "@gdude2002 stakeout", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467034158469242881, + "in_reply_to_status_id_str": "467034158469242881", + "in_reply_to_user_id": 25127603, + "in_reply_to_user_id_str": "25127603", + "in_reply_to_screen_name": "gdude2002", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 20:01:19 +0000 2014", + "id": 467031994095140864, + "id_str": "467031994095140864", + "text": "RT @elizabethdanger: New rule: if a baby boomer calls you lazy or implies your generation is lazy, refuse to help them when they need you t…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Thu May 15 08:51:04 +0000 2014", + "id": 466863320759152640, + "id_str": "466863320759152640", + "text": "New rule: if a baby boomer calls you lazy or implies your generation is lazy, refuse to help them when they need you to fix their router.", + "source": "Twitter for Android", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 25274516, + "id_str": "25274516" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1161, + "favorite_count": 980, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 1161, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 19:57:35 +0000 2014", + "id": 467031057016311808, + "id_str": "467031057016311808", + "text": "@pusscat @dakami I feel subtweeted.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467014955989233664, + "in_reply_to_status_id_str": "467014955989233664", + "in_reply_to_user_id": 15794196, + "in_reply_to_user_id_str": "15794196", + "in_reply_to_screen_name": "pusscat", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 19:55:16 +0000 2014", + "id": 467030473836093441, + "id_str": "467030473836093441", + "text": "@jojokejohn @Tomi_Tapio still a better love story than Twilight.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 467002458904858624, + "in_reply_to_status_id_str": "467002458904858624", + "in_reply_to_user_id": 90804267, + "in_reply_to_user_id_str": "90804267", + "in_reply_to_screen_name": "jojokejohn", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 19:53:35 +0000 2014", + "id": 467030048902750208, + "id_str": "467030048902750208", + "text": "RT @arstechnica: “Hurricane Daenerys” to ravage NASA in disaster prep exercise next week http://t.co/dA5XVdey2T by @Lee_Ars", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Thu May 15 18:18:19 +0000 2014", + "id": 467006073447387136, + "id_str": "467006073447387136", + "text": "“Hurricane Daenerys” to ravage NASA in disaster prep exercise next week http://t.co/dA5XVdey2T by @Lee_Ars", + "source": "Ars tweetbot", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 717313, + "id_str": "717313" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 27, + "favorite_count": 14, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/dA5XVdey2T", + "expanded_url": "http://ars.to/1g8JpFj", + "display_url": "ars.to/1g8JpFj", + "indices": [ + 72, + 94 + ] + } + ], + "user_mentions": [ + { + "screen_name": "Lee_Ars", + "name": "Lee Hutchinson", + "id": 785388690, + "id_str": "785388690", + "indices": [ + 98, + 106 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 27, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 18:34:56 +0000 2014", + "id": 467010254736490496, + "id_str": "467010254736490496", + "text": "@puellavulnerata @thegrugq I'm afraid I'd have slim pickings if I wanted to bathe in the blood of infosec maidens in particular", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 467010068764827648, + "in_reply_to_status_id_str": "467010068764827648", + "in_reply_to_user_id": 54666727, + "in_reply_to_user_id_str": "54666727", + "in_reply_to_screen_name": "puellavulnerata", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 18:30:48 +0000 2014", + "id": 467009215463432192, + "id_str": "467009215463432192", + "text": "Contrary to @thegrugq's opinion I do fancy myself violent and thirsty for digital blood. Cyberkunoichi.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 6, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 18:20:58 +0000 2014", + "id": 467006743219011584, + "id_str": "467006743219011584", + "text": "@voodooKobra @polybore didn't you see my tweet the other day about beating up a boy in the boys' bathroom :)", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 467006492043141120, + "in_reply_to_status_id_str": "467006492043141120", + "in_reply_to_user_id": 340518676, + "in_reply_to_user_id_str": "340518676", + "in_reply_to_screen_name": "voodooKobra", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 18:19:34 +0000 2014", + "id": 467006387550425088, + "id_str": "467006387550425088", + "text": "@voodooKobra @polybore hey are you saying I'm not violent?!", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 467006267676827648, + "in_reply_to_status_id_str": "467006267676827648", + "in_reply_to_user_id": 340518676, + "in_reply_to_user_id_str": "340518676", + "in_reply_to_screen_name": "voodooKobra", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 18:10:06 +0000 2014", + "id": 467004005726846976, + "id_str": "467004005726846976", + "text": "@puellavulnerata @hotelzululima @maradydd @0xdeadbabe A FREE GOLDEN APPLE, HOW NICE. NOTHING CAN GO WRONG", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 467003793721143296, + "in_reply_to_status_id_str": "467003793721143296", + "in_reply_to_user_id": 54666727, + "in_reply_to_user_id_str": "54666727", + "in_reply_to_screen_name": "puellavulnerata", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 18:07:56 +0000 2014", + "id": 467003462275039232, + "id_str": "467003462275039232", + "text": "@puellavulnerata @hotelzululima @maradydd @0xdeadbabe well if NO-ONE ELSE wants to be the most beautiful woman in infosec...", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 467003055058079744, + "in_reply_to_status_id_str": "467003055058079744", + "in_reply_to_user_id": 54666727, + "in_reply_to_user_id_str": "54666727", + "in_reply_to_screen_name": "puellavulnerata", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 18:07:18 +0000 2014", + "id": 467003302199439360, + "id_str": "467003302199439360", + "text": "WTF Twitter Web just popped up a retweet button UNDER my mouse while I was TRYING to click on something else. #UIRage", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 10, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 18:05:18 +0000 2014", + "id": 467002801126920192, + "id_str": "467002801126920192", + "text": "@Kufat I'm not objecting to you objecting to the terminology infosec rock star.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 467002486856114177, + "in_reply_to_status_id_str": "467002486856114177", + "in_reply_to_user_id": 207691003, + "in_reply_to_user_id_str": "207691003", + "in_reply_to_screen_name": "Kufat", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 18:02:52 +0000 2014", + "id": 467002186267099136, + "id_str": "467002186267099136", + "text": "@Kufat Yes. Like me.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466999594933841920, + "in_reply_to_status_id_str": "466999594933841920", + "in_reply_to_user_id": 207691003, + "in_reply_to_user_id_str": "207691003", + "in_reply_to_screen_name": "Kufat", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 17:51:51 +0000 2014", + "id": 466999415530881025, + "id_str": "466999415530881025", + "text": "@Kufat *I'm* an infosec rock star. They can't appropriate that.", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 466999053348139009, + "in_reply_to_status_id_str": "466999053348139009", + "in_reply_to_user_id": 207691003, + "in_reply_to_user_id_str": "207691003", + "in_reply_to_screen_name": "Kufat", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 17:47:56 +0000 2014", + "id": 466998427260575745, + "id_str": "466998427260575745", + "text": "Really not a fan of the trend of encouraging infosec students to adopt pseudo-military terminology like ninja and warrior", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 18, + "favorite_count": 22, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 17:45:55 +0000 2014", + "id": 466997922882945024, + "id_str": "466997922882945024", + "text": "@AMadHammer @jennschiffer if they don't self-identify as cyber ninjas then I feel sorry for them being with that headline", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 466996620597673984, + "in_reply_to_status_id_str": "466996620597673984", + "in_reply_to_user_id": 373082240, + "in_reply_to_user_id_str": "373082240", + "in_reply_to_screen_name": "AMadHammer", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 17:15:01 +0000 2014", + "id": 466990145066258435, + "id_str": "466990145066258435", + "text": "@zcobb cyber. Ninjas. Gahh.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466989843239546881, + "in_reply_to_status_id_str": "466989843239546881", + "in_reply_to_user_id": 15508710, + "in_reply_to_user_id_str": "15508710", + "in_reply_to_screen_name": "zcobb", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "tl" + }, + { + "created_at": "Thu May 15 17:14:15 +0000 2014", + "id": 466989952728047616, + "id_str": "466989952728047616", + "text": "@grp ... I may need reminding after I get back from lunch", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466989823937372160, + "in_reply_to_status_id_str": "466989823937372160", + "in_reply_to_user_id": 69459178, + "in_reply_to_user_id_str": "69459178", + "in_reply_to_screen_name": "grp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 17:12:35 +0000 2014", + "id": 466989530932068352, + "id_str": "466989530932068352", + "text": "*inconsolable weeping* http://t.co/0hqitMD1Um", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 81, + "favorite_count": 59, + "favorited": true, + "retweeted": true, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 16:55:17 +0000 2014", + "id": 466985178637012993, + "id_str": "466985178637012993", + "text": "@alethenorio disengage rant.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466983941501906946, + "in_reply_to_status_id_str": "466983941501906946", + "in_reply_to_user_id": 91866444, + "in_reply_to_user_id_str": "91866444", + "in_reply_to_screen_name": "alethenorio", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "fr" + }, + { + "created_at": "Thu May 15 16:54:07 +0000 2014", + "id": 466984885123842048, + "id_str": "466984885123842048", + "text": "@alethenorio And trying to \"fix\" my fear of strange men creeping on me could only POSSIBLY increase my risk, for NO benefit.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466983941501906946, + "in_reply_to_status_id_str": "466983941501906946", + "in_reply_to_user_id": 91866444, + "in_reply_to_user_id_str": "91866444", + "in_reply_to_screen_name": "alethenorio", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 16:53:17 +0000 2014", + "id": 466984676281053184, + "id_str": "466984676281053184", + "text": "@alethenorio I AM A HIGH RISK INDIVIDUAL FOR EXPERIENCING SEXUAL ASSAULT AND RAPE. MANY OF MY FEM FRIENDS ALREADY HAVE BEEN.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466983941501906946, + "in_reply_to_status_id_str": "466983941501906946", + "in_reply_to_user_id": 91866444, + "in_reply_to_user_id_str": "91866444", + "in_reply_to_screen_name": "alethenorio", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 16:51:57 +0000 2014", + "id": 466984340988395520, + "id_str": "466984340988395520", + "text": "@alethenorio okay look this is going to sound really angry because I am in fact already having a very bad day and this is very distressing", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466983941501906946, + "in_reply_to_status_id_str": "466983941501906946", + "in_reply_to_user_id": 91866444, + "in_reply_to_user_id_str": "91866444", + "in_reply_to_screen_name": "alethenorio", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 16:46:47 +0000 2014", + "id": 466983040619925505, + "id_str": "466983040619925505", + "text": "@alethenorio so you know there's a profound and important difference between a phobia of a harmless thing and a fear of a real danger, right", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466982893542465536, + "in_reply_to_status_id_str": "466982893542465536", + "in_reply_to_user_id": 91866444, + "in_reply_to_user_id_str": "91866444", + "in_reply_to_screen_name": "alethenorio", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 16:40:22 +0000 2014", + "id": 466981424382615552, + "id_str": "466981424382615552", + "text": "Can anyone with secret insider knowledge please tell me if it's true Apple will release a 12\" retina Air later this year", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 16:35:14 +0000 2014", + "id": 466980131693944832, + "id_str": "466980131693944832", + "text": "@HaydnJohnson I'm pretty morally opposed to cashing in on the spectacle of the newly dead, yes", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466979754626015232, + "in_reply_to_status_id_str": "466979754626015232", + "in_reply_to_user_id": 334429384, + "in_reply_to_user_id_str": "334429384", + "in_reply_to_screen_name": "HaydnJohnson", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 16:31:18 +0000 2014", + "id": 466979143402659840, + "id_str": "466979143402659840", + "text": "Oh good, a journalist sold the movie rights to his book about a whistleblower and his documents to big media. Just what the world needs.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 6, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 16:09:37 +0000 2014", + "id": 466973685489074176, + "id_str": "466973685489074176", + "text": "@Talen_Lee >.>", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466964858039435264, + "in_reply_to_status_id_str": "466964858039435264", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "vi" + }, + { + "created_at": "Thu May 15 14:56:10 +0000 2014", + "id": 466955204093829121, + "id_str": "466955204093829121", + "text": "@Kufat she also does songs about how awesome it is to be a bike thief so I think she's just glamorizing bad-girlness", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466954985079832576, + "in_reply_to_status_id_str": "466954985079832576", + "in_reply_to_user_id": 207691003, + "in_reply_to_user_id_str": "207691003", + "in_reply_to_screen_name": "Kufat", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 14:55:29 +0000 2014", + "id": 466955028406996992, + "id_str": "466955028406996992", + "text": "@jlwfnord no need to put up a fight!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466954925663342592, + "in_reply_to_status_id_str": "466954925663342592", + "in_reply_to_user_id": 2686861, + "in_reply_to_user_id_str": "2686861", + "in_reply_to_screen_name": "jlwfnord", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 14:54:33 +0000 2014", + "id": 466954793387589633, + "id_str": "466954793387589633", + "text": "@Kufat yes", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466954727037874176, + "in_reply_to_status_id_str": "466954727037874176", + "in_reply_to_user_id": 207691003, + "in_reply_to_user_id_str": "207691003", + "in_reply_to_screen_name": "Kufat", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Thu May 15 14:52:53 +0000 2014", + "id": 466954376603770880, + "id_str": "466954376603770880", + "text": "@Kufat stakeout", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466954324891807744, + "in_reply_to_status_id_str": "466954324891807744", + "in_reply_to_user_id": 207691003, + "in_reply_to_user_id_str": "207691003", + "in_reply_to_screen_name": "Kufat", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 14:52:27 +0000 2014", + "id": 466954267010813952, + "id_str": "466954267010813952", + "text": "and of course it's catchy so when I hear it I have her creepy stalker manifesto echoing in my head for hours", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 14:47:02 +0000 2014", + "id": 466952904981905408, + "id_str": "466952904981905408", + "text": "@derspiny it's called stakeout", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466952836501090304, + "in_reply_to_status_id_str": "466952836501090304", + "in_reply_to_user_id": 107914977, + "in_reply_to_user_id_str": "107914977", + "in_reply_to_screen_name": "derspiny", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 14:46:24 +0000 2014", + "id": 466952744080007169, + "id_str": "466952744080007169", + "text": "Freezepop has this song that's basically \"I'm a creepy sexual predator but I'm a girl so it's cute hahaha\" and I hate it", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 10, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 14:07:37 +0000 2014", + "id": 466942985033502720, + "id_str": "466942985033502720", + "text": "RT @wwwtxt: In the future, you might have to pay a charge for every E-mail message, every kilobyte of data, and every hypertext link you fo…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Thu May 15 14:07:04 +0000 2014", + "id": 466942844507553793, + "id_str": "466942844507553793", + "text": "In the future, you might have to pay a charge for every E-mail message, every kilobyte of data, and every hypertext link you follow. ☯94MAY", + "source": "Buffer", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 207756340, + "id_str": "207756340" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 98, + "favorite_count": 58, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 98, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 13:48:39 +0000 2014", + "id": 466938213178048512, + "id_str": "466938213178048512", + "text": "RT @_wirepair: The benefit of using microsoft products is that at least I know it's going to the NSA, other products/services you have to g…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Thu May 15 13:25:23 +0000 2014", + "id": 466932356373565440, + "id_str": "466932356373565440", + "text": "The benefit of using microsoft products is that at least I know it's going to the NSA, other products/services you have to guess.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 253384212, + "id_str": "253384212" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 12, + "favorite_count": 7, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 12, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 13:46:16 +0000 2014", + "id": 466937611047931905, + "id_str": "466937611047931905", + "text": "@zauspar the word they're looking for is power user: a \"consumer\" who also \"does things\" with their personal computer", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466926988620333056, + "in_reply_to_status_id_str": "466926988620333056", + "in_reply_to_user_id": 216571343, + "in_reply_to_user_id_str": "216571343", + "in_reply_to_screen_name": "zauspar", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 13:43:38 +0000 2014", + "id": 466936946737311744, + "id_str": "466936946737311744", + "text": "@aspects_ebooks that would be the end.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466923077579059201, + "in_reply_to_status_id_str": "466923077579059201", + "in_reply_to_user_id": 2345404375, + "in_reply_to_user_id_str": "2345404375", + "in_reply_to_screen_name": "aspects_ebooks", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 11:28:01 +0000 2014", + "id": 466902819694321664, + "id_str": "466902819694321664", + "text": "@Tuplet yes. Congrats! You don't harass women in public", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466858806853373952, + "in_reply_to_status_id_str": "466858806853373952", + "in_reply_to_user_id": 34310651, + "in_reply_to_user_id_str": "34310651", + "in_reply_to_screen_name": "Tuplet", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 05:15:10 +0000 2014", + "id": 466808988513083392, + "id_str": "466808988513083392", + "text": "RT @NSA_PR: In \"How the Grinch stole secrets,\" instead of learning his lesson and having his heart grow three sizes, he gets a drone strike.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Wed May 14 23:25:41 +0000 2014", + "id": 466721039758553089, + "id_str": "466721039758553089", + "text": "In \"How the Grinch stole secrets,\" instead of learning his lesson and having his heart grow three sizes, he gets a drone strike.", + "source": "TweetDeck", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 1578519660, + "id_str": "1578519660" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 28, + "favorite_count": 17, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 28, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 05:11:29 +0000 2014", + "id": 466808061542535168, + "id_str": "466808061542535168", + "text": "Perfect bot https://t.co/5KmsgPZShX", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "quoted_status_id": 466807531424477184, + "quoted_status_id_str": "466807531424477184", + "retweet_count": 0, + "favorite_count": 12, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 05:09:19 +0000 2014", + "id": 466807514768887808, + "id_str": "466807514768887808", + "text": "RT @AmberBaldet: Prom season resources for students & educators via @LambdaLegal: http://t.co/lOGwYo94rQ #LGBTQ #KnowYourRights http://t.co…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Thu May 15 02:41:00 +0000 2014", + "id": 466770191200710656, + "id_str": "466770191200710656", + "text": "Prom season resources for students & educators via @LambdaLegal: http://t.co/lOGwYo94rQ #LGBTQ #KnowYourRights http://t.co/S5XbsaL7c6", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 466642064080658432, + "in_reply_to_status_id_str": "466642064080658432", + "in_reply_to_user_id": 21669123, + "in_reply_to_user_id_str": "21669123", + "in_reply_to_screen_name": "LambdaLegal", + "user": { + "id": 14872837, + "id_str": "14872837" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 29, + "favorite_count": 28, + "entities": { + "hashtags": [ + { + "text": "LGBTQ", + "indices": [ + 92, + 98 + ] + }, + { + "text": "KnowYourRights", + "indices": [ + 99, + 114 + ] + } + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/lOGwYo94rQ", + "expanded_url": "http://bit.ly/RRhi2F", + "display_url": "bit.ly/RRhi2F", + "indices": [ + 69, + 91 + ] + } + ], + "user_mentions": [ + { + "screen_name": "LambdaLegal", + "name": "Lambda Legal", + "id": 21669123, + "id_str": "21669123", + "indices": [ + 55, + 67 + ] + } + ], + "media": [ + { + "id": 466642062956572672, + "id_str": "466642062956572672", + "indices": [ + 115, + 137 + ], + "media_url": "http://pbs.twimg.com/media/BnnYe9_IMAA7JGn.png", + "media_url_https": "https://pbs.twimg.com/media/BnnYe9_IMAA7JGn.png", + "url": "http://t.co/S5XbsaL7c6", + "display_url": "pic.twitter.com/S5XbsaL7c6", + "expanded_url": "http://twitter.com/LambdaLegal/status/466642064080658432/photo/1", + "type": "photo", + "sizes": { + "medium": { + "w": 600, + "h": 600, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 800, + "h": 800, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 340, + "resize": "fit" + } + }, + "source_status_id": 466642064080658432, + "source_status_id_str": "466642064080658432" + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 29, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 04:47:46 +0000 2014", + "id": 466802091986415616, + "id_str": "466802091986415616", + "text": "@rantyben joke's on you, I don't know how to cook anything yet", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466765318312828928, + "in_reply_to_status_id_str": "466765318312828928", + "in_reply_to_user_id": 977910404, + "in_reply_to_user_id_str": "977910404", + "in_reply_to_screen_name": "rantyben", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 04:37:24 +0000 2014", + "id": 466799485491089408, + "id_str": "466799485491089408", + "text": "@kebesays yeah I've been known to see the Sun shining through someone :)", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466798936007516161, + "in_reply_to_status_id_str": "466798936007516161", + "in_reply_to_user_id": 41912279, + "in_reply_to_user_id_str": "41912279", + "in_reply_to_screen_name": "kebesays", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 04:34:45 +0000 2014", + "id": 466798819019984896, + "id_str": "466798819019984896", + "text": "(The ray characters are no longer there. They rendered obnoxiously on iOS.)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 04:33:54 +0000 2014", + "id": 466798602233593856, + "id_str": "466798602233593856", + "text": "@kebesays (for accuracy: recently former Microsoft)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466797751003791360, + "in_reply_to_status_id_str": "466797751003791360", + "in_reply_to_user_id": 41912279, + "in_reply_to_user_id_str": "41912279", + "in_reply_to_screen_name": "kebesays", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 04:33:02 +0000 2014", + "id": 466798384914112512, + "id_str": "466798384914112512", + "text": "@kebesays which is why, when someone in a collared shirt told me to stop being mean to poor DRM shippers, I knew he was Microsoft :)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466797751003791360, + "in_reply_to_status_id_str": "466797751003791360", + "in_reply_to_user_id": 41912279, + "in_reply_to_user_id_str": "41912279", + "in_reply_to_screen_name": "kebesays", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 04:31:57 +0000 2014", + "id": 466798113714233344, + "id_str": "466798113714233344", + "text": "@kebesays the big tech companies have corporate cultures that self-select and reinforce", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466797751003791360, + "in_reply_to_status_id_str": "466797751003791360", + "in_reply_to_user_id": 41912279, + "in_reply_to_user_id_str": "41912279", + "in_reply_to_screen_name": "kebesays", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 04:31:23 +0000 2014", + "id": 466797968411357185, + "id_str": "466797968411357185", + "text": "@thevitaes they were only present for about 30 seconds", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466797719781380096, + "in_reply_to_status_id_str": "466797719781380096", + "in_reply_to_user_id": 15586240, + "in_reply_to_user_id_str": "15586240", + "in_reply_to_screen_name": "thevitaes", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 04:28:17 +0000 2014", + "id": 466797190095310849, + "id_str": "466797190095310849", + "text": "RT @Archaemic: ⚠️⚠️⚡️\n👫💏\n⚠️⚠️⚡️\n👫💏\n👫💏", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Thu May 15 01:35:15 +0000 2014", + "id": 466753644772093952, + "id_str": "466753644772093952", + "text": "⚠️⚠️⚡️\n👫💏\n⚠️⚠️⚡️\n👫💏\n👫💏", + "source": "Twitter for Mac", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 222006525, + "id_str": "222006525" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 4, + "favorite_count": 7, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "de" + }, + "retweet_count": 4, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "de" + }, + { + "created_at": "Thu May 15 04:27:22 +0000 2014", + "id": 466796961643782145, + "id_str": "466796961643782145", + "text": "@zhuowei took them off already. Giant question marks on iOS", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466796876251934721, + "in_reply_to_status_id_str": "466796876251934721", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 04:25:56 +0000 2014", + "id": 466796598823886848, + "id_str": "466796598823886848", + "text": "I'm super disappointed these emanating ray characters don't render on all common platforms. http://t.co/A6Y6MbfFaj", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 04:22:21 +0000 2014", + "id": 466795695219806209, + "id_str": "466795695219806209", + "text": "@FakeRobotGamer I think all of thse and the Dingbats page should work. Includes gender symbols http://t.co/1qx4A51hO7", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466793746470678528, + "in_reply_to_status_id_str": "466793746470678528", + "in_reply_to_user_id": 1263295052, + "in_reply_to_user_id_str": "1263295052", + "in_reply_to_screen_name": "FakeRobotGamer", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 04:20:10 +0000 2014", + "id": 466795145858269184, + "id_str": "466795145858269184", + "text": "@Kufat I don't knooooow", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466794973363318784, + "in_reply_to_status_id_str": "466794973363318784", + "in_reply_to_user_id": 207691003, + "in_reply_to_user_id_str": "207691003", + "in_reply_to_screen_name": "Kufat", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 04:18:07 +0000 2014", + "id": 466794633729556480, + "id_str": "466794633729556480", + "text": "@alvaro_asd @minacriss ಠ_ಠ", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466791677467058178, + "in_reply_to_status_id_str": "466791677467058178", + "in_reply_to_user_id": 261237020, + "in_reply_to_user_id_str": "261237020", + "in_reply_to_screen_name": "alvaro_asd", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "kn" + }, + { + "created_at": "Thu May 15 04:14:18 +0000 2014", + "id": 466793671988244480, + "id_str": "466793671988244480", + "text": "@anarchival I don't think spiders really have a reputation for being from 6 to 13% committers of sexual crimes against my gender though.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466792433184178176, + "in_reply_to_status_id_str": "466792433184178176", + "in_reply_to_user_id": 796279, + "in_reply_to_user_id_str": "796279", + "in_reply_to_screen_name": "anarchival", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 04:13:21 +0000 2014", + "id": 466793430408908800, + "id_str": "466793430408908800", + "text": "@FakeRobotGamer so like, weather symbols, chess symbols, some other wingdings", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466792269941444609, + "in_reply_to_status_id_str": "466792269941444609", + "in_reply_to_user_id": 1263295052, + "in_reply_to_user_id_str": "1263295052", + "in_reply_to_screen_name": "FakeRobotGamer", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 04:13:10 +0000 2014", + "id": 466793385957654528, + "id_str": "466793385957654528", + "text": "@FakeRobotGamer it only works with glyphs that predate \"emoji\" as such as they're considered Basic Multilingual Plane", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466792269941444609, + "in_reply_to_status_id_str": "466792269941444609", + "in_reply_to_user_id": 1263295052, + "in_reply_to_user_id_str": "1263295052", + "in_reply_to_screen_name": "FakeRobotGamer", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 04:04:12 +0000 2014", + "id": 466791130752090113, + "id_str": "466791130752090113", + "text": "I'm sure she was trying to be helpful by suggesting new and different things but yeah really *not* helpful to the problem at hand", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 4, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 04:00:37 +0000 2014", + "id": 466790229714956288, + "id_str": "466790229714956288", + "text": "\"It really frightens me when strange men make comments on my femininity!\" \"Have you tried presenting even more explicitly femme?\"", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 6, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 03:59:38 +0000 2014", + "id": 466789980401332224, + "id_str": "466789980401332224", + "text": "Right after I told the psychologist I was deeply frightened of creeps in public, she suggested I should wear more dresses. ಠ_ಠ", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 6, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 03:50:04 +0000 2014", + "id": 466787572149022720, + "id_str": "466787572149022720", + "text": "@fivetonsflax AM I WRONG?", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466787431354994689, + "in_reply_to_status_id_str": "466787431354994689", + "in_reply_to_user_id": 14291351, + "in_reply_to_user_id_str": "14291351", + "in_reply_to_screen_name": "fivetonsflax", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 03:48:53 +0000 2014", + "id": 466787274965790720, + "id_str": "466787274965790720", + "text": "@fivetonsflax https://t.co/EhoKjfVwTe", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466783902724808704, + "in_reply_to_status_id_str": "466783902724808704", + "in_reply_to_user_id": 14291351, + "in_reply_to_user_id_str": "14291351", + "in_reply_to_screen_name": "fivetonsflax", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "quoted_status_id": 466763268900409345, + "quoted_status_id_str": "466763268900409345", + "quoted_status": { + "created_at": "Thu May 15 02:13:30 +0000 2014", + "id": 466763268900409345, + "id_str": "466763268900409345", + "text": "@copumpkin then you work at Apple.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466763211962716160, + "in_reply_to_status_id_str": "466763211962716160", + "in_reply_to_user_id": 13447902, + "in_reply_to_user_id_str": "13447902", + "in_reply_to_screen_name": "copumpkin", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 6, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "copumpkin", + "name": "Daniel Peebles", + "id": 13447902, + "id_str": "13447902", + "indices": [ + 0, + 10 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Thu May 15 03:47:00 +0000 2014", + "id": 466786801009848320, + "id_str": "466786801009848320", + "text": "@zhuowei just your everyday good and proper Tokharika girl http://t.co/GoHTZencLO cc @m1sp", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466783254901571584, + "in_reply_to_status_id_str": "466783254901571584", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 03:33:39 +0000 2014", + "id": 466783440453398528, + "id_str": "466783440453398528", + "text": "@zhuowei haha she's actually 100% totally mundane. You can tell because she's not crazy", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466783254901571584, + "in_reply_to_status_id_str": "466783254901571584", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 03:28:24 +0000 2014", + "id": 466782119562592256, + "id_str": "466782119562592256", + "text": "@zhuowei @Talen_Lee she doesn't die, actually! You know. Probably.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466779656436187136, + "in_reply_to_status_id_str": "466779656436187136", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 03:17:36 +0000 2014", + "id": 466779403016740865, + "id_str": "466779403016740865", + "text": "@zhuowei @Talen_Lee yeah, THAT totally works out and isn't a problem", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466779262242942976, + "in_reply_to_status_id_str": "466779262242942976", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 02:42:33 +0000 2014", + "id": 466770580331442176, + "id_str": "466770580331442176", + "text": "RT @ThePokeBot: Everything almost went nightmarishly wrong 2.5 minutes ahead at Agatha in our latest PB http://t.co/lAtpqhaj22 (2m24s)", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Thu May 15 01:35:31 +0000 2014", + "id": 466753711339864065, + "id_str": "466753711339864065", + "text": "Everything almost went nightmarishly wrong 2.5 minutes ahead at Agatha in our latest PB http://t.co/lAtpqhaj22 (2m24s)", + "source": "Twitter for Mac", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2436473940, + "id_str": "2436473940" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 2, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/lAtpqhaj22", + "expanded_url": "http://youtu.be/asLlS9A5Ymo", + "display_url": "youtu.be/asLlS9A5Ymo", + "indices": [ + 88, + 110 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 1, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 02:34:25 +0000 2014", + "id": 466768535880863744, + "id_str": "466768535880863744", + "text": "@Talen_Lee @zhuowei Houri is Genre Savvy, so they never get married, which would just be sealing their doom", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466768395317567488, + "in_reply_to_status_id_str": "466768395317567488", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 02:32:39 +0000 2014", + "id": 466768092102545408, + "id_str": "466768092102545408", + "text": "@zhuowei @Talen_Lee Aramaz and Houri are both straight. Which means they get coupled by default.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466767877664567296, + "in_reply_to_status_id_str": "466767877664567296", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 02:30:31 +0000 2014", + "id": 466767553822732288, + "id_str": "466767553822732288", + "text": "@zhuowei @Talen_Lee if Talen wants to write gay fanfic of my characters I'm very open to this possibility", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466767346959273985, + "in_reply_to_status_id_str": "466767346959273985", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 02:28:17 +0000 2014", + "id": 466766990821298177, + "id_str": "466766990821298177", + "text": "No-Context IRC:\n<@smeerp> I don't log, actually; I think that's more up mispy's alley :P\n< abadidea> @m1sp is the Cutie NSA", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 11, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 02:26:08 +0000 2014", + "id": 466766448497803265, + "id_str": "466766448497803265", + "text": "@mike_913 Jeremy Soule does soundtracks for video games. Such as Morrowind.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466766368725942273, + "in_reply_to_status_id_str": "466766368725942273", + "in_reply_to_user_id": 102264133, + "in_reply_to_user_id_str": "102264133", + "in_reply_to_screen_name": "mike_913", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 02:25:32 +0000 2014", + "id": 466766299100880896, + "id_str": "466766299100880896", + "text": "@zhuowei @Talen_Lee well good, I don't have to exclude you from the secret aspects erotica distribution list that doesn't exist.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466764428206022658, + "in_reply_to_status_id_str": "466764428206022658", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 02:24:03 +0000 2014", + "id": 466765925505441793, + "id_str": "466765925505441793", + "text": "@WithMetta the government", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466765490002874368, + "in_reply_to_status_id_str": "466765490002874368", + "in_reply_to_user_id": 7376512, + "in_reply_to_user_id_str": "7376512", + "in_reply_to_screen_name": "WithMetta", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 02:23:36 +0000 2014", + "id": 466765811093209088, + "id_str": "466765811093209088", + "text": "@redsoxunixgeek I believe you, I promise. Not making fun of Utah, I come from a rather rural place with no computers :)", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466765275883261952, + "in_reply_to_status_id_str": "466765275883261952", + "in_reply_to_user_id": 14481812, + "in_reply_to_user_id_str": "14481812", + "in_reply_to_screen_name": "redsoxunixgeek", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 02:20:43 +0000 2014", + "id": 466765086757879808, + "id_str": "466765086757879808", + "text": "@redsoxunixgeek I mean the temple specifically, not the entire city", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466764989013831680, + "in_reply_to_status_id_str": "466764989013831680", + "in_reply_to_user_id": 14481812, + "in_reply_to_user_id_str": "14481812", + "in_reply_to_screen_name": "redsoxunixgeek", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 02:19:24 +0000 2014", + "id": 466764754963279872, + "id_str": "466764754963279872", + "text": "@redsoxunixgeek well the only thing I know for sure exists in Salt Lake City is a temple and I don't even know if they have computers", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466763441609248769, + "in_reply_to_status_id_str": "466763441609248769", + "in_reply_to_user_id": 14481812, + "in_reply_to_user_id_str": "14481812", + "in_reply_to_screen_name": "redsoxunixgeek", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 02:16:48 +0000 2014", + "id": 466764100622512128, + "id_str": "466764100622512128", + "text": "@zhuowei didn't I find out recently you're like seventeen", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466763606365728768, + "in_reply_to_status_id_str": "466763606365728768", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 02:13:30 +0000 2014", + "id": 466763268900409345, + "id_str": "466763268900409345", + "text": "@copumpkin then you work at Apple.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466763211962716160, + "in_reply_to_status_id_str": "466763211962716160", + "in_reply_to_user_id": 13447902, + "in_reply_to_user_id_str": "13447902", + "in_reply_to_screen_name": "copumpkin", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 6, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 02:12:53 +0000 2014", + "id": 466763114709393409, + "id_str": "466763114709393409", + "text": "My hobby: guessing which tech company someone who tweets at me works for before checking their profile. Getting pretty good at it.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 13, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 02:09:43 +0000 2014", + "id": 466762320426041345, + "id_str": "466762320426041345", + "text": "@zhuowei it can be both!", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466762071002996738, + "in_reply_to_status_id_str": "466762071002996738", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 02:01:24 +0000 2014", + "id": 466760224532348929, + "id_str": "466760224532348929", + "text": "@ericlaw and yes -- I understand that DRM is rooted in the media producers rather than the media vendors as such.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466759912152764416, + "in_reply_to_status_id_str": "466759912152764416", + "in_reply_to_user_id": 5725652, + "in_reply_to_user_id_str": "5725652", + "in_reply_to_screen_name": "ericlaw", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 02:01:03 +0000 2014", + "id": 466760138008064000, + "id_str": "466760138008064000", + "text": "@ericlaw Customers want movies. \n\nThe existence of DRM is not a requirement for movies.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466759912152764416, + "in_reply_to_status_id_str": "466759912152764416", + "in_reply_to_user_id": 5725652, + "in_reply_to_user_id_str": "5725652", + "in_reply_to_screen_name": "ericlaw", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 01:53:20 +0000 2014", + "id": 466758195692589056, + "id_str": "466758195692589056", + "text": "@rantyben great, you just assigned me homework: a 54-color pixelated skin for the entire game", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466757955853901824, + "in_reply_to_status_id_str": "466757955853901824", + "in_reply_to_user_id": 977910404, + "in_reply_to_user_id_str": "977910404", + "in_reply_to_screen_name": "rantyben", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 01:48:13 +0000 2014", + "id": 466756906925981696, + "id_str": "466756906925981696", + "text": "@zauspar musically speaking I want to BE Jeremy Soule, but this is the best I can do so far. https://t.co/10okZN4SzO", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466756411070771200, + "in_reply_to_status_id_str": "466756411070771200", + "in_reply_to_user_id": 216571343, + "in_reply_to_user_id_str": "216571343", + "in_reply_to_screen_name": "zauspar", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 01:47:15 +0000 2014", + "id": 466756665791225857, + "id_str": "466756665791225857", + "text": ".@zauspar true story: my grandmother told me I couldn't play Morrowind bc it was too scary-looking. I cranked up the gamma and she said okay", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466756411070771200, + "in_reply_to_status_id_str": "466756411070771200", + "in_reply_to_user_id": 216571343, + "in_reply_to_user_id_str": "216571343", + "in_reply_to_screen_name": "zauspar", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 4, + "favorite_count": 17, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 01:45:47 +0000 2014", + "id": 466756295404843008, + "id_str": "466756295404843008", + "text": "@zauspar Morrowind itself was a major influence on me re: Not Generic Western Europe Fantasy", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466755334921797632, + "in_reply_to_status_id_str": "466755334921797632", + "in_reply_to_user_id": 216571343, + "in_reply_to_user_id_str": "216571343", + "in_reply_to_screen_name": "zauspar", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 01:45:02 +0000 2014", + "id": 466756105440604160, + "id_str": "466756105440604160", + "text": "@ZetaSyanthis I have some Audiomachine already (unhelpfully generic name IMO!) but I haven't heard of that other.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466755836849553408, + "in_reply_to_status_id_str": "466755836849553408", + "in_reply_to_user_id": 24360488, + "in_reply_to_user_id_str": "24360488", + "in_reply_to_screen_name": "ZetaSyanthis", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 01:40:47 +0000 2014", + "id": 466755039592083457, + "id_str": "466755039592083457", + "text": "but yeah full disclosure all my fantasy writing is done under the influence of Jeremy Soule soundtracks such as Morrowind", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 13, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 01:33:52 +0000 2014", + "id": 466753298582605824, + "id_str": "466753298582605824", + "text": "Wait, I was just protesting Google for abusing their browser<->media hegemony. I screwed up ALREADY.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 6, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 01:33:00 +0000 2014", + "id": 466753078126211073, + "id_str": "466753078126211073", + "text": "Google: \"Buy this 47-track album! One (exactly one) of the songs is by yooouuuur favorite, Jeeeeremy Soooouuuule\"\n\nMe: \"well okay google\"", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 01:29:29 +0000 2014", + "id": 466752195837591553, + "id_str": "466752195837591553", + "text": "@mwoliver @mozilla @Raed667 and here we find that notorious gap between theory and practice.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466751110943105024, + "in_reply_to_status_id_str": "466751110943105024", + "in_reply_to_user_id": 23973308, + "in_reply_to_user_id_str": "23973308", + "in_reply_to_screen_name": "mwoliver", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 00:44:25 +0000 2014", + "id": 466740852275298304, + "id_str": "466740852275298304", + "text": "@CaptainSaicin half the point is that a family gathered around a TV is unlikely to notice someone being careful unless they have a dog.", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 466738841781813248, + "in_reply_to_status_id_str": "466738841781813248", + "in_reply_to_user_id": 19306354, + "in_reply_to_user_id_str": "19306354", + "in_reply_to_screen_name": "CaptainSaicin", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 00:35:48 +0000 2014", + "id": 466738683434266624, + "id_str": "466738683434266624", + "text": "— but to rob the upstairs while the family was together downstairs. Apparently it was an extremely reliable method for him.", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 466738487715045376, + "in_reply_to_status_id_str": "466738487715045376", + "in_reply_to_user_id": 126030998, + "in_reply_to_user_id_str": "126030998", + "in_reply_to_screen_name": "0xabad1dea", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 7, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 00:35:01 +0000 2014", + "id": 466738487715045376, + "id_str": "466738487715045376", + "text": "When I was very young, I read the memoirs of a professional thief, probably in Reader's Digest. His advice was to NOT rob empty houses—", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 8, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 00:20:33 +0000 2014", + "id": 466734844777463808, + "id_str": "466734844777463808", + "text": "@andrewshumate doubles as a deathly hallow in a pinch. http://t.co/OLC4c7O4da", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466732864420458496, + "in_reply_to_status_id_str": "466732864420458496", + "in_reply_to_user_id": 14766863, + "in_reply_to_user_id_str": "14766863", + "in_reply_to_screen_name": "andrewshumate", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 00:17:41 +0000 2014", + "id": 466734123638591488, + "id_str": "466734123638591488", + "text": "Good news and bad news about STARTTLS https://t.co/OrRXcnXjR9", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 5, + "favorite_count": 9, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 00:11:46 +0000 2014", + "id": 466732636694925312, + "id_str": "466732636694925312", + "text": "@Talen_Lee you seem to be trying as hard as you can to use this word as much as possible", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466732337448116227, + "in_reply_to_status_id_str": "466732337448116227", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 00:10:04 +0000 2014", + "id": 466732206409670656, + "id_str": "466732206409670656", + "text": "@Talen_Lee I’m pretty sure it’s endemic to the battlefield", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466731869934202880, + "in_reply_to_status_id_str": "466731869934202880", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 15 00:02:20 +0000 2014", + "id": 466730260823031808, + "id_str": "466730260823031808", + "text": "@TonyAbotMHR @m1sp but what about the heart of the cards", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466729678364225536, + "in_reply_to_status_id_str": "466729678364225536", + "in_reply_to_user_id": 1391675646, + "in_reply_to_user_id_str": "1391675646", + "in_reply_to_screen_name": "TonyAbotMHR", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 14 23:45:53 +0000 2014", + "id": 466726120188960768, + "id_str": "466726120188960768", + "text": "@grp also, like, xbox, and all the ways MS has to take a cut from media consumption on that", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466725764184813568, + "in_reply_to_status_id_str": "466725764184813568", + "in_reply_to_user_id": 69459178, + "in_reply_to_user_id_str": "69459178", + "in_reply_to_screen_name": "grp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 14 23:39:50 +0000 2014", + "id": 466724599208890368, + "id_str": "466724599208890368", + "text": "@homakov I refuse to use them also but my twitter very definitely has unique password because it is my soul", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466724366836068352, + "in_reply_to_status_id_str": "466724366836068352", + "in_reply_to_user_id": 86890115, + "in_reply_to_user_id_str": "86890115", + "in_reply_to_screen_name": "homakov", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 14 23:37:29 +0000 2014", + "id": 466724007459700736, + "id_str": "466724007459700736", + "text": "@homakov your coin base and your twitter have the same password??", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466723747672903680, + "in_reply_to_status_id_str": "466723747672903680", + "in_reply_to_user_id": 86890115, + "in_reply_to_user_id_str": "86890115", + "in_reply_to_screen_name": "homakov", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 14 23:30:43 +0000 2014", + "id": 466722304148639744, + "id_str": "466722304148639744", + "text": "@landley in particular I have a list of the most important 10% or so of people I follow for emergency gap recovery", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466721365928595456, + "in_reply_to_status_id_str": "466721365928595456", + "in_reply_to_user_id": 14326287, + "in_reply_to_user_id_str": "14326287", + "in_reply_to_screen_name": "landley", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 14 23:29:27 +0000 2014", + "id": 466721988464345089, + "id_str": "466721988464345089", + "text": ".@thatcks @cgranade it’s still a closed source piece of code from Adobe so I’m unclear on how that’s not actually Flash", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466721474242306048, + "in_reply_to_status_id_str": "466721474242306048", + "in_reply_to_user_id": 431988302, + "in_reply_to_user_id_str": "431988302", + "in_reply_to_screen_name": "thatcks", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 4, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 14 23:28:25 +0000 2014", + "id": 466721725653475328, + "id_str": "466721725653475328", + "text": "@landley timelines get gaps at ~800 tweets; lists count as their own timeline; construct lists that contain a subset of followers", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466721365928595456, + "in_reply_to_status_id_str": "466721365928595456", + "in_reply_to_user_id": 14326287, + "in_reply_to_user_id_str": "14326287", + "in_reply_to_screen_name": "landley", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 14 23:26:51 +0000 2014", + "id": 466721332533923840, + "id_str": "466721332533923840", + "text": "@homakov ahh. You’re creeping!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466721159170752512, + "in_reply_to_status_id_str": "466721159170752512", + "in_reply_to_user_id": 86890115, + "in_reply_to_user_id_str": "86890115", + "in_reply_to_screen_name": "homakov", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 14 23:24:48 +0000 2014", + "id": 466720815451758592, + "id_str": "466720815451758592", + "text": "@landley I trust you know about the lists workaround", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466720614246793216, + "in_reply_to_status_id_str": "466720614246793216", + "in_reply_to_user_id": 14326287, + "in_reply_to_user_id_str": "14326287", + "in_reply_to_screen_name": "landley", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 14 23:19:07 +0000 2014", + "id": 466719383943786496, + "id_str": "466719383943786496", + "text": "@arebee I’m working from the perspective of what made the web good and what will keep it good, not Google and MS’s profit maximizations.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466719081056727040, + "in_reply_to_status_id_str": "466719081056727040", + "in_reply_to_user_id": 14705385, + "in_reply_to_user_id_str": "14705385", + "in_reply_to_screen_name": "arebee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 14 23:14:15 +0000 2014", + "id": 466718159236370433, + "id_str": "466718159236370433", + "text": "@grp When I use my Windows 8 tablet, there's this \"Music\" app it came with that wants me to buy MP3s via Microsoft...", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466717970413023232, + "in_reply_to_status_id_str": "466717970413023232", + "in_reply_to_user_id": 69459178, + "in_reply_to_user_id_str": "69459178", + "in_reply_to_screen_name": "grp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 14 23:11:53 +0000 2014", + "id": 466717564807421952, + "id_str": "466717564807421952", + "text": "@Raed667 in theory? But they are completely right that it would just cause people to say \"well it works in Chrome so... hello Chrome\"", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466712760978792449, + "in_reply_to_status_id_str": "466712760978792449", + "in_reply_to_user_id": 229803979, + "in_reply_to_user_id_str": "229803979", + "in_reply_to_screen_name": "Raed667", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 14 23:10:17 +0000 2014", + "id": 466717164578549760, + "id_str": "466717164578549760", + "text": "@dozykraut Mozilla did the thing I realistically expected them to but is a dammed shame IMO.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466716927663280128, + "in_reply_to_status_id_str": "466716927663280128", + "in_reply_to_user_id": 23579460, + "in_reply_to_user_id_str": "23579460", + "in_reply_to_screen_name": "dozykraut", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 14 23:09:17 +0000 2014", + "id": 466716911959437313, + "id_str": "466716911959437313", + "text": "@vogon I reckon.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466716727984652288, + "in_reply_to_status_id_str": "466716727984652288", + "in_reply_to_user_id": 6326912, + "in_reply_to_user_id_str": "6326912", + "in_reply_to_screen_name": "vogon", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 14 23:08:08 +0000 2014", + "id": 466716620824408064, + "id_str": "466716620824408064", + "text": "Changing my IRL name to Melissa Danger Sign Unicode Glyph", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 6, + "favorite_count": 22, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 14 23:03:38 +0000 2014", + "id": 466715489885233154, + "id_str": "466715489885233154", + "text": "@dozykraut blaming private individuals for wanting to see movies is not a productive use of moral stamina IMO", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466715228692967425, + "in_reply_to_status_id_str": "466715228692967425", + "in_reply_to_user_id": 23579460, + "in_reply_to_user_id_str": "23579460", + "in_reply_to_screen_name": "dozykraut", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 14 23:02:05 +0000 2014", + "id": 466715098976108545, + "id_str": "466715098976108545", + "text": "@Unaz to introduce DRM and content licensing directly into the base markup language of the internet", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466714703595462657, + "in_reply_to_status_id_str": "466714703595462657", + "in_reply_to_user_id": 16113206, + "in_reply_to_user_id_str": "16113206", + "in_reply_to_screen_name": "Unaz", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 14 23:00:02 +0000 2014", + "id": 466714585492250626, + "id_str": "466714585492250626", + "text": "@DrPizza but that’s just for desktop computers: for closed platforms it is in fact mostly transparent I concede.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466712207850754048, + "in_reply_to_status_id_str": "466712207850754048", + "in_reply_to_user_id": 11375732, + "in_reply_to_user_id_str": "11375732", + "in_reply_to_screen_name": "DrPizza", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 14 22:59:38 +0000 2014", + "id": 466714481591332865, + "id_str": "466714481591332865", + "text": "@DrPizza really? In my experience it’s been: you want me to install silver what? How annoying", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466712207850754048, + "in_reply_to_status_id_str": "466712207850754048", + "in_reply_to_user_id": 11375732, + "in_reply_to_user_id_str": "11375732", + "in_reply_to_screen_name": "DrPizza", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 14 22:57:50 +0000 2014", + "id": 466714031295066112, + "id_str": "466714031295066112", + "text": "Two of those three companies are both browser vendors AND media vendors. ⚠ DANGER ⚠", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 11, + "favorite_count": 9, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 14 22:54:38 +0000 2014", + "id": 466713223778275330, + "id_str": "466713223778275330", + "text": "@BillStewart415 laser eye surgery is easy to perform, at least for a tweezers in living eyeballs replacement.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466712724547072000, + "in_reply_to_status_id_str": "466712724547072000", + "in_reply_to_user_id": 330433609, + "in_reply_to_user_id_str": "330433609", + "in_reply_to_screen_name": "BillStewart415", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 14 22:51:43 +0000 2014", + "id": 466712491637358592, + "id_str": "466712491637358592", + "text": "I invite you to check which three corporate names grace the header of the HTML DRM standard. https://t.co/zLLU9J1vh6", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 248, + "favorite_count": 65, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed May 14 22:49:56 +0000 2014", + "id": 466712043710840833, + "id_str": "466712043710840833", + "text": ".@cgranade we expect Better Of Mozilla, whence the last time we were angry, but this time it’s something all the browsers are doing 😔", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466711062684119041, + "in_reply_to_status_id_str": "466711062684119041", + "in_reply_to_user_id": 15039770, + "in_reply_to_user_id_str": "15039770", + "in_reply_to_screen_name": "cgranade", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 14 22:45:13 +0000 2014", + "id": 466710853006671874, + "id_str": "466710853006671874", + "text": "Mozilla is not the problem re: DRM. The standards have been fundamentally compromised by private corporate interests.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 45, + "favorite_count": 22, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 14 22:34:19 +0000 2014", + "id": 466708110749749248, + "id_str": "466708110749749248", + "text": "@haruki_zaemon @hypatiadotca http://t.co/duPpGQKXz8", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466707860551139328, + "in_reply_to_status_id_str": "466707860551139328", + "in_reply_to_user_id": 14439858, + "in_reply_to_user_id_str": "14439858", + "in_reply_to_screen_name": "haruki_zaemon", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Wed May 14 22:31:34 +0000 2014", + "id": 466707421587447808, + "id_str": "466707421587447808", + "text": "— that is why I nominate the platypus as the security industry mascot. @hypatiadotca \n\nOoh don’t forget the venom.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 7, + "favorite_count": 12, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 14 22:30:52 +0000 2014", + "id": 466707245527736321, + "id_str": "466707245527736321", + "text": "The platypus is a hideous cobbled-together afterthought with a really neat whizbang electrical detection feature built in. @hypatiadotca —", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 7, + "favorite_count": 11, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 14 22:08:32 +0000 2014", + "id": 466701621872041984, + "id_str": "466701621872041984", + "text": "@geekable maybe someone shipped you a bad batch, where I come from it’d be considered rude to never bring up a major haircut at all.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466701040944156672, + "in_reply_to_status_id_str": "466701040944156672", + "in_reply_to_user_id": 755035, + "in_reply_to_user_id_str": "755035", + "in_reply_to_screen_name": "geekable", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 14 22:05:24 +0000 2014", + "id": 466700836240760832, + "id_str": "466700836240760832", + "text": "@geekable like, it’s your right to get a *haircut* whenever and however but most people would at least bring it up first.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466700075172118529, + "in_reply_to_status_id_str": "466700075172118529", + "in_reply_to_user_id": 755035, + "in_reply_to_user_id_str": "755035", + "in_reply_to_screen_name": "geekable", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 14 22:04:23 +0000 2014", + "id": 466700577771388929, + "id_str": "466700577771388929", + "text": "@geekable if you’re in a relationship you want to stay in, it’d be patently and trivially *insane* to have such operations “in secret”", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466700075172118529, + "in_reply_to_status_id_str": "466700075172118529", + "in_reply_to_user_id": 755035, + "in_reply_to_user_id_str": "755035", + "in_reply_to_screen_name": "geekable", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 14 21:57:25 +0000 2014", + "id": 466698825189441536, + "id_str": "466698825189441536", + "text": "@geekable and if you do something you know may or will ruin your relationship that’s kind of your problem", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466698064565387264, + "in_reply_to_status_id_str": "466698064565387264", + "in_reply_to_user_id": 755035, + "in_reply_to_user_id_str": "755035", + "in_reply_to_screen_name": "geekable", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 14 21:56:47 +0000 2014", + "id": 466698664527024129, + "id_str": "466698664527024129", + "text": "@geekable um, yes? You have the legal right to do things for yourself that may ruin your relationship", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466698064565387264, + "in_reply_to_status_id_str": "466698064565387264", + "in_reply_to_user_id": 755035, + "in_reply_to_user_id_str": "755035", + "in_reply_to_screen_name": "geekable", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 14 21:52:49 +0000 2014", + "id": 466697669684232192, + "id_str": "466697669684232192", + "text": "@geekable and yes, duh, it works as hurtful the other way too", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466697172902092800, + "in_reply_to_status_id_str": "466697172902092800", + "in_reply_to_user_id": 755035, + "in_reply_to_user_id_str": "755035", + "in_reply_to_screen_name": "geekable", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 14 21:52:26 +0000 2014", + "id": 466697570501533699, + "id_str": "466697570501533699", + "text": "@geekable exercised bodily autonomy without talking it out***, uhh yes, duh? I already said that two different ways?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466697172902092800, + "in_reply_to_status_id_str": "466697172902092800", + "in_reply_to_user_id": 755035, + "in_reply_to_user_id_str": "755035", + "in_reply_to_screen_name": "geekable", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 14 21:44:28 +0000 2014", + "id": 466695568556056577, + "id_str": "466695568556056577", + "text": "@geekable so the freedom to obtain these operations as a matter of bodily autonomy is important; your responsibility to not hurt spouse.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466694817586896896, + "in_reply_to_status_id_str": "466694817586896896", + "in_reply_to_user_id": 755035, + "in_reply_to_user_id_str": "755035", + "in_reply_to_screen_name": "geekable", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 14 21:43:01 +0000 2014", + "id": 466695203202809856, + "id_str": "466695203202809856", + "text": "@geekable I’m saying it’s a purely interpersonal issue and sane people don’t just ruin their marriage for no reason with surprise operations", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466694817586896896, + "in_reply_to_status_id_str": "466694817586896896", + "in_reply_to_user_id": 755035, + "in_reply_to_user_id_str": "755035", + "in_reply_to_screen_name": "geekable", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 14 21:41:08 +0000 2014", + "id": 466694727228989440, + "id_str": "466694727228989440", + "text": "@hypatiadotca platypus", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466694373758226433, + "in_reply_to_status_id_str": "466694373758226433", + "in_reply_to_user_id": 6742522, + "in_reply_to_user_id_str": "6742522", + "in_reply_to_screen_name": "hypatiadotca", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "sk" + }, + { + "created_at": "Wed May 14 21:31:42 +0000 2014", + "id": 466692351575203843, + "id_str": "466692351575203843", + "text": "@geekable sounds like they’re intending to give individuals maximum latitude in managing their relationships vs their bodily autonomy?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466688147783688192, + "in_reply_to_status_id_str": "466688147783688192", + "in_reply_to_user_id": 755035, + "in_reply_to_user_id_str": "755035", + "in_reply_to_screen_name": "geekable", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 14 21:02:57 +0000 2014", + "id": 466685116941893632, + "id_str": "466685116941893632", + "text": "@DarthNull Skurity!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466672331780538368, + "in_reply_to_status_id_str": "466672331780538368", + "in_reply_to_user_id": 12287142, + "in_reply_to_user_id_str": "12287142", + "in_reply_to_screen_name": "DarthNull", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "lv" + }, + { + "created_at": "Wed May 14 20:58:52 +0000 2014", + "id": 466684091291930624, + "id_str": "466684091291930624", + "text": "@geekable if either of these people do either of these things without talking it out then their relationship has already failed", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466663531845152768, + "in_reply_to_status_id_str": "466663531845152768", + "in_reply_to_user_id": 755035, + "in_reply_to_user_id_str": "755035", + "in_reply_to_screen_name": "geekable", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 14 20:52:35 +0000 2014", + "id": 466682510009970689, + "id_str": "466682510009970689", + "text": "@thegrugq @evacide I’m guessing combo of CC being relatively obscure and him having the sense to not connect straight from NSA .gov", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466652284190203904, + "in_reply_to_status_id_str": "466652284190203904", + "in_reply_to_user_id": 18983429, + "in_reply_to_user_id_str": "18983429", + "in_reply_to_screen_name": "thegrugq", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 14 20:49:55 +0000 2014", + "id": 466681836723531776, + "id_str": "466681836723531776", + "text": "@homakov http://t.co/5k4jcln3X2", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466651409258385408, + "in_reply_to_status_id_str": "466651409258385408", + "in_reply_to_user_id": 86890115, + "in_reply_to_user_id_str": "86890115", + "in_reply_to_screen_name": "homakov", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Wed May 14 20:47:37 +0000 2014", + "id": 466681260380028929, + "id_str": "466681260380028929", + "text": "@zauspar full disclosure; I play-punch my husband all the time, but in the context that he’s twice my size and is cool with it", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466680924697284609, + "in_reply_to_status_id_str": "466680924697284609", + "in_reply_to_user_id": 216571343, + "in_reply_to_user_id_str": "216571343", + "in_reply_to_screen_name": "zauspar", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 14 20:45:55 +0000 2014", + "id": 466680830728105985, + "id_str": "466680830728105985", + "text": "@zauspar sounds like they were being pretty irresponsible then…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466680639165833216, + "in_reply_to_status_id_str": "466680639165833216", + "in_reply_to_user_id": 216571343, + "in_reply_to_user_id_str": "216571343", + "in_reply_to_screen_name": "zauspar", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 14 20:44:42 +0000 2014", + "id": 466680525743468544, + "id_str": "466680525743468544", + "text": "@zauspar they believe they can’t hit hard enough to hurt. Whether or not it’s true… varies.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466645737850142721, + "in_reply_to_status_id_str": "466645737850142721", + "in_reply_to_user_id": 216571343, + "in_reply_to_user_id_str": "216571343", + "in_reply_to_screen_name": "zauspar", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 14 18:25:32 +0000 2014", + "id": 466645502109712384, + "id_str": "466645502109712384", + "text": "@zauspar you mean you won’t die of easily preventable malnutrition like the rest of us", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466644431354212352, + "in_reply_to_status_id_str": "466644431354212352", + "in_reply_to_user_id": 216571343, + "in_reply_to_user_id_str": "216571343", + "in_reply_to_screen_name": "zauspar", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 14 18:17:58 +0000 2014", + "id": 466643600156393472, + "id_str": "466643600156393472", + "text": "@dozykraut but, if you can tolerate the Javascript Over HTTPS Risk Model, Keybase currently has a really simple GUI for text-only", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466642966590021632, + "in_reply_to_status_id_str": "466642966590021632", + "in_reply_to_user_id": 23579460, + "in_reply_to_user_id_str": "23579460", + "in_reply_to_screen_name": "dozykraut", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 14 18:17:22 +0000 2014", + "id": 466643446027923456, + "id_str": "466643446027923456", + "text": "@dozykraut it turns out encryption (including identity authentication) is pretty much antithetical to everything good and pure and kind", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466642966590021632, + "in_reply_to_status_id_str": "466642966590021632", + "in_reply_to_user_id": 23579460, + "in_reply_to_user_id_str": "23579460", + "in_reply_to_screen_name": "dozykraut", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 14 18:09:24 +0000 2014", + "id": 466641443323269120, + "id_str": "466641443323269120", + "text": "While we're all subtweeting each other: I better never see anyone refer to any CLI encryption utility as \"easy to use\" ever again.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 12, + "favorite_count": 25, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 14 18:04:08 +0000 2014", + "id": 466640117721882624, + "id_str": "466640117721882624", + "text": "@jjarmoc https://t.co/fuHME9KN1Z", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466638618711588865, + "in_reply_to_status_id_str": "466638618711588865", + "in_reply_to_user_id": 17021413, + "in_reply_to_user_id_str": "17021413", + "in_reply_to_screen_name": "jjarmoc", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "quoted_status_id": 466620021423083520, + "quoted_status_id_str": "466620021423083520", + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Wed May 14 17:44:05 +0000 2014", + "id": 466635072620093440, + "id_str": "466635072620093440", + "text": "I mustn't say to myself, \"slow couple of news days in infosec.\" Last time I said that, heartbleed.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 18, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 14 17:32:46 +0000 2014", + "id": 466632222624059392, + "id_str": "466632222624059392", + "text": "@Talen_Lee you’re going to give that person who searches twitter for this phrase conniptions", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466621950237114368, + "in_reply_to_status_id_str": "466621950237114368", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 14 17:15:30 +0000 2014", + "id": 466627880857124865, + "id_str": "466627880857124865", + "text": "@m1sp @Talen_Lee (cc'd for my Ongoing Vendetta Against Heterosexual Reproduction) http://t.co/w8BE6VyzAt", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed May 14 16:57:56 +0000 2014", + "id": 466623459972632576, + "id_str": "466623459972632576", + "text": "@zhuowei Implicitly they must talk about this at some point shortly after book 1 but before book 2. At risk of generating infinite books :p", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 14 16:57:16 +0000 2014", + "id": 466623291709718528, + "id_str": "466623291709718528", + "text": "@zhuowei I was asleep last night when you asked me about Ismyrn and Erasmin, so, here is where she obtained the facts http://t.co/FHCg0snURY", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed May 14 16:08:37 +0000 2014", + "id": 466611046397255680, + "id_str": "466611046397255680", + "text": "@m1sp Erasmin pushes all legally and culturally defined boundaries of an artifice, but, that'd just bring out the extreme opinions", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466610403892793344, + "in_reply_to_status_id_str": "466610403892793344", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 14 16:06:38 +0000 2014", + "id": 466610547199188993, + "id_str": "466610547199188993", + "text": "@m1sp oh, no, no, they're not \"people\", so it's perfectly ethical to... decommission them...", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466610259659091968, + "in_reply_to_status_id_str": "466610259659091968", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 14 16:04:16 +0000 2014", + "id": 466609950673104896, + "id_str": "466609950673104896", + "text": "@m1sp she can't accept the risk of being found out anymore. Alike as not they'd count the child as one also. http://t.co/QsWtE9Zhsx", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466609327877677056, + "in_reply_to_status_id_str": "466609327877677056", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed May 14 15:53:05 +0000 2014", + "id": 466607136970006528, + "id_str": "466607136970006528", + "text": "@Talen_Lee @m1sp Mispychild! To be eating chocolate now!", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466606836104572928, + "in_reply_to_status_id_str": "466606836104572928", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 5, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 14 15:48:34 +0000 2014", + "id": 466606001223790592, + "id_str": "466606001223790592", + "text": "@m1sp oh noes my mispybaby ;o; how fix ;o;", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466603736581013504, + "in_reply_to_status_id_str": "466603736581013504", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 14 15:46:28 +0000 2014", + "id": 466605472959971328, + "id_str": "466605472959971328", + "text": "RT @bSr43: Welcome Linux version ! http://t.co/HQoAFLxR8l", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Wed May 14 15:26:17 +0000 2014", + "id": 466600393745899521, + "id_str": "466600393745899521", + "text": "Welcome Linux version ! http://t.co/HQoAFLxR8l", + "source": "Tweetbot for Mac", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 69860626, + "id_str": "69860626" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 77, + "favorite_count": 62, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ], + "media": [ + { + "id": 466600393611673600, + "id_str": "466600393611673600", + "indices": [ + 24, + 46 + ], + "media_url": "http://pbs.twimg.com/media/BnmylflIAAAhhbY.png", + "media_url_https": "https://pbs.twimg.com/media/BnmylflIAAAhhbY.png", + "url": "http://t.co/HQoAFLxR8l", + "display_url": "pic.twitter.com/HQoAFLxR8l", + "expanded_url": "http://twitter.com/bSr43/status/466600393745899521/photo/1", + "type": "photo", + "sizes": { + "medium": { + "w": 600, + "h": 134, + "resize": "fit" + }, + "large": { + "w": 655, + "h": 146, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 76, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 146, + "resize": "crop" + } + } + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 77, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed May 14 15:41:33 +0000 2014", + "id": 466604234339663872, + "id_str": "466604234339663872", + "text": "@zauspar you made this tweet at 11:07am Boston time…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466595663531479041, + "in_reply_to_status_id_str": "466595663531479041", + "in_reply_to_user_id": 216571343, + "in_reply_to_user_id_str": "216571343", + "in_reply_to_screen_name": "zauspar", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 14 14:51:58 +0000 2014", + "id": 466591757342613506, + "id_str": "466591757342613506", + "text": "@mattsta @thegrugq ˙ ͜ʟ˙", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466590137237782528, + "in_reply_to_status_id_str": "466590137237782528", + "in_reply_to_user_id": 14825696, + "in_reply_to_user_id_str": "14825696", + "in_reply_to_screen_name": "mattsta", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "vi" + }, + { + "created_at": "Wed May 14 13:59:08 +0000 2014", + "id": 466578459628945408, + "id_str": "466578459628945408", + "text": "@thegrugq we can be siblings-in-cyberarms", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466578201464946688, + "in_reply_to_status_id_str": "466578201464946688", + "in_reply_to_user_id": 18983429, + "in_reply_to_user_id_str": "18983429", + "in_reply_to_screen_name": "thegrugq", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 14 13:51:20 +0000 2014", + "id": 466576498582097921, + "id_str": "466576498582097921", + "text": "@matthew_d_green if you take it to mean the quality of deployment and not novel algorithms… we’re working on it", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466567760504705024, + "in_reply_to_status_id_str": "466567760504705024", + "in_reply_to_user_id": 106234268, + "in_reply_to_user_id_str": "106234268", + "in_reply_to_screen_name": "matthew_d_green", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 14 13:44:33 +0000 2014", + "id": 466574790547873792, + "id_str": "466574790547873792", + "text": "@aspects_ebooks … :|", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466544766906560512, + "in_reply_to_status_id_str": "466544766906560512", + "in_reply_to_user_id": 2345404375, + "in_reply_to_user_id_str": "2345404375", + "in_reply_to_screen_name": "aspects_ebooks", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": true, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Wed May 14 13:43:37 +0000 2014", + "id": 466574558485807104, + "id_str": "466574558485807104", + "text": "Does the US govt understand that advertising for jobs like “cyberspace defense engineer” actively wards off the best talent? Too pricey?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 11, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 14 13:38:42 +0000 2014", + "id": 466573320637263872, + "id_str": "466573320637263872", + "text": "RT @DocR0cket: The Pentagon approves a transfer for #ChelseaManning to a civilian prison for gender treatment http://t.co/Ab7vRX0Rrl #FreeC…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Wed May 14 08:14:22 +0000 2014", + "id": 466491696113393664, + "id_str": "466491696113393664", + "text": "The Pentagon approves a transfer for #ChelseaManning to a civilian prison for gender treatment http://t.co/Ab7vRX0Rrl #FreeChelsea", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 92578044, + "id_str": "92578044" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 14, + "favorite_count": 7, + "entities": { + "hashtags": [ + { + "text": "ChelseaManning", + "indices": [ + 37, + 52 + ] + }, + { + "text": "FreeChelsea", + "indices": [ + 118, + 130 + ] + } + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/Ab7vRX0Rrl", + "expanded_url": "http://bigstory.ap.org/article/pentagon-oks-manning-transfer-gender-treatment", + "display_url": "bigstory.ap.org/article/pentag…", + "indices": [ + 95, + 117 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 14, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed May 14 13:30:32 +0000 2014", + "id": 466571263574409216, + "id_str": "466571263574409216", + "text": "RT @comex: Wow, obnoxious. @nytimes http://t.co/4QpD3FUuQB", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Wed May 14 07:09:07 +0000 2014", + "id": 466475277418524672, + "id_str": "466475277418524672", + "text": "Wow, obnoxious. @nytimes http://t.co/4QpD3FUuQB", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 14550962, + "id_str": "14550962" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 88, + "favorite_count": 52, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "nytimes", + "name": "The New York Times", + "id": 807095, + "id_str": "807095", + "indices": [ + 16, + 24 + ] + } + ], + "media": [ + { + "id": 466475277263335424, + "id_str": "466475277263335424", + "indices": [ + 25, + 47 + ], + "media_url": "http://pbs.twimg.com/media/BnlAyw3IcAAH19D.png", + "media_url_https": "https://pbs.twimg.com/media/BnlAyw3IcAAH19D.png", + "url": "http://t.co/4QpD3FUuQB", + "display_url": "pic.twitter.com/4QpD3FUuQB", + "expanded_url": "http://twitter.com/comex/status/466475277418524672/photo/1", + "type": "photo", + "sizes": { + "medium": { + "w": 600, + "h": 338, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 192, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 1024, + "h": 577, + "resize": "fit" + } + } + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 88, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed May 14 13:23:37 +0000 2014", + "id": 466569522791841792, + "id_str": "466569522791841792", + "text": "@zigg @glyph usually tweetbot", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466569348472008704, + "in_reply_to_status_id_str": "466569348472008704", + "in_reply_to_user_id": 14877471, + "in_reply_to_user_id_str": "14877471", + "in_reply_to_screen_name": "zigg", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 14 13:22:02 +0000 2014", + "id": 466569125980958720, + "id_str": "466569125980958720", + "text": "@glyph except every time I try this, it doesn’t work…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466445327059673088, + "in_reply_to_status_id_str": "466445327059673088", + "in_reply_to_user_id": 9859562, + "in_reply_to_user_id_str": "9859562", + "in_reply_to_screen_name": "glyph", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 14 05:30:09 +0000 2014", + "id": 466450372786401280, + "id_str": "466450372786401280", + "text": "@zhuowei @m1sp Chakori.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466449716528840704, + "in_reply_to_status_id_str": "466449716528840704", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "ht" + }, + { + "created_at": "Wed May 14 05:26:30 +0000 2014", + "id": 466449451197165569, + "id_str": "466449451197165569", + "text": "@zhuowei @m1sp “so about this little artifice I met today…”", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466449168085819393, + "in_reply_to_status_id_str": "466449168085819393", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 14 05:13:45 +0000 2014", + "id": 466446246102990848, + "id_str": "466446246102990848", + "text": "@m1sp it's so hard to turn off my formality and \"talk normal\" through a letter. http://t.co/kWtLr6l8VB", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed May 14 04:35:54 +0000 2014", + "id": 466436719542562817, + "id_str": "466436719542562817", + "text": "@benpop @ThePokeBot yes", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466436015956459521, + "in_reply_to_status_id_str": "466436015956459521", + "in_reply_to_user_id": 14939023, + "in_reply_to_user_id_str": "14939023", + "in_reply_to_screen_name": "benpop", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Wed May 14 03:32:59 +0000 2014", + "id": 466420886367907840, + "id_str": "466420886367907840", + "text": "It might have been 1:52 (world record is 1:51) if not for Agatha’s $:@;/; Golbat", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 14 03:32:25 +0000 2014", + "id": 466420742557798400, + "id_str": "466420742557798400", + "text": "CONGRATS @THEPOKEBOT 1:53 SOON THE MACHINES SHALL TRIUMPH http://t.co/u6r0uTC81E", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 5, + "favorite_count": 12, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed May 14 02:50:24 +0000 2014", + "id": 466410169510158336, + "id_str": "466410169510158336", + "text": "@mralext20 @zhuowei tweetdeck broke too.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466410014337675264, + "in_reply_to_status_id_str": "466410014337675264", + "in_reply_to_user_id": 905041434, + "in_reply_to_user_id_str": "905041434", + "in_reply_to_screen_name": "mralext20", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 14 02:48:34 +0000 2014", + "id": 466409706186354688, + "id_str": "466409706186354688", + "text": "@zhuowei I warned you\n\nI warned you about stairs", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466409570362204160, + "in_reply_to_status_id_str": "466409570362204160", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 14 02:45:55 +0000 2014", + "id": 466409041993150464, + "id_str": "466409041993150464", + "text": "@zhuowei @m1sp earlier the same day, but, that's something that happened far away and Katarosi does not care very much about.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466408490056302592, + "in_reply_to_status_id_str": "466408490056302592", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 14 02:40:23 +0000 2014", + "id": 466407650570559488, + "id_str": "466407650570559488", + "text": "@zhuowei nah, there just isn't that much of a visual difference between 16-bit and 32-bit 2D planes. Just more processing oomph.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466407324551512067, + "in_reply_to_status_id_str": "466407324551512067", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 14 02:35:38 +0000 2014", + "id": 466406453486825472, + "id_str": "466406453486825472", + "text": "Personal best hype http://t.co/d9J4jtemd7\n\nAssuming it doesn't, you know, die.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed May 14 02:35:38 +0000 2014", + "id": 466406453486825472, + "id_str": "466406453486825472", + "text": "Personal best hype http://t.co/d9J4jtemd7\n\nAssuming it doesn't, you know, die.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed May 14 02:34:51 +0000 2014", + "id": 466406255553429504, + "id_str": "466406255553429504", + "text": "@gotyaoi @Talen_Lee @mcclure111 @smeerp I THOUGHT YOU WANTED TO PEER WITH THAT OTHER KOHAI", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466405903311589377, + "in_reply_to_status_id_str": "466405903311589377", + "in_reply_to_user_id": 393022772, + "in_reply_to_user_id_str": "393022772", + "in_reply_to_screen_name": "gotyaoi", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 14 02:24:23 +0000 2014", + "id": 466403620158963712, + "id_str": "466403620158963712", + "text": ".@dakami A few years ago I accidentally allocated the song's RAM and the visual program's RAM to the same range. https://t.co/BT3p93Uesy", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466403098085572609, + "in_reply_to_status_id_str": "466403098085572609", + "in_reply_to_user_id": 8917142, + "in_reply_to_user_id_str": "8917142", + "in_reply_to_screen_name": "dakami", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 15, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed May 14 02:21:13 +0000 2014", + "id": 466402826978340865, + "id_str": "466402826978340865", + "text": "@Archaemic @dakami I wouldn't feel guilty about disabling flicker for *playing* games. But if you're developing, flicker best stay on", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466402496068734976, + "in_reply_to_status_id_str": "466402496068734976", + "in_reply_to_user_id": 222006525, + "in_reply_to_user_id_str": "222006525", + "in_reply_to_screen_name": "Archaemic", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 14 02:20:00 +0000 2014", + "id": 466402517451288577, + "id_str": "466402517451288577", + "text": "@derspiny most of those bugs are quite resolvable. I had one where the NES and the emulator disagreed about the MMC registers on reset.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466402120263303168, + "in_reply_to_status_id_str": "466402120263303168", + "in_reply_to_user_id": 107914977, + "in_reply_to_user_id_str": "107914977", + "in_reply_to_screen_name": "derspiny", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 14 02:17:50 +0000 2014", + "id": 466401971650707456, + "id_str": "466401971650707456", + "text": "@derspiny yes, I have the kit for that, though it's a bit of a hassle.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466401844919824384, + "in_reply_to_status_id_str": "466401844919824384", + "in_reply_to_user_id": 107914977, + "in_reply_to_user_id_str": "107914977", + "in_reply_to_screen_name": "derspiny", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 14 02:17:29 +0000 2014", + "id": 466401883746467840, + "id_str": "466401883746467840", + "text": "@dakami I thought most full-featured emulators already included this toggle...?", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466401699423588353, + "in_reply_to_status_id_str": "466401699423588353", + "in_reply_to_user_id": 8917142, + "in_reply_to_user_id_str": "8917142", + "in_reply_to_screen_name": "dakami", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 14 02:17:09 +0000 2014", + "id": 466401801873674240, + "id_str": "466401801873674240", + "text": "@Talen_Lee tragically they never ordered me new business cards after we changed offices. Apparently I don't face enough customers...", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466401604133208064, + "in_reply_to_status_id_str": "466401604133208064", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 14 02:15:41 +0000 2014", + "id": 466401431827009538, + "id_str": "466401431827009538", + "text": "~ because I'm an eight-bit elitist snob ~", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 14 02:14:53 +0000 2014", + "id": 466401231670628352, + "id_str": "466401231670628352", + "text": "For the record, all *my* chiptunes are 100% pure, authentic NES roms which will run on the real hardware, no expansion channels.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 14, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 14 02:09:31 +0000 2014", + "id": 466399880987303937, + "id_str": "466399880987303937", + "text": "@captcarl13 I’m not saying it’s bad art! I’m saying I’m a rabid purist", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466399478715793408, + "in_reply_to_status_id_str": "466399478715793408", + "in_reply_to_user_id": 25856211, + "in_reply_to_user_id_str": "25856211", + "in_reply_to_screen_name": "captcarl13", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 14 02:09:10 +0000 2014", + "id": 466399791820603392, + "id_str": "466399791820603392", + "text": "@captcarl13 that is in fact what prompted it. I couldn’t pick out the chip by ear but it was credited as 8-Bit Song of Ice and Fire", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466399478715793408, + "in_reply_to_status_id_str": "466399478715793408", + "in_reply_to_user_id": 25856211, + "in_reply_to_user_id_str": "25856211", + "in_reply_to_screen_name": "captcarl13", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 14 02:07:11 +0000 2014", + "id": 466399292899721216, + "id_str": "466399292899721216", + "text": "@NedGilmore actually I’m opposed to calling anyone a fake geek on principle. But indiscriminate in their bitness? Certainly.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466399048132743169, + "in_reply_to_status_id_str": "466399048132743169", + "in_reply_to_user_id": 166001040, + "in_reply_to_user_id_str": "166001040", + "in_reply_to_screen_name": "NedGilmore", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 14 02:05:57 +0000 2014", + "id": 466398984006029314, + "id_str": "466398984006029314", + "text": "@WeldPond eight bit best bit", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466398907837468673, + "in_reply_to_status_id_str": "466398907837468673", + "in_reply_to_user_id": 14090906, + "in_reply_to_user_id_str": "14090906", + "in_reply_to_screen_name": "WeldPond", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "de" + }, + { + "created_at": "Wed May 14 02:05:21 +0000 2014", + "id": 466398830024720384, + "id_str": "466398830024720384", + "text": "RT @grsecurity: My wife found the missing final pages of the SELinux coloring book (https://t.co/mFnLQCoC7w) https://t.co/oSSHsKhCax https:…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Wed May 14 01:05:23 +0000 2014", + "id": 466383742089830402, + "id_str": "466383742089830402", + "text": "My wife found the missing final pages of the SELinux coloring book (https://t.co/mFnLQCoC7w) https://t.co/oSSHsKhCax https://t.co/RgXUKyJPUT", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 908165544, + "id_str": "908165544" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 21, + "favorite_count": 23, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "https://t.co/mFnLQCoC7w", + "expanded_url": "https://github.com/mairin/selinux-coloring-book/blob/master/PDF/en/selinux-coloring-book_A4-Stapled.pdf", + "display_url": "github.com/mairin/selinux…", + "indices": [ + 68, + 91 + ] + }, + { + "url": "https://t.co/oSSHsKhCax", + "expanded_url": "https://grsecurity.net/~spender/pics/lost_selinux_coloring_book_page1.gif", + "display_url": "grsecurity.net/~spender/pics/…", + "indices": [ + 93, + 116 + ] + }, + { + "url": "https://t.co/RgXUKyJPUT", + "expanded_url": "https://grsecurity.net/~spender/pics/lost_selinux_coloring_book_page2.gif", + "display_url": "grsecurity.net/~spender/pics/…", + "indices": [ + 117, + 140 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 21, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed May 14 02:02:53 +0000 2014", + "id": 466398210869972993, + "id_str": "466398210869972993", + "text": "Things that make me unreasonably angry: mixing of 8-bit music and 16-bit graphics. Freakin’ heathens.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 12, + "favorite_count": 22, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 14 01:57:54 +0000 2014", + "id": 466396955904839680, + "id_str": "466396955904839680", + "text": "@sarahjeong @puellavulnerata *squint*\n\n… what. 😐", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466354844425785344, + "in_reply_to_status_id_str": "466354844425785344", + "in_reply_to_user_id": 47509268, + "in_reply_to_user_id_str": "47509268", + "in_reply_to_screen_name": "sarahjeong", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 14 01:17:23 +0000 2014", + "id": 466386762307489792, + "id_str": "466386762307489792", + "text": ".@mcclure111 @smeerp Flags: KOHAI_REQUESTS_SENPAI_ATTENTION, SENPAI_NOTICES_KOHAI, KOHAI_ACKNOWLEDGES_BEING_NOTICED", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466386196466524160, + "in_reply_to_status_id_str": "466386196466524160", + "in_reply_to_user_id": 312426579, + "in_reply_to_user_id_str": "312426579", + "in_reply_to_screen_name": "mcclure111", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 10, + "favorite_count": 21, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 14 01:12:52 +0000 2014", + "id": 466385625437188096, + "id_str": "466385625437188096", + "text": "Better protocols: TCP Triple Hug \nh/t @smeerp", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 9, + "favorite_count": 14, + "favorited": false, + "retweeted": false, + "lang": "sl" + }, + { + "created_at": "Wed May 14 00:23:38 +0000 2014", + "id": 466373235182153730, + "id_str": "466373235182153730", + "text": "@m1sp http://t.co/y5uQcRBEkX", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Tue May 13 23:48:15 +0000 2014", + "id": 466364328468553729, + "id_str": "466364328468553729", + "text": "@ghostqueer I do have a trail of feminine shirts and dresses that did not fit the moment I obtained them, btw.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466363388764127232, + "in_reply_to_status_id_str": "466363388764127232", + "in_reply_to_user_id": 2337742344, + "in_reply_to_user_id_str": "2337742344", + "in_reply_to_screen_name": "ghostqueer", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 23:46:51 +0000 2014", + "id": 466363977107513344, + "id_str": "466363977107513344", + "text": "@aspects_ebooks well \n\nYeah that sounds like Constans all right", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466361854340923392, + "in_reply_to_status_id_str": "466361854340923392", + "in_reply_to_user_id": 2345404375, + "in_reply_to_user_id_str": "2345404375", + "in_reply_to_screen_name": "aspects_ebooks", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 23:44:11 +0000 2014", + "id": 466363307948253184, + "id_str": "466363307948253184", + "text": "@ghostqueer my experience is the opposite, that clothing vendors are incapable of accounting for abundance thereof", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466363139148505088, + "in_reply_to_status_id_str": "466363139148505088", + "in_reply_to_user_id": 2337742344, + "in_reply_to_user_id_str": "2337742344", + "in_reply_to_screen_name": "ghostqueer", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 23:41:52 +0000 2014", + "id": 466362724621246464, + "id_str": "466362724621246464", + "text": "@ghostqueer :<", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466350671860862976, + "in_reply_to_status_id_str": "466350671860862976", + "in_reply_to_user_id": 2337742344, + "in_reply_to_user_id_str": "2337742344", + "in_reply_to_screen_name": "ghostqueer", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "vi" + }, + { + "created_at": "Tue May 13 23:39:49 +0000 2014", + "id": 466362207522258944, + "id_str": "466362207522258944", + "text": "@chriseng pfff sure", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466346760064237568, + "in_reply_to_status_id_str": "466346760064237568", + "in_reply_to_user_id": 13752192, + "in_reply_to_user_id_str": "13752192", + "in_reply_to_screen_name": "chriseng", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "nl" + }, + { + "created_at": "Tue May 13 23:39:04 +0000 2014", + "id": 466362017277046784, + "id_str": "466362017277046784", + "text": "@m1sp @FioraAeterna http://t.co/4ZuAIlk92C \n\nNot shown: very ragequit", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 23:05:07 +0000 2014", + "id": 466353474347991040, + "id_str": "466353474347991040", + "text": "@hinanawi_chan ¯\\(ºoº)/¯", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466353092003631104, + "in_reply_to_status_id_str": "466353092003631104", + "in_reply_to_user_id": 2336014178, + "in_reply_to_user_id_str": "2336014178", + "in_reply_to_screen_name": "hinanawi_chan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 5, + "favorited": true, + "retweeted": false, + "lang": "nl" + }, + { + "created_at": "Tue May 13 23:02:49 +0000 2014", + "id": 466352896217743360, + "id_str": "466352896217743360", + "text": "@FakeUnicode @unicode ..... weird.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466350848369766401, + "in_reply_to_status_id_str": "466350848369766401", + "in_reply_to_user_id": 2183231114, + "in_reply_to_user_id_str": "2183231114", + "in_reply_to_screen_name": "FakeUnicode", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 22:50:28 +0000 2014", + "id": 466349788037120000, + "id_str": "466349788037120000", + "text": "@FakeUnicode ... why can't I find this \"109\" character on my emoji keyboard", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466348598482178048, + "in_reply_to_status_id_str": "466348598482178048", + "in_reply_to_user_id": 2183231114, + "in_reply_to_user_id_str": "2183231114", + "in_reply_to_screen_name": "FakeUnicode", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 22:21:28 +0000 2014", + "id": 466342490698960896, + "id_str": "466342490698960896", + "text": "#BringBackFailWhale the robot is inferior 🐋", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 25, + "favorite_count": 17, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 22:16:40 +0000 2014", + "id": 466341280197656576, + "id_str": "466341280197656576", + "text": "@zhuowei someone else said they tried to login cycle and it broke twitter entirely", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466341185397989377, + "in_reply_to_status_id_str": "466341185397989377", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 22:14:17 +0000 2014", + "id": 466340682572259329, + "id_str": "466340682572259329", + "text": "@jjarmoc they banished the fail whale for being “bad PR” :|", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466339608910118912, + "in_reply_to_status_id_str": "466339608910118912", + "in_reply_to_user_id": 17021413, + "in_reply_to_user_id_str": "17021413", + "in_reply_to_screen_name": "jjarmoc", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 22:13:45 +0000 2014", + "id": 466340548543283200, + "id_str": "466340548543283200", + "text": "@vogon sorry, the what tab?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466339487757647872, + "in_reply_to_status_id_str": "466339487757647872", + "in_reply_to_user_id": 6326912, + "in_reply_to_user_id_str": "6326912", + "in_reply_to_screen_name": "vogon", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 22:13:10 +0000 2014", + "id": 466340399758712832, + "id_str": "466340399758712832", + "text": "@zhuowei well aren’t you blessed", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466339906386939904, + "in_reply_to_status_id_str": "466339906386939904", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 22:12:51 +0000 2014", + "id": 466340322638057473, + "id_str": "466340322638057473", + "text": "@sammikes 💫", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466339663771611136, + "in_reply_to_status_id_str": "466339663771611136", + "in_reply_to_user_id": 36566244, + "in_reply_to_user_id_str": "36566244", + "in_reply_to_screen_name": "sammikes", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Tue May 13 22:10:40 +0000 2014", + "id": 466339769992355840, + "id_str": "466339769992355840", + "text": "For those following along in Fail Whale purgatory, notifications are working for me in Tweetbot for iOS", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 22:06:08 +0000 2014", + "id": 466338630504841217, + "id_str": "466338630504841217", + "text": "oh BONUS POINTS the notifications tab is broken on Mobile Web Twitter too. They usually don't manage to screw up both simultaneously!", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 6, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 22:03:56 +0000 2014", + "id": 466338076638580737, + "id_str": "466338076638580737", + "text": "So like the notifications tab on twitter web is down for me but not anything else??", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 22:03:02 +0000 2014", + "id": 466337849068240899, + "id_str": "466337849068240899", + "text": "@sammikes yon disagrees http://t.co/EdBXQKyAU7", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466337541244092416, + "in_reply_to_status_id_str": "466337541244092416", + "in_reply_to_user_id": 36566244, + "in_reply_to_user_id_str": "36566244", + "in_reply_to_screen_name": "sammikes", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 21:59:57 +0000 2014", + "id": 466337073793093632, + "id_str": "466337073793093632", + "text": "@vogon I am particularly wont to “whence”", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466336637346406400, + "in_reply_to_status_id_str": "466336637346406400", + "in_reply_to_user_id": 6326912, + "in_reply_to_user_id_str": "6326912", + "in_reply_to_screen_name": "vogon", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 21:58:35 +0000 2014", + "id": 466336731172995072, + "id_str": "466336731172995072", + "text": "@hoodiespek good catch o/", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466336594749059072, + "in_reply_to_status_id_str": "466336594749059072", + "in_reply_to_user_id": 2361598756, + "in_reply_to_user_id_str": "2361598756", + "in_reply_to_screen_name": "hoodiespek", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "fr" + }, + { + "created_at": "Tue May 13 21:58:18 +0000 2014", + "id": 466336659819483136, + "id_str": "466336659819483136", + "text": "@hoodiespek it’s gender neutral and animate/inanimate neutral.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466336552759861248, + "in_reply_to_status_id_str": "466336552759861248", + "in_reply_to_user_id": 2361598756, + "in_reply_to_user_id_str": "2361598756", + "in_reply_to_screen_name": "hoodiespek", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 21:57:19 +0000 2014", + "id": 466336413785784320, + "id_str": "466336413785784320", + "text": "Bring Back “Yon” As A Pronoun", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 6, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 21:52:46 +0000 2014", + "id": 466335267360878593, + "id_str": "466335267360878593", + "text": "@chriseng Mr. Eng is BORING", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466329068125057025, + "in_reply_to_status_id_str": "466329068125057025", + "in_reply_to_user_id": 13752192, + "in_reply_to_user_id_str": "13752192", + "in_reply_to_screen_name": "chriseng", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 21:52:14 +0000 2014", + "id": 466335132367200256, + "id_str": "466335132367200256", + "text": "@ELLIOTTCABLE this is considered an extreme and fringe idea in feminism which denies feminine agency of consent entirely", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466326932142170112, + "in_reply_to_status_id_str": "466326932142170112", + "in_reply_to_user_id": 771681, + "in_reply_to_user_id_str": "771681", + "in_reply_to_screen_name": "ELLIOTTCABLE", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 21:50:47 +0000 2014", + "id": 466334770008702977, + "id_str": "466334770008702977", + "text": "@DrPizza http://t.co/z0G7sPHdgz yon constable is embarrassed", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 11375732, + "in_reply_to_user_id_str": "11375732", + "in_reply_to_screen_name": "DrPizza", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 21:43:04 +0000 2014", + "id": 466332828368916481, + "id_str": "466332828368916481", + "text": "When I was a much younger programmer I couldn’t figure out how to implement explode() from scratch in C and I was sad.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 8, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 21:39:24 +0000 2014", + "id": 466331902174318593, + "id_str": "466331902174318593", + "text": "Important announcement: the absolute best thing about PHP is there’s a standard library function called explode()", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 22, + "favorite_count": 14, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 21:29:32 +0000 2014", + "id": 466329421465780224, + "id_str": "466329421465780224", + "text": "@dakami oh, I do have a good part: there’s an actually useful function named explode()", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466329119706595329, + "in_reply_to_status_id_str": "466329119706595329", + "in_reply_to_user_id": 8917142, + "in_reply_to_user_id_str": "8917142", + "in_reply_to_screen_name": "dakami", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 21:28:42 +0000 2014", + "id": 466329209078812672, + "id_str": "466329209078812672", + "text": "RT @dakami: @0xabad1dea http://t.co/cDWJoqhb8R", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue May 13 21:28:20 +0000 2014", + "id": 466329119706595329, + "id_str": "466329119706595329", + "text": "@0xabad1dea http://t.co/cDWJoqhb8R", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 126030998, + "in_reply_to_user_id_str": "126030998", + "in_reply_to_screen_name": "0xabad1dea", + "user": { + "id": 8917142, + "id_str": "8917142" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 10, + "favorite_count": 7, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/cDWJoqhb8R", + "expanded_url": "http://phpthegoodparts.tumblr.com/", + "display_url": "phpthegoodparts.tumblr.com", + "indices": [ + 12, + 34 + ] + } + ], + "user_mentions": [ + { + "screen_name": "0xabad1dea", + "name": "Melissa", + "id": 126030998, + "id_str": "126030998", + "indices": [ + 0, + 11 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + "retweet_count": 10, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Tue May 13 21:21:36 +0000 2014", + "id": 466327422041096193, + "id_str": "466327422041096193", + "text": "RT @puellavulnerata: Looks like they're looking for the same GSM device on multiple flights, and then intersecting passenger lists http://t…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue May 13 11:26:15 +0000 2014", + "id": 466177599249477633, + "id_str": "466177599249477633", + "text": "Looks like they're looking for the same GSM device on multiple flights, and then intersecting passenger lists http://t.co/z9htdzIARy", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 54666727, + "id_str": "54666727" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 81, + "favorite_count": 36, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ], + "media": [ + { + "id": 466177598213484544, + "id_str": "466177598213484544", + "indices": [ + 110, + 132 + ], + "media_url": "http://pbs.twimg.com/media/BngyDj_CcAAJovF.png", + "media_url_https": "https://pbs.twimg.com/media/BngyDj_CcAAJovF.png", + "url": "http://t.co/z9htdzIARy", + "display_url": "pic.twitter.com/z9htdzIARy", + "expanded_url": "http://twitter.com/puellavulnerata/status/466177599249477633/photo/1", + "type": "photo", + "sizes": { + "medium": { + "w": 600, + "h": 451, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 256, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 839, + "h": 631, + "resize": "fit" + } + } + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 81, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 21:18:54 +0000 2014", + "id": 466326745680211968, + "id_str": "466326745680211968", + "text": "@MoonFairy4 @chriseng boss was *definitely* flagged before.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466313678233427968, + "in_reply_to_status_id_str": "466313678233427968", + "in_reply_to_user_id": 15322761, + "in_reply_to_user_id_str": "15322761", + "in_reply_to_screen_name": "MoonFairy4", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 21:13:56 +0000 2014", + "id": 466325493630115840, + "id_str": "466325493630115840", + "text": "@undeadmolly @geekable I had a sweetie with an antique sports car when I was 17 and this did in fact work. Didn’t try any blue shells though", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466285116491190273, + "in_reply_to_status_id_str": "466285116491190273", + "in_reply_to_user_id": 14258196, + "in_reply_to_user_id_str": "14258196", + "in_reply_to_screen_name": "undeadmolly", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 21:07:42 +0000 2014", + "id": 466323927888044033, + "id_str": "466323927888044033", + "text": "@keyoki @sophiaphotos @Shufflejoy when you consider how many ciswomen actively try to medicate periods away… geez. I’m sorry she said that 😔", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466280814741700608, + "in_reply_to_status_id_str": "466280814741700608", + "in_reply_to_user_id": 23631167, + "in_reply_to_user_id_str": "23631167", + "in_reply_to_screen_name": "keyoki", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 20:58:10 +0000 2014", + "id": 466321527034888192, + "id_str": "466321527034888192", + "text": "@rogerclark @DynamicWebPaige I never started. Two reactions: trying to convince me to start, or worrying it’s a judgmental religious thing.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465949227336470528, + "in_reply_to_status_id_str": "465949227336470528", + "in_reply_to_user_id": 14220415, + "in_reply_to_user_id_str": "14220415", + "in_reply_to_screen_name": "rogerclark", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 20:54:35 +0000 2014", + "id": 466320623984472064, + "id_str": "466320623984472064", + "text": "RT @m1sp: Twitter what is with your server names http://t.co/6vlhLVXA3s", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue May 13 17:34:19 +0000 2014", + "id": 466270225449500673, + "id_str": "466270225449500673", + "text": "Twitter what is with your server names http://t.co/6vlhLVXA3s", + "source": "TweetDeck", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 1007638597, + "id_str": "1007638597" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 87, + "favorite_count": 61, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ], + "media": [ + { + "id": 466270219954954240, + "id_str": "466270219954954240", + "indices": [ + 39, + 61 + ], + "media_url": "http://pbs.twimg.com/media/BniGS23CIAAOnNc.png", + "media_url_https": "https://pbs.twimg.com/media/BniGS23CIAAOnNc.png", + "url": "http://t.co/6vlhLVXA3s", + "display_url": "pic.twitter.com/6vlhLVXA3s", + "expanded_url": "http://twitter.com/m1sp/status/466270225449500673/photo/1", + "type": "photo", + "sizes": { + "medium": { + "w": 600, + "h": 58, + "resize": "fit" + }, + "large": { + "w": 954, + "h": 93, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 93, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 33, + "resize": "fit" + } + } + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 87, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 20:53:50 +0000 2014", + "id": 466320438269067264, + "id_str": "466320438269067264", + "text": "RT @vogon: remember that time google said you'd only be able to buy glass publicly for one day\n\nwell, 28 days later\n\nhttps://t.co/IufkY90KiW", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue May 13 17:29:54 +0000 2014", + "id": 466269115963830273, + "id_str": "466269115963830273", + "text": "remember that time google said you'd only be able to buy glass publicly for one day\n\nwell, 28 days later\n\nhttps://t.co/IufkY90KiW", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 6326912, + "id_str": "6326912" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 9, + "favorite_count": 2, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "https://t.co/IufkY90KiW", + "expanded_url": "https://glass.google.com/getglass/shop/glass", + "display_url": "glass.google.com/getglass/shop/…", + "indices": [ + 106, + 129 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 9, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 20:52:04 +0000 2014", + "id": 466319992871743490, + "id_str": "466319992871743490", + "text": "@jack_daniel welcome home. There’s even no snow.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466266789748678656, + "in_reply_to_status_id_str": "466266789748678656", + "in_reply_to_user_id": 7025212, + "in_reply_to_user_id_str": "7025212", + "in_reply_to_screen_name": "jack_daniel", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 20:48:13 +0000 2014", + "id": 466319022293004288, + "id_str": "466319022293004288", + "text": "@akohlsmith the SNES arbitrary executions in general work by landing the IP into the sprite ram area, which the player has influence over.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466311078440206336, + "in_reply_to_status_id_str": "466311078440206336", + "in_reply_to_user_id": 14193794, + "in_reply_to_user_id_str": "14193794", + "in_reply_to_screen_name": "akohlsmith", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 20:47:16 +0000 2014", + "id": 466318784702066688, + "id_str": "466318784702066688", + "text": "@akohlsmith I’m guessing it causes it to dereference an invalid offset into a function lookup table, in the Kirby case.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466311078440206336, + "in_reply_to_status_id_str": "466311078440206336", + "in_reply_to_user_id": 14193794, + "in_reply_to_user_id_str": "14193794", + "in_reply_to_screen_name": "akohlsmith", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 20:15:48 +0000 2014", + "id": 466310865818775552, + "id_str": "466310865818775552", + "text": "@akohlsmith obviously a game logic bug on a super nintendo won't cause millions in economic damage, it can only aspire to such evil ;(", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466310242033078272, + "in_reply_to_status_id_str": "466310242033078272", + "in_reply_to_user_id": 14193794, + "in_reply_to_user_id_str": "14193794", + "in_reply_to_screen_name": "akohlsmith", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 20:13:13 +0000 2014", + "id": 466310213948420096, + "id_str": "466310213948420096", + "text": "@goeo_ irssi, but that has no bearing on the font. I don't remember what the font was called but googling for 5px ttf font should find some.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466309959622610944, + "in_reply_to_status_id_str": "466309959622610944", + "in_reply_to_user_id": 1060536006, + "in_reply_to_user_id_str": "1060536006", + "in_reply_to_screen_name": "goeo_", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 20:12:05 +0000 2014", + "id": 466309928576380928, + "id_str": "466309928576380928", + "text": "@zorm you can buy them of course, but that's just a band-aid on the core problem of critical existence failure", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466309094748749824, + "in_reply_to_status_id_str": "466309094748749824", + "in_reply_to_user_id": 17954340, + "in_reply_to_user_id_str": "17954340", + "in_reply_to_screen_name": "zorm", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 20:11:28 +0000 2014", + "id": 466309775031287808, + "id_str": "466309775031287808", + "text": "@akohlsmith and, in the case that prompted this whole line of thought, exploitable by someone like me to cheat at the game for times :p", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466309034497167360, + "in_reply_to_status_id_str": "466309034497167360", + "in_reply_to_user_id": 14193794, + "in_reply_to_user_id_str": "14193794", + "in_reply_to_screen_name": "akohlsmith", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 20:10:56 +0000 2014", + "id": 466309642235416576, + "id_str": "466309642235416576", + "text": "@akohlsmith just because it'd be closed wontfix in the QA system doesn't mean it's not a bug: it's loophole logic & objectively preventable", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466309034497167360, + "in_reply_to_status_id_str": "466309034497167360", + "in_reply_to_user_id": 14193794, + "in_reply_to_user_id_str": "14193794", + "in_reply_to_screen_name": "akohlsmith", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 20:09:11 +0000 2014", + "id": 466309200180940801, + "id_str": "466309200180940801", + "text": "@hectoroid but I was more getting at: a logic system that controls something with real-world implications simply never reaching answer", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466307691720499202, + "in_reply_to_status_id_str": "466307691720499202", + "in_reply_to_user_id": 348569430, + "in_reply_to_user_id_str": "348569430", + "in_reply_to_screen_name": "hectoroid", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 20:04:20 +0000 2014", + "id": 466307979672059904, + "id_str": "466307979672059904", + "text": "@hectoroid oh, I read your statement and its intent backwards", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466307691720499202, + "in_reply_to_status_id_str": "466307691720499202", + "in_reply_to_user_id": 348569430, + "in_reply_to_user_id_str": "348569430", + "in_reply_to_screen_name": "hectoroid", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 20:03:56 +0000 2014", + "id": 466307877331013632, + "id_str": "466307877331013632", + "text": "@hectoroid *gets out machine gun* are you sure about that", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466307691720499202, + "in_reply_to_status_id_str": "466307691720499202", + "in_reply_to_user_id": 348569430, + "in_reply_to_user_id_str": "348569430", + "in_reply_to_screen_name": "hectoroid", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 20:01:27 +0000 2014", + "id": 466307253176639488, + "id_str": "466307253176639488", + "text": "Interesting to think about: the unsolvable security problem that at any point, time itself can simply stop for any program. (Power loss)", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 4, + "favorite_count": 7, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 19:58:47 +0000 2014", + "id": 466306583249846273, + "id_str": "466306583249846273", + "text": "@d347hkn3ll that wasn't a bad \"hm\", I promise!", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466306420192075776, + "in_reply_to_status_id_str": "466306420192075776", + "in_reply_to_user_id": 152052521, + "in_reply_to_user_id_str": "152052521", + "in_reply_to_screen_name": "d347hkn3ll", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 19:57:18 +0000 2014", + "id": 466306209092751360, + "id_str": "466306209092751360", + "text": "@akohlsmith and that's why I'm the hacker. 😛", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466305878279204864, + "in_reply_to_status_id_str": "466305878279204864", + "in_reply_to_user_id": 14193794, + "in_reply_to_user_id_str": "14193794", + "in_reply_to_screen_name": "akohlsmith", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 19:56:30 +0000 2014", + "id": 466306007535456256, + "id_str": "466306007535456256", + "text": "@akohlsmith but the game DOES inspect, reason about, and execute depending on the controller flags.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466305680572305409, + "in_reply_to_status_id_str": "466305680572305409", + "in_reply_to_user_id": 14193794, + "in_reply_to_user_id_str": "14193794", + "in_reply_to_screen_name": "akohlsmith", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 19:56:17 +0000 2014", + "id": 466305953827409920, + "id_str": "466305953827409920", + "text": "@akohlsmith no, because there's no way to inspect, reason about, and execute depending on the current power fluctuation level.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466305680572305409, + "in_reply_to_status_id_str": "466305680572305409", + "in_reply_to_user_id": 14193794, + "in_reply_to_user_id_str": "14193794", + "in_reply_to_screen_name": "akohlsmith", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 19:55:26 +0000 2014", + "id": 466305738185646080, + "id_str": "466305738185646080", + "text": "@akohlsmith so, like, obvs the \"used as intended\" case won't ever see those input combinations, but emulation makes it easy to accidentally.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466304958178926592, + "in_reply_to_status_id_str": "466304958178926592", + "in_reply_to_user_id": 14193794, + "in_reply_to_user_id_str": "14193794", + "in_reply_to_screen_name": "akohlsmith", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 19:53:56 +0000 2014", + "id": 466305363437170690, + "id_str": "466305363437170690", + "text": "@akohlsmith the hardware isn't incapable of supplying the input: the hardware has a shield to discourage the human supplying that input.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466304958178926592, + "in_reply_to_status_id_str": "466304958178926592", + "in_reply_to_user_id": 14193794, + "in_reply_to_user_id_str": "14193794", + "in_reply_to_screen_name": "akohlsmith", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 19:47:19 +0000 2014", + "id": 466303696163577857, + "id_str": "466303696163577857", + "text": "@zhuowei ... ... ... ... ....................................", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466303322060644354, + "in_reply_to_status_id_str": "466303322060644354", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "da" + }, + { + "created_at": "Tue May 13 19:30:58 +0000 2014", + "id": 466299581949808641, + "id_str": "466299581949808641", + "text": "@rantyben @thegrugq everyone is oppressing my command-line religion", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466299361966960640, + "in_reply_to_status_id_str": "466299361966960640", + "in_reply_to_user_id": 977910404, + "in_reply_to_user_id_str": "977910404", + "in_reply_to_screen_name": "rantyben", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 19:22:42 +0000 2014", + "id": 466297500312547328, + "id_str": "466297500312547328", + "text": "Apparently \"glory in the thunder\" translates to Swedish as \"Ära i åskan\" which sounds really cool so brb rewriting in Swedish", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 14, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 18:50:40 +0000 2014", + "id": 466289438755418114, + "id_str": "466289438755418114", + "text": "@ProfNintendo so since the electrical design lets all buttons light up at once, that's \"in bounds\" for player behavior", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466285311598030849, + "in_reply_to_status_id_str": "466285311598030849", + "in_reply_to_user_id": 2223970250, + "in_reply_to_user_id_str": "2223970250", + "in_reply_to_screen_name": "ProfNintendo", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 18:49:35 +0000 2014", + "id": 466289169032310784, + "id_str": "466289169032310784", + "text": "@ProfNintendo speaking as infosec, I'm modeling the controller(s) and the player as the same entity, external to the game's control sphere.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466285311598030849, + "in_reply_to_status_id_str": "466285311598030849", + "in_reply_to_user_id": 2223970250, + "in_reply_to_user_id_str": "2223970250", + "in_reply_to_screen_name": "ProfNintendo", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 18:33:54 +0000 2014", + "id": 466285220769955840, + "id_str": "466285220769955840", + "text": "So have any of the NSA docs proven there really is a watchlist of people who bought 2600 with a credit card 😁", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 4, + "favorite_count": 5, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 18:29:25 +0000 2014", + "id": 466284093211418624, + "id_str": "466284093211418624", + "text": "When a self-serve station rips your name off the credit card when you swipe for a personalized thank-you 😰", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 5, + "favorite_count": 5, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 18:03:46 +0000 2014", + "id": 466277638588203008, + "id_str": "466277638588203008", + "text": "@marginoferror @anders_ didn't play station controllers already have a non-rocker?", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 466276202261385217, + "in_reply_to_status_id_str": "466276202261385217", + "in_reply_to_user_id": 22039951, + "in_reply_to_user_id_str": "22039951", + "in_reply_to_screen_name": "marginoferror", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 17:50:48 +0000 2014", + "id": 466274372593147904, + "id_str": "466274372593147904", + "text": "@ffee_machine on the documentation page there's an edit May 5th acknowledging an improvement that removes a bsnes quirk dependency.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466273521945944064, + "in_reply_to_status_id_str": "466273521945944064", + "in_reply_to_user_id": 52914326, + "in_reply_to_user_id_str": "52914326", + "in_reply_to_screen_name": "ffee_machine", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 17:48:49 +0000 2014", + "id": 466273877367472128, + "id_str": "466273877367472128", + "text": "@ffee_machine oh, that looks like it's before the second submission which inproved hardware-faithfulness of the run.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466273521945944064, + "in_reply_to_status_id_str": "466273521945944064", + "in_reply_to_user_id": 52914326, + "in_reply_to_user_id_str": "52914326", + "in_reply_to_screen_name": "ffee_machine", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 17:47:39 +0000 2014", + "id": 466273582008766464, + "id_str": "466273582008766464", + "text": "@anders_ I feel like there surely was but I can't think of anything specific", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466273332217012224, + "in_reply_to_status_id_str": "466273332217012224", + "in_reply_to_user_id": 10886382, + "in_reply_to_user_id_str": "10886382", + "in_reply_to_screen_name": "anders_", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 17:46:55 +0000 2014", + "id": 466273398071787520, + "id_str": "466273398071787520", + "text": "@ffee_machine the super mario one, at least, has been proven on real hardware", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466273092768002049, + "in_reply_to_status_id_str": "466273092768002049", + "in_reply_to_user_id": 52914326, + "in_reply_to_user_id_str": "52914326", + "in_reply_to_screen_name": "ffee_machine", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 17:44:54 +0000 2014", + "id": 466272888061186048, + "id_str": "466272888061186048", + "text": "The four-way rocker means you can't do it with a \"legit\" controller but of course you can just light up the wires manually. Or emulate that.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 17:43:37 +0000 2014", + "id": 466272567205298176, + "id_str": "466272567205298176", + "text": "BTW, flipping out on simultaneous left/right or up/down is a VERY common bug in the D-Pad generations of video games.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 5, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 17:37:07 +0000 2014", + "id": 466270932290793472, + "id_str": "466270932290793472", + "text": "@KishSoup thanks. I could have sworn I had it hyperlinked on that page already.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466269973380214784, + "in_reply_to_status_id_str": "466269973380214784", + "in_reply_to_user_id": 91538041, + "in_reply_to_user_id_str": "91538041", + "in_reply_to_screen_name": "KishSoup", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 17:36:47 +0000 2014", + "id": 466270847557435393, + "id_str": "466270847557435393", + "text": "@kenjimurasame @mcclure111 of course, some people would say that the fact that it's entertaining is \"close enough\" to being a \"game\" proper.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466270434762436608, + "in_reply_to_status_id_str": "466270434762436608", + "in_reply_to_user_id": 40052220, + "in_reply_to_user_id_str": "40052220", + "in_reply_to_screen_name": "kenjimurasame", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 17:33:16 +0000 2014", + "id": 466269962886451201, + "id_str": "466269962886451201", + "text": "@ayaz_khan my near-sightedness became prominent several years before that", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466269243349405696, + "in_reply_to_status_id_str": "466269243349405696", + "in_reply_to_user_id": 15711296, + "in_reply_to_user_id_str": "15711296", + "in_reply_to_screen_name": "ayaz_khan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 17:32:39 +0000 2014", + "id": 466269806329880576, + "id_str": "466269806329880576", + "text": "@KishSoup ... do I really not have this one hyperlinked in already? D:", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466269045239857152, + "in_reply_to_status_id_str": "466269045239857152", + "in_reply_to_user_id": 91538041, + "in_reply_to_user_id_str": "91538041", + "in_reply_to_screen_name": "KishSoup", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 17:31:29 +0000 2014", + "id": 466269513978507264, + "id_str": "466269513978507264", + "text": "@kenjimurasame @mcclure111 the closest it can come to being a game is versions which let you add or remove cells magically on the fly", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466269186902491137, + "in_reply_to_status_id_str": "466269186902491137", + "in_reply_to_user_id": 40052220, + "in_reply_to_user_id_str": "40052220", + "in_reply_to_screen_name": "kenjimurasame", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 17:31:04 +0000 2014", + "id": 466269409557110784, + "id_str": "466269409557110784", + "text": "@kenjimurasame @mcclure111 it's a cellular automata ruleset. A simulation. It processes without input and has no goal.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466269186902491137, + "in_reply_to_status_id_str": "466269186902491137", + "in_reply_to_user_id": 40052220, + "in_reply_to_user_id_str": "40052220", + "in_reply_to_screen_name": "kenjimurasame", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 17:27:06 +0000 2014", + "id": 466268408989089792, + "id_str": "466268408989089792", + "text": "I've added Kirby Super Star to the list of arbitrary code execution in games achievable by controller input. https://t.co/zriSQTUEv9", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 24, + "favorite_count": 33, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 17:15:20 +0000 2014", + "id": 466265449005858816, + "id_str": "466265449005858816", + "text": "@DrPizza @ageis (the starbucks threat would be the thing that makes the ssl *mostly* a wash but not a *total* wash.)", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466265029890023424, + "in_reply_to_status_id_str": "466265029890023424", + "in_reply_to_user_id": 11375732, + "in_reply_to_user_id_str": "11375732", + "in_reply_to_screen_name": "DrPizza", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 17:14:25 +0000 2014", + "id": 466265218033942528, + "id_str": "466265218033942528", + "text": "@DrPizza @ageis they clearly hate making all these individual paperwork requests, which is why they were reading the wire to begin with.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466264967646576640, + "in_reply_to_status_id_str": "466264967646576640", + "in_reply_to_user_id": 11375732, + "in_reply_to_user_id_str": "11375732", + "in_reply_to_screen_name": "DrPizza", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 17:12:09 +0000 2014", + "id": 466264647046537217, + "id_str": "466264647046537217", + "text": "@DrPizza @ageis which means that adding SSL, nominally to protect against wire-readers, was mostly a wash.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466264169495289857, + "in_reply_to_status_id_str": "466264169495289857", + "in_reply_to_user_id": 11375732, + "in_reply_to_user_id_str": "11375732", + "in_reply_to_screen_name": "DrPizza", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 17:11:26 +0000 2014", + "id": 466264466125254658, + "id_str": "466264466125254658", + "text": "@DrPizza @ageis the FBI was reading off the wire and complained MS broke it, MS accommodated, one assumes to restore a similar capacity", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466264169495289857, + "in_reply_to_status_id_str": "466264169495289857", + "in_reply_to_user_id": 11375732, + "in_reply_to_user_id_str": "11375732", + "in_reply_to_screen_name": "DrPizza", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 17:09:21 +0000 2014", + "id": 466263942680297472, + "id_str": "466263942680297472", + "text": "@DrPizza @ageis it is however intended to hide your communications from FBI. The subversion is a policy one to make the technical one weak", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466263535232622592, + "in_reply_to_status_id_str": "466263535232622592", + "in_reply_to_user_id": 11375732, + "in_reply_to_user_id_str": "11375732", + "in_reply_to_screen_name": "DrPizza", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 17:02:25 +0000 2014", + "id": 466262198894215168, + "id_str": "466262198894215168", + "text": "@DrPizza @ageis yes, “we” did. “We” have a responsibility to be articulate about this to, well, everyone else.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466261893460414465, + "in_reply_to_status_id_str": "466261893460414465", + "in_reply_to_user_id": 11375732, + "in_reply_to_user_id_str": "11375732", + "in_reply_to_screen_name": "DrPizza", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 17:00:19 +0000 2014", + "id": 466261669996662784, + "id_str": "466261669996662784", + "text": "@DrPizza @ageis think through the implication — if adding SSL broke the FBI’s collection process, they were just reading the wire directly", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466261410490482688, + "in_reply_to_status_id_str": "466261410490482688", + "in_reply_to_user_id": 11375732, + "in_reply_to_user_id_str": "11375732", + "in_reply_to_screen_name": "DrPizza", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 16:58:53 +0000 2014", + "id": 466261311027167232, + "id_str": "466261311027167232", + "text": "@ErrataRob @kylemaxwell it doesn’t say they were running backbones in 1985, just that they were a corporate partner in 1985", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466260974161252353, + "in_reply_to_status_id_str": "466260974161252353", + "in_reply_to_user_id": 15300995, + "in_reply_to_user_id_str": "15300995", + "in_reply_to_screen_name": "ErrataRob", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 16:58:30 +0000 2014", + "id": 466261212767211520, + "id_str": "466261212767211520", + "text": "@kylemaxwell I mean I cannot think of their names, I’m not in networking", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466260924890759168, + "in_reply_to_status_id_str": "466260924890759168", + "in_reply_to_user_id": 727603, + "in_reply_to_user_id_str": "727603", + "in_reply_to_screen_name": "kylemaxwell", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 16:57:41 +0000 2014", + "id": 466261006814298112, + "id_str": "466261006814298112", + "text": "“We” of course already knew Skype is unambiguously not end to end encrypted, but hey, reminder: Skype encryption is to and from Microsoft", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 9, + "favorite_count": 8, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 16:56:30 +0000 2014", + "id": 466260708536377345, + "id_str": "466260708536377345", + "text": "@kylemaxwell yeah, but it turns out the only name I could think off the top of my head was Akamai and they’re innocent of this one", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466260410681683968, + "in_reply_to_status_id_str": "466260410681683968", + "in_reply_to_user_id": 727603, + "in_reply_to_user_id_str": "727603", + "in_reply_to_screen_name": "kylemaxwell", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 16:55:54 +0000 2014", + "id": 466260559726669824, + "id_str": "466260559726669824", + "text": "RT @ashk4n: Remember when we said Skype isn't 'end to end' crypto? http://t.co/bOmzo4kJOG\n\nSkype stored comms available to PRISM http://t.c…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue May 13 16:40:42 +0000 2014", + "id": 466256732478394369, + "id_str": "466256732478394369", + "text": "Remember when we said Skype isn't 'end to end' crypto? http://t.co/bOmzo4kJOG\n\nSkype stored comms available to PRISM http://t.co/qyXVybYUhM", + "source": "Twitter for Mac", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 17241749, + "id_str": "17241749" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 868, + "favorite_count": 280, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/bOmzo4kJOG", + "expanded_url": "http://arstechnica.com/security/2013/05/think-your-skype-messages-get-end-to-end-encryption-think-again/", + "display_url": "arstechnica.com/security/2013/…", + "indices": [ + 55, + 77 + ] + } + ], + "user_mentions": [ + + ], + "media": [ + { + "id": 466256732058968064, + "id_str": "466256732058968064", + "indices": [ + 117, + 139 + ], + "media_url": "http://pbs.twimg.com/media/Bnh6BwiCYAAPQiO.png", + "media_url_https": "https://pbs.twimg.com/media/Bnh6BwiCYAAPQiO.png", + "url": "http://t.co/qyXVybYUhM", + "display_url": "pic.twitter.com/qyXVybYUhM", + "expanded_url": "http://twitter.com/ashk4n/status/466256732478394369/photo/1", + "type": "photo", + "sizes": { + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 600, + "h": 323, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 183, + "resize": "fit" + }, + "large": { + "w": 745, + "h": 401, + "resize": "fit" + } + } + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 868, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 16:47:38 +0000 2014", + "id": 466258476608798720, + "id_str": "466258476608798720", + "text": ".@ageis @hackerfantastic … the implication being that previously stuff was just being pulled off the wire by the FBI.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466251871460818944, + "in_reply_to_status_id_str": "466251871460818944", + "in_reply_to_user_id": 18179241, + "in_reply_to_user_id_str": "18179241", + "in_reply_to_screen_name": "ageis", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 16:46:50 +0000 2014", + "id": 466258278566350848, + "id_str": "466258278566350848", + "text": "RT @ageis: Encryption works... but then it gets willfully subverted. screw Microsoft. http://t.co/5ESYMcJpe2", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue May 13 16:21:23 +0000 2014", + "id": 466251871460818944, + "id_str": "466251871460818944", + "text": "Encryption works... but then it gets willfully subverted. screw Microsoft. http://t.co/5ESYMcJpe2", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 18179241, + "id_str": "18179241" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 556, + "favorite_count": 153, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ], + "media": [ + { + "id": 466251870105640960, + "id_str": "466251870105640960", + "indices": [ + 75, + 97 + ], + "media_url": "http://pbs.twimg.com/media/Bnh1mwWCIAAjpHn.png", + "media_url_https": "https://pbs.twimg.com/media/Bnh1mwWCIAAjpHn.png", + "url": "http://t.co/5ESYMcJpe2", + "display_url": "pic.twitter.com/5ESYMcJpe2", + "expanded_url": "http://twitter.com/ageis/status/466251871460818944/photo/1", + "type": "photo", + "sizes": { + "small": { + "w": 340, + "h": 175, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 970, + "h": 499, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 309, + "resize": "fit" + } + } + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 556, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 16:40:55 +0000 2014", + "id": 466256788275613696, + "id_str": "466256788275613696", + "text": "RT @dildog: Okay, so there's a position at Veracode now for a low-level iOS hacker/coder, assisting with automating analysis of apps. DM if…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue May 13 15:46:13 +0000 2014", + "id": 466243024125972481, + "id_str": "466243024125972481", + "text": "Okay, so there's a position at Veracode now for a low-level iOS hacker/coder, assisting with automating analysis of apps. DM if interested.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 14159456, + "id_str": "14159456" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 24, + "favorite_count": 8, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 24, + "favorite_count": 0, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 16:39:42 +0000 2014", + "id": 466256483303559168, + "id_str": "466256483303559168", + "text": "@d347hkn3ll hm…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466255592534065152, + "in_reply_to_status_id_str": "466255592534065152", + "in_reply_to_user_id": 152052521, + "in_reply_to_user_id_str": "152052521", + "in_reply_to_screen_name": "d347hkn3ll", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Tue May 13 16:35:11 +0000 2014", + "id": 466255345888010240, + "id_str": "466255345888010240", + "text": "@0penSS it’s just called indent, it ships with most Linux or is in the package repo", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466255220704411648, + "in_reply_to_status_id_str": "466255220704411648", + "in_reply_to_user_id": 207046848, + "in_reply_to_user_id_str": "207046848", + "in_reply_to_screen_name": "0penSS", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 16:30:50 +0000 2014", + "id": 466254252198076416, + "id_str": "466254252198076416", + "text": "@DrPizza which to me implies their boss made them do it and they were like u wot m8", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466238058774282242, + "in_reply_to_status_id_str": "466238058774282242", + "in_reply_to_user_id": 11375732, + "in_reply_to_user_id_str": "11375732", + "in_reply_to_screen_name": "DrPizza", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 16:30:35 +0000 2014", + "id": 466254186150367232, + "id_str": "466254186150367232", + "text": "@DrPizza I read it before, and it seems like the police were acutely aware they were overstepping bounds and not sure what to do about that", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466238058774282242, + "in_reply_to_status_id_str": "466238058774282242", + "in_reply_to_user_id": 11375732, + "in_reply_to_user_id_str": "11375732", + "in_reply_to_screen_name": "DrPizza", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 16:26:14 +0000 2014", + "id": 466253094297563137, + "id_str": "466253094297563137", + "text": "@el_d33 I’d be more worried of @natashenka :)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466252813249441792, + "in_reply_to_status_id_str": "466252813249441792", + "in_reply_to_user_id": 148504362, + "in_reply_to_user_id_str": "148504362", + "in_reply_to_screen_name": "el_d33", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 16:24:03 +0000 2014", + "id": 466252541047894016, + "id_str": "466252541047894016", + "text": "I’m not asking about home dial up providers https://t.co/XzwAQqSXWp", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "quoted_status_id": 466233083805839360, + "quoted_status_id_str": "466233083805839360", + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 16:23:33 +0000 2014", + "id": 466252415701098496, + "id_str": "466252415701098496", + "text": "@hellNbak_ my question comes with an implicit “and still exists” https://t.co/XzwAQqSXWp", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466252215431090176, + "in_reply_to_status_id_str": "466252215431090176", + "in_reply_to_user_id": 117682624, + "in_reply_to_user_id_str": "117682624", + "in_reply_to_screen_name": "hellNbak_", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "quoted_status_id": 466233083805839360, + "quoted_status_id_str": "466233083805839360", + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 16:22:07 +0000 2014", + "id": 466252057914404864, + "id_str": "466252057914404864", + "text": "so which major ISPs were around in 1985?", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 5, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 16:20:45 +0000 2014", + "id": 466251713260040192, + "id_str": "466251713260040192", + "text": "RT @ashk4n: Got BGP? > RT @e3i5: NSA corporate partner FAIRVIEW aggressively shapes traffic so it passes through NSA boxes. http://t.co/Qu…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue May 13 15:06:44 +0000 2014", + "id": 466233083805839360, + "id_str": "466233083805839360", + "text": "Got BGP? > RT @e3i5: NSA corporate partner FAIRVIEW aggressively shapes traffic so it passes through NSA boxes. http://t.co/Quq8cHgTxA", + "source": "Twitter for Android", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 17241749, + "id_str": "17241749" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 71, + "favorite_count": 27, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "e3i5", + "name": "Eric King", + "id": 808782, + "id_str": "808782", + "indices": [ + 18, + 23 + ] + } + ], + "media": [ + { + "id": 466225805300097024, + "id_str": "466225805300097024", + "indices": [ + 116, + 138 + ], + "media_url": "http://pbs.twimg.com/media/Bnhd5lYIYAATEeC.png", + "media_url_https": "https://pbs.twimg.com/media/Bnhd5lYIYAATEeC.png", + "url": "http://t.co/Quq8cHgTxA", + "display_url": "pic.twitter.com/Quq8cHgTxA", + "expanded_url": "http://twitter.com/e3i5/status/466225805480443904/photo/1", + "type": "photo", + "sizes": { + "medium": { + "w": 600, + "h": 97, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 55, + "resize": "fit" + }, + "large": { + "w": 1000, + "h": 162, + "resize": "fit" + } + }, + "source_status_id": 466225805480443904, + "source_status_id_str": "466225805480443904" + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 71, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 16:04:43 +0000 2014", + "id": 466247677077110784, + "id_str": "466247677077110784", + "text": "@pa28 this is a classic case of what Raymond Chen would describe as having the wrong problem and asking the wrong question.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466246885221888001, + "in_reply_to_status_id_str": "466246885221888001", + "in_reply_to_user_id": 17372555, + "in_reply_to_user_id_str": "17372555", + "in_reply_to_screen_name": "pa28", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 15:56:50 +0000 2014", + "id": 466245693842391040, + "id_str": "466245693842391040", + "text": "@0xdeadbabe no I needed glasses before that after I had to use a 60hz CRT for several years", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466245409094905857, + "in_reply_to_status_id_str": "466245409094905857", + "in_reply_to_user_id": 19806908, + "in_reply_to_user_id_str": "19806908", + "in_reply_to_screen_name": "0xdeadbabe", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 15:54:56 +0000 2014", + "id": 466245214689316864, + "id_str": "466245214689316864", + "text": "in uni I used a 5px, all-caps terminal font for IRC so that the professor simply could not make out a word from over my shoulder.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 16, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 15:37:31 +0000 2014", + "id": 466240831549366272, + "id_str": "466240831549366272", + "text": "@needshortername @kwaioMax ... 😐", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466239545151725568, + "in_reply_to_status_id_str": "466239545151725568", + "in_reply_to_user_id": 26157562, + "in_reply_to_user_id_str": "26157562", + "in_reply_to_screen_name": "needshortername", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Tue May 13 15:35:45 +0000 2014", + "id": 466240389666856960, + "id_str": "466240389666856960", + "text": "@ZachWeiner you spelled it both singular and plural in the same strip -- some kind of ploy to get the theologically learned to implode", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466237112484773889, + "in_reply_to_status_id_str": "466237112484773889", + "in_reply_to_user_id": 20745130, + "in_reply_to_user_id_str": "20745130", + "in_reply_to_screen_name": "ZachWeiner", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 15:21:45 +0000 2014", + "id": 466236866568945664, + "id_str": "466236866568945664", + "text": "Rookie mistake public shaming. http://t.co/UwaR6FWy0e", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 19, + "favorited": true, + "retweeted": true, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 15:19:22 +0000 2014", + "id": 466236263587401728, + "id_str": "466236263587401728", + "text": "@thezeist @glyph I'll probably do that when I replace this macbook in a few months, it's already a pile of hacks on hacks", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466236128459501569, + "in_reply_to_status_id_str": "466236128459501569", + "in_reply_to_user_id": 100964199, + "in_reply_to_user_id_str": "100964199", + "in_reply_to_screen_name": "thezeist", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 15:07:09 +0000 2014", + "id": 466233190659923968, + "id_str": "466233190659923968", + "text": "I'm sure Cisco appreciates the free publicity from the pics of government agents opening boxes they're trying to mail to customers.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 64, + "favorite_count": 29, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 14:17:00 +0000 2014", + "id": 466220569965633536, + "id_str": "466220569965633536", + "text": "RT @csoghoian: NSA interdiction in action (note the Cisco logo on the box) http://t.co/kSIcJmbXI6", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue May 13 14:07:59 +0000 2014", + "id": 466218302730420224, + "id_str": "466218302730420224", + "text": "NSA interdiction in action (note the Cisco logo on the box) http://t.co/kSIcJmbXI6", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 14669471, + "id_str": "14669471" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 370, + "favorite_count": 83, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ], + "media": [ + { + "id": 466218296727982080, + "id_str": "466218296727982080", + "indices": [ + 60, + 82 + ], + "media_url": "http://pbs.twimg.com/media/BnhXEhxCUAAcSF5.png", + "media_url_https": "https://pbs.twimg.com/media/BnhXEhxCUAAcSF5.png", + "url": "http://t.co/kSIcJmbXI6", + "display_url": "pic.twitter.com/kSIcJmbXI6", + "expanded_url": "http://twitter.com/csoghoian/status/466218302730420224/photo/1", + "type": "photo", + "sizes": { + "large": { + "w": 711, + "h": 384, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 600, + "h": 324, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 184, + "resize": "fit" + } + } + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 370, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 13:53:58 +0000 2014", + "id": 466214773407752192, + "id_str": "466214773407752192", + "text": "@m1sp … D:", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466145378232840192, + "in_reply_to_status_id_str": "466145378232840192", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Tue May 13 13:43:22 +0000 2014", + "id": 466212107243892736, + "id_str": "466212107243892736", + "text": "RT @puellavulnerata: These code names get worse and worse - meet JTRIG's 'Godfather': http://t.co/7YkXNcjBU7", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue May 13 11:19:52 +0000 2014", + "id": 466175991803437056, + "id_str": "466175991803437056", + "text": "These code names get worse and worse - meet JTRIG's 'Godfather': http://t.co/7YkXNcjBU7", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 54666727, + "id_str": "54666727" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 23, + "favorite_count": 5, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ], + "media": [ + { + "id": 466175990809374720, + "id_str": "466175990809374720", + "indices": [ + 65, + 87 + ], + "media_url": "http://pbs.twimg.com/media/Bngwl_8CMAAVaR0.png", + "media_url_https": "https://pbs.twimg.com/media/Bngwl_8CMAAVaR0.png", + "url": "http://t.co/7YkXNcjBU7", + "display_url": "pic.twitter.com/7YkXNcjBU7", + "expanded_url": "http://twitter.com/puellavulnerata/status/466175991803437056/photo/1", + "type": "photo", + "sizes": { + "medium": { + "w": 600, + "h": 453, + "resize": "fit" + }, + "large": { + "w": 837, + "h": 632, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 257, + "resize": "fit" + } + } + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 23, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 13:41:47 +0000 2014", + "id": 466211706591408128, + "id_str": "466211706591408128", + "text": "RT @windyoona: XCODE is XCODE upside-down.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue May 13 11:26:26 +0000 2014", + "id": 466177646049914880, + "id_str": "466177646049914880", + "text": "XCODE is XCODE upside-down.", + "source": "TweetDeck", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 427696547, + "id_str": "427696547" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 49, + "favorite_count": 52, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 49, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 13:39:13 +0000 2014", + "id": 466211059460612098, + "id_str": "466211059460612098", + "text": "@samuelpepys I feel educated for knowing what an ordinary is in this context", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466186256607879168, + "in_reply_to_status_id_str": "466186256607879168", + "in_reply_to_user_id": 14475268, + "in_reply_to_user_id_str": "14475268", + "in_reply_to_screen_name": "samuelpepys", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 13:33:53 +0000 2014", + "id": 466209720672747521, + "id_str": "466209720672747521", + "text": "RT @DrWhax: One of the most telling NSA slides: http://t.co/esVA37498h", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue May 13 12:05:27 +0000 2014", + "id": 466187463627923456, + "id_str": "466187463627923456", + "text": "One of the most telling NSA slides: http://t.co/esVA37498h", + "source": "TweetDeck", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 18604878, + "id_str": "18604878" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 59, + "favorite_count": 25, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/esVA37498h", + "expanded_url": "http://i.imgur.com/d82LP35.png", + "display_url": "i.imgur.com/d82LP35.png", + "indices": [ + 36, + 58 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 59, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 13:32:50 +0000 2014", + "id": 466209454812188672, + "id_str": "466209454812188672", + "text": "RT @jeremiahfelt: So theft by RFID has finally happened in the field. http://t.co/qPcETaVwcY Have executed this in theory; now it's in prac…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue May 13 12:47:14 +0000 2014", + "id": 466197979788214272, + "id_str": "466197979788214272", + "text": "So theft by RFID has finally happened in the field. http://t.co/qPcETaVwcY Have executed this in theory; now it's in practice.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 9154112, + "id_str": "9154112" + }, + "geo": null, + "coordinates": null, + "place": { + "id": "2f1fc0d72969452b", + "url": "https://api.twitter.com/1.1/geo/id/2f1fc0d72969452b.json", + "place_type": "city", + "name": "Rochester", + "full_name": "Rochester, NY", + "country_code": "US", + "country": "United States", + "contained_within": [ + + ], + "bounding_box": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.701779, + 43.103302 + ], + [ + -77.533421, + 43.103302 + ], + [ + -77.533421, + 43.26759 + ], + [ + -77.701779, + 43.26759 + ] + ] + ] + }, + "attributes": { + } + }, + "contributors": null, + "retweet_count": 63, + "favorite_count": 24, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/qPcETaVwcY", + "expanded_url": "http://www.usatoday.com/story/news/nation-now/2014/05/13/hugging-robbery-card-scanner/9028065/", + "display_url": "usatoday.com/story/news/nat…", + "indices": [ + 52, + 74 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 63, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 13:24:59 +0000 2014", + "id": 466207479076904961, + "id_str": "466207479076904961", + "text": "@neoemonk I’m not though. I mean, bad things have happened, but the overall course of my adult life is pretty ideal", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466150136998281216, + "in_reply_to_status_id_str": "466150136998281216", + "in_reply_to_user_id": 186772185, + "in_reply_to_user_id_str": "186772185", + "in_reply_to_screen_name": "neoemonk", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 04:47:01 +0000 2014", + "id": 466077128488804352, + "id_str": "466077128488804352", + "text": "@m1sp *attempts art* *vaguely succeeds* http://t.co/WCzC2ASMsC", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 03:50:51 +0000 2014", + "id": 466062995743731713, + "id_str": "466062995743731713", + "text": "@rantyben please don't die.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466048436186255360, + "in_reply_to_status_id_str": "466048436186255360", + "in_reply_to_user_id": 977910404, + "in_reply_to_user_id_str": "977910404", + "in_reply_to_screen_name": "rantyben", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 03:50:14 +0000 2014", + "id": 466062838528622592, + "id_str": "466062838528622592", + "text": "@opsec_ebooks @voodooKobra I...\n\nI can't even tell if this is the bot talking or not.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466061070969229312, + "in_reply_to_status_id_str": "466061070969229312", + "in_reply_to_user_id": 2478060493, + "in_reply_to_user_id_str": "2478060493", + "in_reply_to_screen_name": "thegrugq_ebooks", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 03:41:00 +0000 2014", + "id": 466060514112442368, + "id_str": "466060514112442368", + "text": "RT @opsec_ebooks: Ruby is hard", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sat May 10 15:18:40 +0000 2014", + "id": 465148924261433345, + "id_str": "465148924261433345", + "text": "Ruby is hard", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2478060493, + "id_str": "2478060493" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 8, + "favorite_count": 13, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 8, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 03:28:53 +0000 2014", + "id": 466057467047473153, + "id_str": "466057467047473153", + "text": "@marsroverdriver ja zeker.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466055604935479297, + "in_reply_to_status_id_str": "466055604935479297", + "in_reply_to_user_id": 15947277, + "in_reply_to_user_id_str": "15947277", + "in_reply_to_screen_name": "marsroverdriver", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "nl" + }, + { + "created_at": "Tue May 13 03:09:39 +0000 2014", + "id": 466052626870988801, + "id_str": "466052626870988801", + "text": "RT @DarrenPMeyer: me after reading callgraph for a huge dotNET framework all day: http://t.co/Htn7o4rr8L #securityReactions", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue May 13 02:44:41 +0000 2014", + "id": 466046341970292736, + "id_str": "466046341970292736", + "text": "me after reading callgraph for a huge dotNET framework all day: http://t.co/Htn7o4rr8L #securityReactions", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 468928589, + "id_str": "468928589" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 6, + "entities": { + "hashtags": [ + { + "text": "securityReactions", + "indices": [ + 87, + 105 + ] + } + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/Htn7o4rr8L", + "expanded_url": "http://i.imgur.com/vegJX2x.gif", + "display_url": "i.imgur.com/vegJX2x.gif", + "indices": [ + 64, + 86 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 1, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 02:44:38 +0000 2014", + "id": 466046330771496960, + "id_str": "466046330771496960", + "text": "@zhuowei @m1sp ... hmm.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466046075145433088, + "in_reply_to_status_id_str": "466046075145433088", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "ht" + }, + { + "created_at": "Tue May 13 02:36:06 +0000 2014", + "id": 466044184265101312, + "id_str": "466044184265101312", + "text": "@m1sp while you were away I made a thing! Lookit lookit http://t.co/nhJS8kPSYz", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 02:30:29 +0000 2014", + "id": 466042768968929280, + "id_str": "466042768968929280", + "text": "@rantyben sir I feel subtweeted", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466042034134863872, + "in_reply_to_status_id_str": "466042034134863872", + "in_reply_to_user_id": 977910404, + "in_reply_to_user_id_str": "977910404", + "in_reply_to_screen_name": "rantyben", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 02:29:33 +0000 2014", + "id": 466042534192771072, + "id_str": "466042534192771072", + "text": "@m1sp Hayr and Aramaz, when he got to their conversation about Never Getting Married in the lodge.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466042180931297281, + "in_reply_to_status_id_str": "466042180931297281", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 02:23:29 +0000 2014", + "id": 466041007818039296, + "id_str": "466041007818039296", + "text": "@m1sp @zhuowei @Talen_Lee good morning, Jai’den val’Mis’py", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466040757074132993, + "in_reply_to_status_id_str": "466040757074132993", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": true, + "retweeted": false, + "lang": "da" + }, + { + "created_at": "Tue May 13 02:21:03 +0000 2014", + "id": 466040396494041088, + "id_str": "466040396494041088", + "text": "@Talen_Lee @zhuowei in the next chapter, boys slap slap kiss.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466039774365503488, + "in_reply_to_status_id_str": "466039774365503488", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 02:12:35 +0000 2014", + "id": 466038263145172992, + "id_str": "466038263145172992", + "text": "@zhuowei @Talen_Lee Kiel’ndia vel’Vloz’ress, present", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466037921720438785, + "in_reply_to_status_id_str": "466037921720438785", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "nl" + }, + { + "created_at": "Tue May 13 02:09:54 +0000 2014", + "id": 466037589510983682, + "id_str": "466037589510983682", + "text": "@zhuowei @Talen_Lee … I hope *I* haven’t >.>", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466037383943557121, + "in_reply_to_status_id_str": "466037383943557121", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 02:06:49 +0000 2014", + "id": 466036812650008576, + "id_str": "466036812650008576", + "text": "@zhuowei @Talen_Lee I call this the Drowtales Curse", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466036629426020353, + "in_reply_to_status_id_str": "466036629426020353", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 02:04:48 +0000 2014", + "id": 466036306980511744, + "id_str": "466036306980511744", + "text": "@zhuowei @Talen_Lee oddly my own eyes missed those…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466035864221409281, + "in_reply_to_status_id_str": "466035864221409281", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 01:47:38 +0000 2014", + "id": 466031986285355010, + "id_str": "466031986285355010", + "text": "@m1sp DH is finally reading book 1. “You can tell they’re brothers because they just start bro-ing out first chance they get”", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 01:25:43 +0000 2014", + "id": 466026468896944128, + "id_str": "466026468896944128", + "text": "@sjalexander I don’t *want* to waste my good rolls.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466024200478531585, + "in_reply_to_status_id_str": "466024200478531585", + "in_reply_to_user_id": 15116849, + "in_reply_to_user_id_str": "15116849", + "in_reply_to_screen_name": "sjalexander", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 01:20:07 +0000 2014", + "id": 466025060742881282, + "id_str": "466025060742881282", + "text": "@washiiko <.<\n\n>.>\n\nAll in favor of shipping it ✋", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466024784883494912, + "in_reply_to_status_id_str": "466024784883494912", + "in_reply_to_user_id": 47900074, + "in_reply_to_user_id_str": "47900074", + "in_reply_to_screen_name": "washiiko", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 01:18:28 +0000 2014", + "id": 466024646374993922, + "id_str": "466024646374993922", + "text": "RT @weetabix_su: \"Okay, @0xabad1dea. Here's your reminder:\"\n\n\"I am extreme lee fortune ness and it is my response ability to make Damos Off…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue May 13 01:18:17 +0000 2014", + "id": 466024600795480064, + "id_str": "466024600795480064", + "text": "\"Okay, @0xabad1dea. Here's your reminder:\"\n\n\"I am extreme lee fortune ness and it is my response ability to make Damos Offut.\"", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 466023941006307329, + "in_reply_to_status_id_str": "466023941006307329", + "in_reply_to_user_id": 126030998, + "in_reply_to_user_id_str": "126030998", + "in_reply_to_screen_name": "0xabad1dea", + "user": { + "id": 65336507, + "id_str": "65336507" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 8, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "0xabad1dea", + "name": "Melissa", + "id": 126030998, + "id_str": "126030998", + "indices": [ + 7, + 18 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 3, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 01:17:48 +0000 2014", + "id": 466024477344530432, + "id_str": "466024477344530432", + "text": "@ghostqueer and then reject me. I figure it’s my teeth. 😁", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466024100196921346, + "in_reply_to_status_id_str": "466024100196921346", + "in_reply_to_user_id": 2337742344, + "in_reply_to_user_id_str": "2337742344", + "in_reply_to_screen_name": "ghostqueer", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 01:15:40 +0000 2014", + "id": 466023941006307329, + "id_str": "466023941006307329", + "text": "Siri, set a reminder: “I am extremely fortunate and it is my responsibility to make the most of it”", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 10, + "favorite_count": 27, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 01:14:13 +0000 2014", + "id": 466023575002951681, + "id_str": "466023575002951681", + "text": "@ghostqueer Cambridge is where the guy I fell deep in instacrush with lives. And the other one. And the other one. There are more waiting", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466023157502320640, + "in_reply_to_status_id_str": "466023157502320640", + "in_reply_to_user_id": 2337742344, + "in_reply_to_user_id_str": "2337742344", + "in_reply_to_screen_name": "ghostqueer", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 00:52:46 +0000 2014", + "id": 466018179970768896, + "id_str": "466018179970768896", + "text": "@neoemonk that’s impressive in the worst sort of way", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466017622908477443, + "in_reply_to_status_id_str": "466017622908477443", + "in_reply_to_user_id": 186772185, + "in_reply_to_user_id_str": "186772185", + "in_reply_to_screen_name": "neoemonk", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 00:48:37 +0000 2014", + "id": 466017134196183041, + "id_str": "466017134196183041", + "text": "@neoemonk I personally am almost fine, though I suppose it serves as a comment on failed parent relationships in general.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466016728674484224, + "in_reply_to_status_id_str": "466016728674484224", + "in_reply_to_user_id": 186772185, + "in_reply_to_user_id_str": "186772185", + "in_reply_to_screen_name": "neoemonk", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 00:46:57 +0000 2014", + "id": 466016715462033408, + "id_str": "466016715462033408", + "text": "@semibogan I think every memory I have of the past decade is them exchanging children from driveway to porch", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466016353816543233, + "in_reply_to_status_id_str": "466016353816543233", + "in_reply_to_user_id": 168436347, + "in_reply_to_user_id_str": "168436347", + "in_reply_to_screen_name": "semibogan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 00:42:53 +0000 2014", + "id": 466015690478985216, + "id_str": "466015690478985216", + "text": "How many decades do your parents have to be divorced before they stop being a married couple in your dreams", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 7, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 00:39:49 +0000 2014", + "id": 466014917456179200, + "id_str": "466014917456179200", + "text": "@zephyrfalcon don’t forget pink, pink is available", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466014762845736961, + "in_reply_to_status_id_str": "466014762845736961", + "in_reply_to_user_id": 10278632, + "in_reply_to_user_id_str": "10278632", + "in_reply_to_screen_name": "zephyrfalcon", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 00:37:48 +0000 2014", + "id": 466014412860432384, + "id_str": "466014412860432384", + "text": "@wookiee … \n\n… \n\n… \n\nsee if you ever see any again!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466014064452567040, + "in_reply_to_status_id_str": "466014064452567040", + "in_reply_to_user_id": 7831192, + "in_reply_to_user_id_str": "7831192", + "in_reply_to_screen_name": "wookiee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 00:31:04 +0000 2014", + "id": 466012716197363712, + "id_str": "466012716197363712", + "text": "Perhaps one of my goals for the year should be to make it to the professionally maintained swimming pool in my back yard even once", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 00:25:23 +0000 2014", + "id": 466011286137217024, + "id_str": "466011286137217024", + "text": "@jhavard …", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466011015248084992, + "in_reply_to_status_id_str": "466011015248084992", + "in_reply_to_user_id": 14736520, + "in_reply_to_user_id_str": "14736520", + "in_reply_to_screen_name": "jhavard", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Tue May 13 00:11:23 +0000 2014", + "id": 466007765371355136, + "id_str": "466007765371355136", + "text": "@sergeybratus @VolokhConspirac Cheers were raised. 🍻", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466006569721663488, + "in_reply_to_status_id_str": "466006569721663488", + "in_reply_to_user_id": 354406010, + "in_reply_to_user_id_str": "354406010", + "in_reply_to_screen_name": "sergeybratus", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 00:10:48 +0000 2014", + "id": 466007615189688320, + "id_str": "466007615189688320", + "text": "RT @sergeybratus: \"We really have to get over this superstitious horror about passives. It’s gone beyond a joke\" http://t.co/RStAxxRS7C -vi…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue May 13 00:06:38 +0000 2014", + "id": 466006569721663488, + "id_str": "466006569721663488", + "text": "\"We really have to get over this superstitious horror about passives. It’s gone beyond a joke\" http://t.co/RStAxxRS7C -via @VolokhConspirac", + "source": "Twitter for Mac", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 354406010, + "id_str": "354406010" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 15, + "favorite_count": 11, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/RStAxxRS7C", + "expanded_url": "http://chronicle.com/blogs/linguafranca/2011/10/01/mistakes-are-made/", + "display_url": "chronicle.com/blogs/linguafr…", + "indices": [ + 95, + 117 + ] + } + ], + "user_mentions": [ + { + "screen_name": "VolokhConspirac", + "name": "Volokh Conspiracy", + "id": 92470496, + "id_str": "92470496", + "indices": [ + 123, + 139 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 15, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue May 13 00:03:43 +0000 2014", + "id": 466005832560156672, + "id_str": "466005832560156672", + "text": "@jhavard 404… not sure why I expected 200 OK.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 466005354179203072, + "in_reply_to_status_id_str": "466005354179203072", + "in_reply_to_user_id": 14736520, + "in_reply_to_user_id_str": "14736520", + "in_reply_to_screen_name": "jhavard", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 23:38:04 +0000 2014", + "id": 465999380655243266, + "id_str": "465999380655243266", + "text": "@_wirepair o_O why would they do that…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465998295337160704, + "in_reply_to_status_id_str": "465998295337160704", + "in_reply_to_user_id": 253384212, + "in_reply_to_user_id_str": "253384212", + "in_reply_to_screen_name": "_wirepair", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 23:37:18 +0000 2014", + "id": 465999187658555392, + "id_str": "465999187658555392", + "text": "Let me tell you, a SUSPICIOUSLY HIGH number of my childhood memories of New Hampshire involve buildings exploding // @_wirepair", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 23:36:42 +0000 2014", + "id": 465999034025390080, + "id_str": "465999034025390080", + "text": "Well this is the most New Hampshire thing: someone shoots a police officer as a prelude to their house exploding. http://t.co/TYEMTPZbL9", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 23:31:41 +0000 2014", + "id": 465997773037633538, + "id_str": "465997773037633538", + "text": "@_wirepair w h a t", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465996985292435456, + "in_reply_to_status_id_str": "465996985292435456", + "in_reply_to_user_id": 253384212, + "in_reply_to_user_id_str": "253384212", + "in_reply_to_screen_name": "_wirepair", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "pl" + }, + { + "created_at": "Mon May 12 23:31:06 +0000 2014", + "id": 465997627620720640, + "id_str": "465997627620720640", + "text": "@_wirepair what", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465995291380817920, + "in_reply_to_status_id_str": "465995291380817920", + "in_reply_to_user_id": 253384212, + "in_reply_to_user_id_str": "253384212", + "in_reply_to_screen_name": "_wirepair", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Mon May 12 23:29:43 +0000 2014", + "id": 465997279120211968, + "id_str": "465997279120211968", + "text": "@bcrypt basically I broke my own configuration so http://t.co/cfdgynHVBD vanished into the aether but http://t.co/H84e2aQWp5 was born", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465991585788735488, + "in_reply_to_status_id_str": "465991585788735488", + "in_reply_to_user_id": 968881477, + "in_reply_to_user_id_str": "968881477", + "in_reply_to_screen_name": "bcrypt", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 23:16:12 +0000 2014", + "id": 465993875723526144, + "id_str": "465993875723526144", + "text": "Since all the puns were taken, I give you, my Pokemon tribute vanity domain http://t.co/nhJS8kPSYz", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 5, + "favorite_count": 8, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 22:59:18 +0000 2014", + "id": 465989623303258112, + "id_str": "465989623303258112", + "text": "@winocm @comex @m1sp I assume it’s yet another creepy sexual overtones “heroine and loser guy” anime", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465989382504079360, + "in_reply_to_status_id_str": "465989382504079360", + "in_reply_to_user_id": 428413732, + "in_reply_to_user_id_str": "428413732", + "in_reply_to_screen_name": "winocm", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 22:46:02 +0000 2014", + "id": 465986283504816128, + "id_str": "465986283504816128", + "text": "@DarthNull or if you meant example sites, google \"new gtlds\" :) or maybe http://t.co/zy4zwv2B3w", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 465985687876272128, + "in_reply_to_status_id_str": "465985687876272128", + "in_reply_to_user_id": 12287142, + "in_reply_to_user_id_str": "12287142", + "in_reply_to_screen_name": "DarthNull", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 22:45:07 +0000 2014", + "id": 465986054755856384, + "id_str": "465986054755856384", + "text": "@DarthNull gwhois chokes on my new site, but actually suggests to file a bug report if it's wrong about it not being whoisable.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 465985687876272128, + "in_reply_to_status_id_str": "465985687876272128", + "in_reply_to_user_id": 12287142, + "in_reply_to_user_id_str": "12287142", + "in_reply_to_screen_name": "DarthNull", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 22:42:00 +0000 2014", + "id": 465985270869811200, + "id_str": "465985270869811200", + "text": "@DarthNull it's not just browser bars, it's basically anything that parses URLs anywhere is at serious risk of being \"helpful.\"", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 465984942598795264, + "in_reply_to_status_id_str": "465984942598795264", + "in_reply_to_user_id": 12287142, + "in_reply_to_user_id_str": "12287142", + "in_reply_to_screen_name": "DarthNull", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 22:36:35 +0000 2014", + "id": 465983904512372736, + "id_str": "465983904512372736", + "text": "@DarthNull \"ERROR: fully qualified domain names only.\" And this is just from this afternoon", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 465983444368232448, + "in_reply_to_status_id_str": "465983444368232448", + "in_reply_to_user_id": 12287142, + "in_reply_to_user_id_str": "12287142", + "in_reply_to_screen_name": "DarthNull", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 22:36:01 +0000 2014", + "id": 465983762057031681, + "id_str": "465983762057031681", + "text": "@DarthNull \"that's not a website! Let me search that word.with.dots for you. Nope won't try to resolve it, clearly a search term\"", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 465983444368232448, + "in_reply_to_status_id_str": "465983444368232448", + "in_reply_to_user_id": 12287142, + "in_reply_to_user_id_str": "12287142", + "in_reply_to_screen_name": "DarthNull", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 22:35:25 +0000 2014", + "id": 465983612471365633, + "id_str": "465983612471365633", + "text": "@DarthNull \"You typed gobblegook into this box that expected a domain name! No, I won't try resolving it, you're clearly wrong\"", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 465983444368232448, + "in_reply_to_status_id_str": "465983444368232448", + "in_reply_to_user_id": 12287142, + "in_reply_to_user_id_str": "12287142", + "in_reply_to_screen_name": "DarthNull", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 22:34:08 +0000 2014", + "id": 465983291565170689, + "id_str": "465983291565170689", + "text": "How you know you done screwed up DNS: \"hostname\" is an unknown host but \"hostname.hostname\" answers ping just fine", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 13, + "favorite_count": 14, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 22:26:30 +0000 2014", + "id": 465981370469076992, + "id_str": "465981370469076992", + "text": "@zauspar and I'm just hemorrhaging anecdotes", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 465981173429452800, + "in_reply_to_status_id_str": "465981173429452800", + "in_reply_to_user_id": 216571343, + "in_reply_to_user_id_str": "216571343", + "in_reply_to_screen_name": "zauspar", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 22:21:35 +0000 2014", + "id": 465980133531066368, + "id_str": "465980133531066368", + "text": "@hachidorii same. Though since my site doesn’t resolve yet I was hoping it was trying first, failing, and falling back on search", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465979933995458561, + "in_reply_to_status_id_str": "465979933995458561", + "in_reply_to_user_id": 2466901873, + "in_reply_to_user_id_str": "2466901873", + "in_reply_to_screen_name": "hachidorii", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 22:17:44 +0000 2014", + "id": 465979163329826816, + "id_str": "465979163329826816", + "text": "So basically another assumption (the set of gTLDs is closed) baked into thousands of codebases is ruining everything again", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 6, + "favorite_count": 9, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 22:15:20 +0000 2014", + "id": 465978557127471104, + "id_str": "465978557127471104", + "text": "@jenninat0r http://t.co/ZDMr7fPDkV", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465977916057075713, + "in_reply_to_status_id_str": "465977916057075713", + "in_reply_to_user_id": 232339541, + "in_reply_to_user_id_str": "232339541", + "in_reply_to_screen_name": "jenninat0r", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Mon May 12 22:12:11 +0000 2014", + "id": 465977767839154178, + "id_str": "465977767839154178", + "text": "@ExoGato you have to figure out what you want, check the rules, and be prepared for crushing disappointment", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465977548116328448, + "in_reply_to_status_id_str": "465977548116328448", + "in_reply_to_user_id": 239916849, + "in_reply_to_user_id_str": "239916849", + "in_reply_to_screen_name": "ExoGato", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 22:11:28 +0000 2014", + "id": 465977583775928320, + "id_str": "465977583775928320", + "text": "If you register with one of those new vanity TLDs, most of the internet’s infrastructure will helpfully tell you “blue” is not a real TLD", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 13, + "favorite_count": 11, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 22:04:57 +0000 2014", + "id": 465975945149435904, + "id_str": "465975945149435904", + "text": "@ExoGato most national TLDs have rules that you need to be a citizen or you need a business interest in the country", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465975758406815744, + "in_reply_to_status_id_str": "465975758406815744", + "in_reply_to_user_id": 239916849, + "in_reply_to_user_id_str": "239916849", + "in_reply_to_screen_name": "ExoGato", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 22:04:29 +0000 2014", + "id": 465975827545743360, + "id_str": "465975827545743360", + "text": "@eevee I’m pretty sure a third of the switches I know are technically deprecated", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465971330878164993, + "in_reply_to_status_id_str": "465971330878164993", + "in_reply_to_user_id": 14412937, + "in_reply_to_user_id_str": "14412937", + "in_reply_to_screen_name": "eevee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 22:02:59 +0000 2014", + "id": 465975451769655296, + "id_str": "465975451769655296", + "text": "@zauspar hmm… I met the guy who wrote one of those books… he seemed nice but I never read it :p", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465966905824522240, + "in_reply_to_status_id_str": "465966905824522240", + "in_reply_to_user_id": 216571343, + "in_reply_to_user_id_str": "216571343", + "in_reply_to_screen_name": "zauspar", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 22:01:33 +0000 2014", + "id": 465975089062608897, + "id_str": "465975089062608897", + "text": "@ExoGato ah, I didn’t even know that rule was changing at all", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465974886931111936, + "in_reply_to_status_id_str": "465974886931111936", + "in_reply_to_user_id": 239916849, + "in_reply_to_user_id_str": "239916849", + "in_reply_to_screen_name": "ExoGato", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 22:00:28 +0000 2014", + "id": 465974815833485313, + "id_str": "465974815833485313", + "text": "@tangenteroja @DitmarWendt didn’t anyone warn you about Women In Tech", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465973652757164033, + "in_reply_to_status_id_str": "465973652757164033", + "in_reply_to_user_id": 262371761, + "in_reply_to_user_id_str": "262371761", + "in_reply_to_screen_name": "tangenteroja", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 21:54:31 +0000 2014", + "id": 465973320978948096, + "id_str": "465973320978948096", + "text": "@SaulKewl @Shufflejoy as a defector to Massachusetts: lol", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465963591011930113, + "in_reply_to_status_id_str": "465963591011930113", + "in_reply_to_user_id": 213476724, + "in_reply_to_user_id_str": "213476724", + "in_reply_to_screen_name": "SaulKewl", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 21:54:16 +0000 2014", + "id": 465973258135687168, + "id_str": "465973258135687168", + "text": "RT @SaulKewl: sorry i rear ended u bro but that dang camo spray paint job u did on ur truck makes it very hard to see in rural New Hampshire", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Mon May 12 21:15:51 +0000 2014", + "id": 465963591011930113, + "id_str": "465963591011930113", + "text": "sorry i rear ended u bro but that dang camo spray paint job u did on ur truck makes it very hard to see in rural New Hampshire", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 213476724, + "id_str": "213476724" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 10, + "favorite_count": 16, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 10, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 21:52:28 +0000 2014", + "id": 465972802244210688, + "id_str": "465972802244210688", + "text": "@FioraAeterna IDK that mode of failure is still pretty embarrassing for a life safety system", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465972336080855041, + "in_reply_to_status_id_str": "465972336080855041", + "in_reply_to_user_id": 2468699718, + "in_reply_to_user_id_str": "2468699718", + "in_reply_to_screen_name": "FioraAeterna", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 21:48:10 +0000 2014", + "id": 465971723037188096, + "id_str": "465971723037188096", + "text": "@gsuberland are you sure the slow speed isn’t just a zoning ordinance?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465956271540432896, + "in_reply_to_status_id_str": "465956271540432896", + "in_reply_to_user_id": 432513392, + "in_reply_to_user_id_str": "432513392", + "in_reply_to_screen_name": "gsuberland", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 21:48:10 +0000 2014", + "id": 465971723037188096, + "id_str": "465971723037188096", + "text": "@gsuberland are you sure the slow speed isn’t just a zoning ordinance?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465956271540432896, + "in_reply_to_status_id_str": "465956271540432896", + "in_reply_to_user_id": 432513392, + "in_reply_to_user_id_str": "432513392", + "in_reply_to_screen_name": "gsuberland", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 21:35:31 +0000 2014", + "id": 465968539778564096, + "id_str": "465968539778564096", + "text": "RT @icculus: Got a mug from debugger company. Is the message that you have to fix things yourself when they break? Well played. http://t.co…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Mon May 12 18:50:25 +0000 2014", + "id": 465926991540387841, + "id_str": "465926991540387841", + "text": "Got a mug from debugger company. Is the message that you have to fix things yourself when they break? Well played. http://t.co/mZ2rXRKBHu", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 9343022, + "id_str": "9343022" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 80, + "favorite_count": 67, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ], + "media": [ + { + "id": 465926990944796673, + "id_str": "465926990944796673", + "indices": [ + 115, + 137 + ], + "media_url": "http://pbs.twimg.com/media/BndOITKIAAENbAR.jpg", + "media_url_https": "https://pbs.twimg.com/media/BndOITKIAAENbAR.jpg", + "url": "http://t.co/mZ2rXRKBHu", + "display_url": "pic.twitter.com/mZ2rXRKBHu", + "expanded_url": "http://twitter.com/icculus/status/465926991540387841/photo/1", + "type": "photo", + "sizes": { + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 453, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 800, + "resize": "fit" + }, + "large": { + "w": 768, + "h": 1024, + "resize": "fit" + } + } + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 80, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 20:42:54 +0000 2014", + "id": 465955296213745666, + "id_str": "465955296213745666", + "text": "@futarist if you mean my prompt, that's just ordinary Unicode and not the power line thing. It's very font-sensitive though", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 465954128003604480, + "in_reply_to_status_id_str": "465954128003604480", + "in_reply_to_user_id": 44187848, + "in_reply_to_user_id_str": "44187848", + "in_reply_to_screen_name": "futarist", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 20:34:32 +0000 2014", + "id": 465953191650394112, + "id_str": "465953191650394112", + "text": "@Xaosopher hmm, I might know someone actually, dunno if they're taking this sort of work right now, I'll check", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 465947586445074432, + "in_reply_to_status_id_str": "465947586445074432", + "in_reply_to_user_id": 68878049, + "in_reply_to_user_id_str": "68878049", + "in_reply_to_screen_name": "Xaosopher", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 20:20:38 +0000 2014", + "id": 465949693835747329, + "id_str": "465949693835747329", + "text": "@m1sp haha this actually looks a lot like Katarosi http://t.co/EiTNFwqQ1w", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 20:15:36 +0000 2014", + "id": 465948425419493376, + "id_str": "465948425419493376", + "text": "@elad3 I don't think I know *anyone* who seriously believes in Year of Linux on the Desktop anymore.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 465948309824094208, + "in_reply_to_status_id_str": "465948309824094208", + "in_reply_to_user_id": 160897504, + "in_reply_to_user_id_str": "160897504", + "in_reply_to_screen_name": "elad3", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 20:12:19 +0000 2014", + "id": 465947599842082816, + "id_str": "465947599842082816", + "text": "@elad3 #NotAllMen", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 465946245739978752, + "in_reply_to_status_id_str": "465946245739978752", + "in_reply_to_user_id": 160897504, + "in_reply_to_user_id_str": "160897504", + "in_reply_to_screen_name": "elad3", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "vi" + }, + { + "created_at": "Mon May 12 20:11:34 +0000 2014", + "id": 465947412545437696, + "id_str": "465947412545437696", + "text": "@Xaosopher thanks but I won't professionally.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 465947175986286592, + "in_reply_to_status_id_str": "465947175986286592", + "in_reply_to_user_id": 68878049, + "in_reply_to_user_id_str": "68878049", + "in_reply_to_screen_name": "Xaosopher", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 19:44:37 +0000 2014", + "id": 465940628443267074, + "id_str": "465940628443267074", + "text": "@invalidname @DitmarWendt yeah I might have accidentally someone's funny computer", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 465940413476765696, + "in_reply_to_status_id_str": "465940413476765696", + "in_reply_to_user_id": 12604932, + "in_reply_to_user_id_str": "12604932", + "in_reply_to_screen_name": "invalidname", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 19:37:50 +0000 2014", + "id": 465938922045177856, + "id_str": "465938922045177856", + "text": "@tpw_rules @DitmarWendt the new ones. I just bought http://t.co/YkGuplAE1P actually but it doesn't do anything yet", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 465938773197733889, + "in_reply_to_status_id_str": "465938773197733889", + "in_reply_to_user_id": 175232978, + "in_reply_to_user_id_str": "175232978", + "in_reply_to_screen_name": "tpw_rules", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 19:32:25 +0000 2014", + "id": 465937559663960065, + "id_str": "465937559663960065", + "text": "Linux the Anime (content warning: magical girl transformation scene) http://t.co/We5faFJv5H via @DitmarWendt", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 62, + "favorite_count": 70, + "favorited": true, + "retweeted": true, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 18:42:12 +0000 2014", + "id": 465924920946737152, + "id_str": "465924920946737152", + "text": "@glyph @neverpanic LA LA LA I CAN'T HEAR YOU.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 465924283949010945, + "in_reply_to_status_id_str": "465924283949010945", + "in_reply_to_user_id": 9859562, + "in_reply_to_user_id_str": "9859562", + "in_reply_to_screen_name": "glyph", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 18:38:54 +0000 2014", + "id": 465924090306756610, + "id_str": "465924090306756610", + "text": "@neverpanic @glyph a long time ago, but apparently my installation bitrotted. Meh, it worked, and this will never come back to bite me!", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 465923279300362241, + "in_reply_to_status_id_str": "465923279300362241", + "in_reply_to_user_id": 25691263, + "in_reply_to_user_id_str": "25691263", + "in_reply_to_screen_name": "neverpanic", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 18:18:47 +0000 2014", + "id": 465919029266628609, + "id_str": "465919029266628609", + "text": "@gotyaoi well we all know who owns that one and I must say I don't think @eevee would dare make an enemy as formidable as me.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 465918761732554752, + "in_reply_to_status_id_str": "465918761732554752", + "in_reply_to_user_id": 393022772, + "in_reply_to_user_id_str": "393022772", + "in_reply_to_screen_name": "gotyaoi", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 18:14:26 +0000 2014", + "id": 465917936054841344, + "id_str": "465917936054841344", + "text": "http://t.co/geYCtArRo8 TAKEN?? WHO IS THIS MONSTER REGISTERING ALL THE GOOD POKEMON PUNS", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 24, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 18:11:26 +0000 2014", + "id": 465917178639044610, + "id_str": "465917178639044610", + "text": "Really hacked off at whoever registered http://t.co/cTBCKcHvfT before I did", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 14, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 18:04:36 +0000 2014", + "id": 465915458986975232, + "id_str": "465915458986975232", + "text": "@glyph package \"gmp\" in macports. Which at some point in the past built without this happening", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 465915230963265537, + "in_reply_to_status_id_str": "465915230963265537", + "in_reply_to_user_id": 9859562, + "in_reply_to_user_id_str": "9859562", + "in_reply_to_screen_name": "glyph", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 18:03:33 +0000 2014", + "id": 465915193214926849, + "id_str": "465915193214926849", + "text": "@glyph I'm just saying, that's how we got into this unhappy situation.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 465915101229248512, + "in_reply_to_status_id_str": "465915101229248512", + "in_reply_to_user_id": 9859562, + "in_reply_to_user_id_str": "9859562", + "in_reply_to_screen_name": "glyph", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 18:03:00 +0000 2014", + "id": 465915058074439680, + "id_str": "465915058074439680", + "text": "@glyph don't ship build scripts with hardcoded paths to utilities that don't ship with the OS", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 465914923722489856, + "in_reply_to_status_id_str": "465914923722489856", + "in_reply_to_user_id": 9859562, + "in_reply_to_user_id_str": "9859562", + "in_reply_to_screen_name": "glyph", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 17:50:06 +0000 2014", + "id": 465911810865233920, + "id_str": "465911810865233920", + "text": "@Trif4 @hinanawi_chan ohh relevant detail. (Should have thought to try that...)", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 465911573035630592, + "in_reply_to_status_id_str": "465911573035630592", + "in_reply_to_user_id": 80297629, + "in_reply_to_user_id_str": "80297629", + "in_reply_to_screen_name": "Trif4", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 17:49:07 +0000 2014", + "id": 465911561216086016, + "id_str": "465911561216086016", + "text": "@hinanawi_chan repro'd from two different computers with two different OS's... broken pipe, handshake failed", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 465910524006260736, + "in_reply_to_status_id_str": "465910524006260736", + "in_reply_to_user_id": 2336014178, + "in_reply_to_user_id_str": "2336014178", + "in_reply_to_screen_name": "hinanawi_chan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 17:45:23 +0000 2014", + "id": 465910622862204928, + "id_str": "465910622862204928", + "text": "@hinanawi_chan already tried that, I was refused", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 465910524006260736, + "in_reply_to_status_id_str": "465910524006260736", + "in_reply_to_user_id": 2336014178, + "in_reply_to_user_id_str": "2336014178", + "in_reply_to_screen_name": "hinanawi_chan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 17:44:34 +0000 2014", + "id": 465910418922541056, + "id_str": "465910418922541056", + "text": "@m1sp @hinanawi_chan @lunavis it’s not connecting… special port ?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465909534502830080, + "in_reply_to_status_id_str": "465909534502830080", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 17:40:37 +0000 2014", + "id": 465909422108446721, + "id_str": "465909422108446721", + "text": "@m1sp @hinanawi_chan which??", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465909229078200321, + "in_reply_to_status_id_str": "465909229078200321", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 17:40:04 +0000 2014", + "id": 465909286967967744, + "id_str": "465909286967967744", + "text": "@SwedishForSize @rekzai “home” is something like four keystrokes on an Air keyboard though :p but mentally easier overall for me.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465908694606036992, + "in_reply_to_status_id_str": "465908694606036992", + "in_reply_to_user_id": 859398594, + "in_reply_to_user_id_str": "859398594", + "in_reply_to_screen_name": "SwedishForSize", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 17:24:51 +0000 2014", + "id": 465905455332872192, + "id_str": "465905455332872192", + "text": "RT @pusscat: Can you call dibs on a file name? Is that a thing? My project is called exploit.c", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Mon May 12 17:24:35 +0000 2014", + "id": 465905388249161728, + "id_str": "465905388249161728", + "text": "Can you call dibs on a file name? Is that a thing? My project is called exploit.c", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 15794196, + "id_str": "15794196" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 4, + "favorite_count": 6, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 4, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 17:24:48 +0000 2014", + "id": 465905444687708160, + "id_str": "465905444687708160", + "text": "RT @pusscat: Confession hour: I don't know what node.js is.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Mon May 12 17:24:05 +0000 2014", + "id": 465905264726917120, + "id_str": "465905264726917120", + "text": "Confession hour: I don't know what node.js is.", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 15794196, + "id_str": "15794196" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 4, + "favorite_count": 9, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 4, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 17:21:55 +0000 2014", + "id": 465904717361852416, + "id_str": "465904717361852416", + "text": "@GarethLewin I think my country needs to stop designing restrooms with so little privacy and kill all birds with one stone", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465904492488044544, + "in_reply_to_status_id_str": "465904492488044544", + "in_reply_to_user_id": 14195214, + "in_reply_to_user_id_str": "14195214", + "in_reply_to_screen_name": "GarethLewin", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 17:19:50 +0000 2014", + "id": 465904193837215744, + "id_str": "465904193837215744", + "text": "@GarethLewin on principle I have to agree, in practice I’m already phobic enough of public restrooms without worrying about my threat model", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465903853825560576, + "in_reply_to_status_id_str": "465903853825560576", + "in_reply_to_user_id": 14195214, + "in_reply_to_user_id_str": "14195214", + "in_reply_to_screen_name": "GarethLewin", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 17:13:23 +0000 2014", + "id": 465902569072914433, + "id_str": "465902569072914433", + "text": ".@greerga I did go into a boys’ restroom once, to beat up a kid who kept pulling my hair and stuff. He didn’t dare tell on me. :p", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465902042439880704, + "in_reply_to_status_id_str": "465902042439880704", + "in_reply_to_user_id": 313743868, + "in_reply_to_user_id_str": "313743868", + "in_reply_to_screen_name": "greerga", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 11, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 17:12:16 +0000 2014", + "id": 465902288000012289, + "id_str": "465902288000012289", + "text": "@greerga heheh, I never thought to ask him. But I got the impression it was a “standard” American multi-stall restroom", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465902042439880704, + "in_reply_to_status_id_str": "465902042439880704", + "in_reply_to_user_id": 313743868, + "in_reply_to_user_id_str": "313743868", + "in_reply_to_screen_name": "greerga", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 17:10:32 +0000 2014", + "id": 465901852622848001, + "id_str": "465901852622848001", + "text": "RT @spiegaltv: @Shufflejoy plugging my domain http://t.co/3F1yV6eYt8", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Mon May 12 16:56:20 +0000 2014", + "id": 465898277645606913, + "id_str": "465898277645606913", + "text": "@Shufflejoy plugging my domain http://t.co/3F1yV6eYt8", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 465897468618870784, + "in_reply_to_status_id_str": "465897468618870784", + "in_reply_to_user_id": 1567524811, + "in_reply_to_user_id_str": "1567524811", + "in_reply_to_screen_name": "Shufflejoy", + "user": { + "id": 106606405, + "id_str": "106606405" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 4, + "favorite_count": 8, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/3F1yV6eYt8", + "expanded_url": "http://casinonight.zone", + "display_url": "casinonight.zone", + "indices": [ + 31, + 53 + ] + } + ], + "user_mentions": [ + { + "screen_name": "Shufflejoy", + "name": "Emery", + "id": 1567524811, + "id_str": "1567524811", + "indices": [ + 0, + 11 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 4, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 17:09:46 +0000 2014", + "id": 465901659261267969, + "id_str": "465901659261267969", + "text": "@greerga one might infer I never went in to check.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465901554210729984, + "in_reply_to_status_id_str": "465901554210729984", + "in_reply_to_user_id": 313743868, + "in_reply_to_user_id_str": "313743868", + "in_reply_to_screen_name": "greerga", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 17:07:45 +0000 2014", + "id": 465901154355118080, + "id_str": "465901154355118080", + "text": "@Korozjin 60s or 70s, I think. The 100-year-old building across the way had symmetrical restrooms (but no gender neutral option)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465900823155720192, + "in_reply_to_status_id_str": "465900823155720192", + "in_reply_to_user_id": 154405372, + "in_reply_to_user_id_str": "154405372", + "in_reply_to_screen_name": "Korozjin", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 17:05:16 +0000 2014", + "id": 465900529579986944, + "id_str": "465900529579986944", + "text": "Most of the programs in that building were slightly over 50% women. But apparently that possibility didn’t occur to the designers. 2/2", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 17:03:58 +0000 2014", + "id": 465900200075468801, + "id_str": "465900200075468801", + "text": "The science building at my uni had a multi-occupant men’s restroom and a single-occupant gender neutral, accessible restroom. 1/2", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 17:01:39 +0000 2014", + "id": 465899618325512192, + "id_str": "465899618325512192", + "text": "@filcab because the problem was a hardcoded path in a script", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465899504634310658, + "in_reply_to_status_id_str": "465899504634310658", + "in_reply_to_user_id": 15319713, + "in_reply_to_user_id_str": "15319713", + "in_reply_to_screen_name": "filcab", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 17:00:14 +0000 2014", + "id": 465899259167248385, + "id_str": "465899259167248385", + "text": "@OaklandElle @Talen_Lee @Shufflejoy sure, I don’t mean we can’t, and my school def wasn’t equipped to be accommodating in certain respects", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465898159831396352, + "in_reply_to_status_id_str": "465898159831396352", + "in_reply_to_user_id": 385847731, + "in_reply_to_user_id_str": "385847731", + "in_reply_to_screen_name": "OaklandElle", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 16:55:54 +0000 2014", + "id": 465898169432539136, + "id_str": "465898169432539136", + "text": "@Shufflejoy where can I buy this", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465897468618870784, + "in_reply_to_status_id_str": "465897468618870784", + "in_reply_to_user_id": 1567524811, + "in_reply_to_user_id_str": "1567524811", + "in_reply_to_screen_name": "Shufflejoy", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 16:55:06 +0000 2014", + "id": 465897968982564864, + "id_str": "465897968982564864", + "text": "@Talen_Lee @Shufflejoy @OaklandElle and on touring day, EVERY woman that went in there stopped dead with “???”", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465897338855112704, + "in_reply_to_status_id_str": "465897338855112704", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 16:53:57 +0000 2014", + "id": 465897678681829376, + "id_str": "465897678681829376", + "text": "@Talen_Lee @Shufflejoy @OaklandElle there was a dorm in my school where they genderflipped a floor from m to f but left the restrooms", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465897338855112704, + "in_reply_to_status_id_str": "465897338855112704", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 16:46:17 +0000 2014", + "id": 465895749637922816, + "id_str": "465895749637922816", + "text": "RT @wwwtxt: Just for fun, save a copy of your posts so that someday you can look back and remember how immature you were in 1992. ☯92MAY", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Mon May 12 16:20:52 +0000 2014", + "id": 465889352149921793, + "id_str": "465889352149921793", + "text": "Just for fun, save a copy of your posts so that someday you can look back and remember how immature you were in 1992. ☯92MAY", + "source": "Buffer", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 207756340, + "id_str": "207756340" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 130, + "favorite_count": 141, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 130, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 16:42:13 +0000 2014", + "id": 465894727980953600, + "id_str": "465894727980953600", + "text": "@grp oh, I forgot I magnified it a little for the screenshot, so it's above 10pt", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 465894582673096704, + "in_reply_to_status_id_str": "465894582673096704", + "in_reply_to_user_id": 69459178, + "in_reply_to_user_id_str": "69459178", + "in_reply_to_screen_name": "grp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 16:38:30 +0000 2014", + "id": 465893789828415488, + "id_str": "465893789828415488", + "text": "@grp Andale Monaco 10pt. I might have the antialiasing cutoff higher than the default", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 465893521732698112, + "in_reply_to_status_id_str": "465893521732698112", + "in_reply_to_user_id": 69459178, + "in_reply_to_user_id_str": "69459178", + "in_reply_to_screen_name": "grp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 16:37:00 +0000 2014", + "id": 465893415914598401, + "id_str": "465893415914598401", + "text": ".@FioraAeterna You think , \"okay, I know I got this wrong before, which means it must not be my first instinct, which means-\"", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 465893223877996544, + "in_reply_to_status_id_str": "465893223877996544", + "in_reply_to_user_id": 2468699718, + "in_reply_to_user_id_str": "2468699718", + "in_reply_to_screen_name": "FioraAeterna", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 8, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 16:36:35 +0000 2014", + "id": 465893310859837440, + "id_str": "465893310859837440", + "text": "RT @FioraAeterna: @0xabad1dea I think there must be a law of physics that ensures getting the ln argument order wrong far more often than c…", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Mon May 12 16:36:15 +0000 2014", + "id": 465893223877996544, + "id_str": "465893223877996544", + "text": "@0xabad1dea I think there must be a law of physics that ensures getting the ln argument order wrong far more often than chance", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 465892206403149824, + "in_reply_to_status_id_str": "465892206403149824", + "in_reply_to_user_id": 126030998, + "in_reply_to_user_id_str": "126030998", + "in_reply_to_screen_name": "0xabad1dea", + "user": { + "id": 2468699718, + "id_str": "2468699718" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 4, + "favorite_count": 4, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "0xabad1dea", + "name": "Melissa", + "id": 126030998, + "id_str": "126030998", + "indices": [ + 0, + 11 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 4, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 16:34:55 +0000 2014", + "id": 465892888547979266, + "id_str": "465892888547979266", + "text": "I should probably file a ticket about that hardcoded pa-- oh you want me to create a trac account for your site, very low friction hmm", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 10, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 16:32:12 +0000 2014", + "id": 465892206403149824, + "id_str": "465892206403149824", + "text": "everything about unix in one screencap http://t.co/C3dFTk8xfa", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 59, + "favorite_count": 52, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 16:12:12 +0000 2014", + "id": 465887173078962176, + "id_str": "465887173078962176", + "text": "@ghostqueer \\o/", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465886937522638848, + "in_reply_to_status_id_str": "465886937522638848", + "in_reply_to_user_id": 2337742344, + "in_reply_to_user_id_str": "2337742344", + "in_reply_to_screen_name": "ghostqueer", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Mon May 12 15:53:17 +0000 2014", + "id": 465882411394674689, + "id_str": "465882411394674689", + "text": "@DrPizza dude, creepy pre-murder tweets", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465882001929555968, + "in_reply_to_status_id_str": "465882001929555968", + "in_reply_to_user_id": 11375732, + "in_reply_to_user_id_str": "11375732", + "in_reply_to_screen_name": "DrPizza", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 15:50:45 +0000 2014", + "id": 465881775852777472, + "id_str": "465881775852777472", + "text": "@zhuowei @m1sp it’s fine, I pretty clearly opted out of trying.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465881630612000768, + "in_reply_to_status_id_str": "465881630612000768", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 15:32:50 +0000 2014", + "id": 465877268154576897, + "id_str": "465877268154576897", + "text": "@m1sp http://t.co/7W0SuS4zGN", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Mon May 12 15:12:06 +0000 2014", + "id": 465872049446346752, + "id_str": "465872049446346752", + "text": "@raudelmil @Kufat @Joshua_Brindle yeah I get the feeling there's a fundamental disconnect here in how different people think normally", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 465871823620411392, + "in_reply_to_status_id_str": "465871823620411392", + "in_reply_to_user_id": 182083978, + "in_reply_to_user_id_str": "182083978", + "in_reply_to_screen_name": "raudelmil", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 15:04:33 +0000 2014", + "id": 465870149946736641, + "id_str": "465870149946736641", + "text": "@hinanawi_chan weirdly fake-looking isn’t he", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465867993835384832, + "in_reply_to_status_id_str": "465867993835384832", + "in_reply_to_user_id": 2336014178, + "in_reply_to_user_id_str": "2336014178", + "in_reply_to_screen_name": "hinanawi_chan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 15:03:32 +0000 2014", + "id": 465869891506290688, + "id_str": "465869891506290688", + "text": "@zhuowei @Talen_Lee I don’t think that would help, there’s no reason they wouldn’t have that server side", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465869350587490304, + "in_reply_to_status_id_str": "465869350587490304", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 14:56:57 +0000 2014", + "id": 465868235381170177, + "id_str": "465868235381170177", + "text": "RT @davidknauer: @0xabad1dea This is how psychs get their kicks; they're trying to start a made-up word battle. \nFluboxicone\nSpumazipam\nGer…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Mon May 12 14:56:23 +0000 2014", + "id": 465868093655629824, + "id_str": "465868093655629824", + "text": "@0xabad1dea This is how psychs get their kicks; they're trying to start a made-up word battle. \nFluboxicone\nSpumazipam\nGeranium --Shit! lost", + "source": "Plume for Android", + "truncated": false, + "in_reply_to_status_id": 465864409844568064, + "in_reply_to_status_id_str": "465864409844568064", + "in_reply_to_user_id": 126030998, + "in_reply_to_user_id_str": "126030998", + "in_reply_to_screen_name": "0xabad1dea", + "user": { + "id": 17804745, + "id_str": "17804745" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 6, + "favorite_count": 10, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "0xabad1dea", + "name": "Melissa", + "id": 126030998, + "id_str": "126030998", + "indices": [ + 0, + 11 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 6, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 14:55:28 +0000 2014", + "id": 465867862855659520, + "id_str": "465867862855659520", + "text": "As retweeted by the official NSA Public Affairs Office. No further comment http://t.co/bhNTt62NVb", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 13, + "favorite_count": 13, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 14:41:45 +0000 2014", + "id": 465864409844568064, + "id_str": "465864409844568064", + "text": "They ask if I'd prefer Fooboxicide or Barendrol or Quuxiode and this is my ironic hell for using too much technobabble around the innocent", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 10, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 14:39:05 +0000 2014", + "id": 465863741587066880, + "id_str": "465863741587066880", + "text": "My other communicative issue with the psych* group is they seem to presume I know the names of all medicines and what they do.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 14:06:30 +0000 2014", + "id": 465855538799316992, + "id_str": "465855538799316992", + "text": ".@Kufat I've repeatedly asked for clarification of her definition but she seems to find the word axiomic", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 465854698713776128, + "in_reply_to_status_id_str": "465854698713776128", + "in_reply_to_user_id": 207691003, + "in_reply_to_user_id_str": "207691003", + "in_reply_to_screen_name": "Kufat", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 14:00:44 +0000 2014", + "id": 465854086970363904, + "id_str": "465854086970363904", + "text": "And what alternative speeds there are for thoughts, they sound dreadfully dull, but she apparently has no opinion on that.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 13:59:09 +0000 2014", + "id": 465853689820094464, + "id_str": "465853689820094464", + "text": "Every time I go to the psychiatrist she asks if my thoughts have been “racing.” Every time, I ask if that’s considered some sort of problem", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 5, + "favorite_count": 7, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 13:50:53 +0000 2014", + "id": 465851610439356416, + "id_str": "465851610439356416", + "text": "@redsoxunixgeek … maybe? It’d depend on the show I guess…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465851029721190400, + "in_reply_to_status_id_str": "465851029721190400", + "in_reply_to_user_id": 14481812, + "in_reply_to_user_id_str": "14481812", + "in_reply_to_screen_name": "redsoxunixgeek", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 13:50:08 +0000 2014", + "id": 465851419653066752, + "id_str": "465851419653066752", + "text": "@JZdziarski thank you, I have living with it for a few years and I doubt it’s going away, but, it will not kill me, just make life harder.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465850934531063808, + "in_reply_to_status_id_str": "465850934531063808", + "in_reply_to_user_id": 1267770224, + "in_reply_to_user_id_str": "1267770224", + "in_reply_to_screen_name": "JZdziarski", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 13:46:23 +0000 2014", + "id": 465850475787849728, + "id_str": "465850475787849728", + "text": "I will *probably* be at Defcon, which will almost kill me, but DH comes with and that makes a big difference.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 13:44:58 +0000 2014", + "id": 465850121184612352, + "id_str": "465850121184612352", + "text": "It’s on my website, but just as FYI, for health reasons I am not able to accept invitations outside of New England right now", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 13:40:52 +0000 2014", + "id": 465849089595543552, + "id_str": "465849089595543552", + "text": "@B31tf4c3 @kennwhite I really genuinely appreciate being in the consideration but I’m keeping travel to a minimum for health reasons :(", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465848026658246656, + "in_reply_to_status_id_str": "465848026658246656", + "in_reply_to_user_id": 423784527, + "in_reply_to_user_id_str": "423784527", + "in_reply_to_screen_name": "B31tf4c3", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 13:35:18 +0000 2014", + "id": 465847689981493249, + "id_str": "465847689981493249", + "text": "@B31tf4c3 @kennwhite ah, okay, but if your venue is outside of New England then I probably can’t make it :(", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465846913859092481, + "in_reply_to_status_id_str": "465846913859092481", + "in_reply_to_user_id": 423784527, + "in_reply_to_user_id_str": "423784527", + "in_reply_to_screen_name": "B31tf4c3", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 13:31:45 +0000 2014", + "id": 465846795424526337, + "id_str": "465846795424526337", + "text": "@B31tf4c3 I’m uh, a bit apprehensive about DMs from strangers with no established topic, it’s often a pretty shady request.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465846155478597632, + "in_reply_to_status_id_str": "465846155478597632", + "in_reply_to_user_id": 423784527, + "in_reply_to_user_id_str": "423784527", + "in_reply_to_screen_name": "B31tf4c3", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 13:28:58 +0000 2014", + "id": 465846092727615489, + "id_str": "465846092727615489", + "text": "@B31tf4c3 … 64 bytes from ab.ad.1d.ea?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465845820555022336, + "in_reply_to_status_id_str": "465845820555022336", + "in_reply_to_user_id": 423784527, + "in_reply_to_user_id_str": "423784527", + "in_reply_to_screen_name": "B31tf4c3", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "ht" + }, + { + "created_at": "Mon May 12 13:21:48 +0000 2014", + "id": 465844289650839552, + "id_str": "465844289650839552", + "text": "RT @mikko: The SELinux coloring book: https://t.co/FnbFyxcIm6 http://t.co/wdwd4CiVln", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Mon May 12 08:30:37 +0000 2014", + "id": 465771012421058560, + "id_str": "465771012421058560", + "text": "The SELinux coloring book: https://t.co/FnbFyxcIm6 http://t.co/wdwd4CiVln", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 23566038, + "id_str": "23566038" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 76, + "favorite_count": 57, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "https://t.co/FnbFyxcIm6", + "expanded_url": "https://github.com/mairin/selinux-coloring-book/blob/master/PDF/en/selinux-coloring-book_A4-Stapled.pdf?raw=true", + "display_url": "github.com/mairin/selinux…", + "indices": [ + 27, + 50 + ] + } + ], + "user_mentions": [ + + ], + "media": [ + { + "id": 465771011338563585, + "id_str": "465771011338563585", + "indices": [ + 51, + 73 + ], + "media_url": "http://pbs.twimg.com/media/BnbARF2CcAEVBWz.png", + "media_url_https": "https://pbs.twimg.com/media/BnbARF2CcAEVBWz.png", + "url": "http://t.co/wdwd4CiVln", + "display_url": "pic.twitter.com/wdwd4CiVln", + "expanded_url": "http://twitter.com/mikko/status/465771012421058560/photo/1", + "type": "photo", + "sizes": { + "small": { + "w": 340, + "h": 460, + "resize": "fit" + }, + "medium": { + "w": 500, + "h": 677, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 500, + "h": 677, + "resize": "fit" + } + } + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 76, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 05:05:25 +0000 2014", + "id": 465719371185537024, + "id_str": "465719371185537024", + "text": "@aspects_ebooks perfect", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465718312488673280, + "in_reply_to_status_id_str": "465718312488673280", + "in_reply_to_user_id": 2345404375, + "in_reply_to_user_id_str": "2345404375", + "in_reply_to_screen_name": "aspects_ebooks", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "tl" + }, + { + "created_at": "Mon May 12 04:43:05 +0000 2014", + "id": 465713750520397824, + "id_str": "465713750520397824", + "text": "@m1sp @Talen_Lee she really believes in herself. It’s the secret to serial deicide", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465713460643258368, + "in_reply_to_status_id_str": "465713460643258368", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 04:36:24 +0000 2014", + "id": 465712069657251840, + "id_str": "465712069657251840", + "text": "@Talen_Lee ohh you’re gonna hate this http://t.co/3sZKkeFCu9", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 04:19:50 +0000 2014", + "id": 465707901232111616, + "id_str": "465707901232111616", + "text": "@briankrebs well uh, congrats on your newfound peace and quiet", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465706326849757184, + "in_reply_to_status_id_str": "465706326849757184", + "in_reply_to_user_id": 22790881, + "in_reply_to_user_id_str": "22790881", + "in_reply_to_screen_name": "briankrebs", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 04:00:21 +0000 2014", + "id": 465702995863171072, + "id_str": "465702995863171072", + "text": "@alt_kyasarin @alt_m1sp oh… I have that problem too.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465702856952000512, + "in_reply_to_status_id_str": "465702856952000512", + "in_reply_to_user_id": 2399004906, + "in_reply_to_user_id_str": "2399004906", + "in_reply_to_screen_name": "alt_kyasarin", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 03:59:56 +0000 2014", + "id": 465702893690298368, + "id_str": "465702893690298368", + "text": "@m1sp your eternal soul is 32-bit?! Mispy we’re going to different heavens !!! D:", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465702606724030464, + "in_reply_to_status_id_str": "465702606724030464", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 11, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 03:50:56 +0000 2014", + "id": 465700627658440704, + "id_str": "465700627658440704", + "text": "@zhuowei @m1sp http://t.co/oZA1kIb7Vx", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465696184858722304, + "in_reply_to_status_id_str": "465696184858722304", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Mon May 12 03:39:40 +0000 2014", + "id": 465697790803202048, + "id_str": "465697790803202048", + "text": "@aspects_ebooks … 😂", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465696794442092544, + "in_reply_to_status_id_str": "465696794442092544", + "in_reply_to_user_id": 2345404375, + "in_reply_to_user_id_str": "2345404375", + "in_reply_to_screen_name": "aspects_ebooks", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": true, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Mon May 12 03:39:00 +0000 2014", + "id": 465697622225731585, + "id_str": "465697622225731585", + "text": "@m1sp it doesn’t have to be an internet e-mail account ~", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465695500901969921, + "in_reply_to_status_id_str": "465695500901969921", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 03:38:07 +0000 2014", + "id": 465697402414841856, + "id_str": "465697402414841856", + "text": "@egyp7 oh, *I’m* straight-married, but I ooze teh queer. Baby bro just seems to have somehow not caught any.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465696894862098434, + "in_reply_to_status_id_str": "465696894862098434", + "in_reply_to_user_id": 16957326, + "in_reply_to_user_id_str": "16957326", + "in_reply_to_screen_name": "egyp7", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 03:35:10 +0000 2014", + "id": 465696658005954560, + "id_str": "465696658005954560", + "text": "@zhuowei @m1sp Izmirlian of Antaram (or of Tokhar, depending who you ask) and Constans Veraldo", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465696184858722304, + "in_reply_to_status_id_str": "465696184858722304", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "ro" + }, + { + "created_at": "Mon May 12 03:32:43 +0000 2014", + "id": 465696043443568643, + "id_str": "465696043443568643", + "text": "@m1sp also for u http://t.co/N4kar64qiF", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465688769538961408, + "in_reply_to_status_id_str": "465688769538961408", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 03:30:31 +0000 2014", + "id": 465695489036259329, + "id_str": "465695489036259329", + "text": "@fivetanley @ThePokeBot it’s completely automated, attempting to beat the world record.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465694106086166528, + "in_reply_to_status_id_str": "465694106086166528", + "in_reply_to_user_id": 306497372, + "in_reply_to_user_id_str": "306497372", + "in_reply_to_screen_name": "fivetanley", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 03:09:31 +0000 2014", + "id": 465690202732654592, + "id_str": "465690202732654592", + "text": "@ejknapp would you like my list of grievances? Suggestion #1: never use children as a bargaining chip for revenge", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465689819541016576, + "in_reply_to_status_id_str": "465689819541016576", + "in_reply_to_user_id": 23240963, + "in_reply_to_user_id_str": "23240963", + "in_reply_to_screen_name": "ejknapp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 03:08:41 +0000 2014", + "id": 465689994569723904, + "id_str": "465689994569723904", + "text": "RT @zbender: A ten-page mathematics paper on how Pokémon capturing works. http://t.co/3RCulMNHOP\n\nHT @0xabad1dea", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Mon May 12 03:07:08 +0000 2014", + "id": 465689606654922753, + "id_str": "465689606654922753", + "text": "A ten-page mathematics paper on how Pokémon capturing works. http://t.co/3RCulMNHOP\n\nHT @0xabad1dea", + "source": "Tweetlogix", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 6661092, + "id_str": "6661092" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 30, + "favorite_count": 39, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/3RCulMNHOP", + "expanded_url": "http://www.dragonflycave.com/rbycapture.aspx", + "display_url": "dragonflycave.com/rbycapture.aspx", + "indices": [ + 61, + 83 + ] + } + ], + "user_mentions": [ + { + "screen_name": "0xabad1dea", + "name": "Melissa", + "id": 126030998, + "id_str": "126030998", + "indices": [ + 88, + 99 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "fr" + }, + "retweet_count": 30, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "fr" + }, + { + "created_at": "Mon May 12 03:07:36 +0000 2014", + "id": 465689720065097728, + "id_str": "465689720065097728", + "text": ".@_Snape_ as an author, guilty as charged, but I’m an equal opportunity parent murderer", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465678350921383938, + "in_reply_to_status_id_str": "465678350921383938", + "in_reply_to_user_id": 304185486, + "in_reply_to_user_id_str": "304185486", + "in_reply_to_screen_name": "_Snape_", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 03:07:00 +0000 2014", + "id": 465689571057885184, + "id_str": "465689571057885184", + "text": "RT @_Snape_: A moment of silence for all of the fictional mothers that had to die in the name of tragic back story and character developmen…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Mon May 12 02:22:25 +0000 2014", + "id": 465678350921383938, + "id_str": "465678350921383938", + "text": "A moment of silence for all of the fictional mothers that had to die in the name of tragic back story and character development.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 304185486, + "id_str": "304185486" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 6267, + "favorite_count": 7723, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 6267, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 03:06:53 +0000 2014", + "id": 465689540334604289, + "id_str": "465689540334604289", + "text": "@Chispshot @ThePokeBot someone just pointed out its choice of where it got stuck is very holiday appropriate", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465689088641605634, + "in_reply_to_status_id_str": "465689088641605634", + "in_reply_to_user_id": 615624105, + "in_reply_to_user_id_str": "615624105", + "in_reply_to_screen_name": "Chispshot", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 03:02:22 +0000 2014", + "id": 465688404353888258, + "id_str": "465688404353888258", + "text": "Glorious bike-on-wall action @ThePokeBot http://t.co/H2P0ufcqc7", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 02:59:35 +0000 2014", + "id": 465687704282595328, + "id_str": "465687704282595328", + "text": "@m1sp for u http://t.co/wbIWxj75AV", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 02:31:52 +0000 2014", + "id": 465680728374923264, + "id_str": "465680728374923264", + "text": "@Jennimason0990 @Talen_Lee sadness, on my part", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465680521469894656, + "in_reply_to_status_id_str": "465680521469894656", + "in_reply_to_user_id": 485288297, + "in_reply_to_user_id_str": "485288297", + "in_reply_to_screen_name": "Jennimason0990", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 02:30:28 +0000 2014", + "id": 465680375528706049, + "id_str": "465680375528706049", + "text": "@zhuowei @Talen_Lee is that… a tiny misfortune glyph", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465680166392315904, + "in_reply_to_status_id_str": "465680166392315904", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 02:29:07 +0000 2014", + "id": 465680037577228292, + "id_str": "465680037577228292", + "text": "@Jennimason0990 @Talen_Lee generically ******", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465679406758133760, + "in_reply_to_status_id_str": "465679406758133760", + "in_reply_to_user_id": 485288297, + "in_reply_to_user_id_str": "485288297", + "in_reply_to_screen_name": "Jennimason0990", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 02:28:50 +0000 2014", + "id": 465679965489750016, + "id_str": "465679965489750016", + "text": "@Jennimason0990 @Talen_Lee and every time I’ve dabbled in a more feminine appearance, it’s ended in literal tears.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465679406758133760, + "in_reply_to_status_id_str": "465679406758133760", + "in_reply_to_user_id": 485288297, + "in_reply_to_user_id_str": "485288297", + "in_reply_to_screen_name": "Jennimason0990", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 02:28:18 +0000 2014", + "id": 465679832022401025, + "id_str": "465679832022401025", + "text": "@Jennimason0990 @Talen_Lee … I dress pretty uhh, genetically male. :(", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465679406758133760, + "in_reply_to_status_id_str": "465679406758133760", + "in_reply_to_user_id": 485288297, + "in_reply_to_user_id_str": "485288297", + "in_reply_to_screen_name": "Jennimason0990", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 02:21:30 +0000 2014", + "id": 465678119437737984, + "id_str": "465678119437737984", + "text": "@Talen_Lee I’m not… maybe I’m just not cute after all :(", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465675912122339329, + "in_reply_to_status_id_str": "465675912122339329", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 02:20:54 +0000 2014", + "id": 465677969634377728, + "id_str": "465677969634377728", + "text": "RT @DaSpadeR: \"Fozzie Bear invents cloud computing circa 1987. \" http://t.co/k4AhfUMOC4", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sun May 11 03:12:38 +0000 2014", + "id": 465328602595086336, + "id_str": "465328602595086336", + "text": "\"Fozzie Bear invents cloud computing circa 1987. \" http://t.co/k4AhfUMOC4", + "source": "iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 105938027, + "id_str": "105938027" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 290, + "favorite_count": 134, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/k4AhfUMOC4", + "expanded_url": "http://i.imgur.com/lteSnGz.jpg", + "display_url": "i.imgur.com/lteSnGz.jpg", + "indices": [ + 51, + 73 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "ro" + }, + "retweet_count": 290, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "ro" + }, + { + "created_at": "Mon May 12 02:20:19 +0000 2014", + "id": 465677822225580033, + "id_str": "465677822225580033", + "text": "@Talen_Lee the inability of the average American teen to read in that context probably contributed to the seemingly implausible popularity", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465674498079862784, + "in_reply_to_status_id_str": "465674498079862784", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 01:58:52 +0000 2014", + "id": 465672425472937984, + "id_str": "465672425472937984", + "text": "@Emi_Wisp @Talen_Lee @retrocombine it's okay, the really not good ones go to Spooky Mormon Hell. https://t.co/N4q56Tfwmi", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 465672179863289856, + "in_reply_to_status_id_str": "465672179863289856", + "in_reply_to_user_id": 2302542510, + "in_reply_to_user_id_str": "2302542510", + "in_reply_to_screen_name": "Emiko_Wisp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 01:39:46 +0000 2014", + "id": 465667619693920256, + "id_str": "465667619693920256", + "text": "@filcab @hinanawi_chan *sobs quietly*", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 465666423545536513, + "in_reply_to_status_id_str": "465666423545536513", + "in_reply_to_user_id": 15319713, + "in_reply_to_user_id_str": "15319713", + "in_reply_to_screen_name": "filcab", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 01:23:52 +0000 2014", + "id": 465663616100749312, + "id_str": "465663616100749312", + "text": "@Emi_Wisp @retrocombine @Talen_Lee MY JEALOUSY. \n\nThough bla bla spiritual suffering is what made me who I am today bla bla", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 465663482667732992, + "in_reply_to_status_id_str": "465663482667732992", + "in_reply_to_user_id": 2302542510, + "in_reply_to_user_id_str": "2302542510", + "in_reply_to_screen_name": "Emiko_Wisp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 01:19:12 +0000 2014", + "id": 465662443834728448, + "id_str": "465662443834728448", + "text": "@Emi_Wisp @Talen_Lee @retrocombine American Christianity is carefully studied by devout un-christians the world over.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 465662205678346240, + "in_reply_to_status_id_str": "465662205678346240", + "in_reply_to_user_id": 2302542510, + "in_reply_to_user_id_str": "2302542510", + "in_reply_to_screen_name": "Emiko_Wisp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 01:13:43 +0000 2014", + "id": 465661060733616128, + "id_str": "465661060733616128", + "text": "@retrocombine @Talen_Lee @Emi_Wisp \"Quiverfull\" is a term for a certain kind of religious thing involving lots and lots of babies", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 465660689697099776, + "in_reply_to_status_id_str": "465660689697099776", + "in_reply_to_user_id": 128747003, + "in_reply_to_user_id_str": "128747003", + "in_reply_to_screen_name": "retrocombine", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 01:12:49 +0000 2014", + "id": 465660837965754368, + "id_str": "465660837965754368", + "text": "@retrocombine @Talen_Lee It is, but for HER mother, not her.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 465660689697099776, + "in_reply_to_status_id_str": "465660689697099776", + "in_reply_to_user_id": 128747003, + "in_reply_to_user_id_str": "128747003", + "in_reply_to_screen_name": "retrocombine", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 01:12:10 +0000 2014", + "id": 465660672173285377, + "id_str": "465660672173285377", + "text": "(Do not let my sarcastic tint on everything imply I'm not happy for baby bro and a nice, normal girl.)", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 01:11:07 +0000 2014", + "id": 465660409802792960, + "id_str": "465660409802792960", + "text": "@Talen_Lee I wouldn't wish that on a nice, normal girl.\n\nOh um she's apparently an... arrow in a full quiver.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 465660012438642688, + "in_reply_to_status_id_str": "465660012438642688", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 12 01:09:05 +0000 2014", + "id": 465659897858629632, + "id_str": "465659897858629632", + "text": "Baby bro called to let me know he's marrying a nice, normal girl. Sigh - there goes my hope of the whole family turning out queer.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 4, + "favorite_count": 9, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 11 23:59:26 +0000 2014", + "id": 465642370331996160, + "id_str": "465642370331996160", + "text": "Basically I opt out of interacting with my family as much as possible and I’m much more at peace for it #TwitterAsTherapy", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 15, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 11 23:54:18 +0000 2014", + "id": 465641077727584256, + "id_str": "465641077727584256", + "text": "@RSWestmoreland 🍪", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465640988405661696, + "in_reply_to_status_id_str": "465640988405661696", + "in_reply_to_user_id": 242595690, + "in_reply_to_user_id_str": "242595690", + "in_reply_to_screen_name": "RSWestmoreland", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Sun May 11 23:52:45 +0000 2014", + "id": 465640688013828096, + "id_str": "465640688013828096", + "text": "Twitter as therapy: I don’t hate my mother, and she’s been good to me since I left (hm), but I’m still kinda angry about stuff from long ago", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 7, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 11 23:49:43 +0000 2014", + "id": 465639923249201153, + "id_str": "465639923249201153", + "text": "@lukew @codinghorror yes, been happening for months, and it seems the mobile browser vendors are treating it as closed wontfix", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465629410172092416, + "in_reply_to_status_id_str": "465629410172092416", + "in_reply_to_user_id": 13889622, + "in_reply_to_user_id_str": "13889622", + "in_reply_to_screen_name": "lukew", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 11 23:46:41 +0000 2014", + "id": 465639161073254401, + "id_str": "465639161073254401", + "text": "@j4cob oh, perhaps a good person to ask would be @GreatFireChina, they’re on top of, well, the great firewall", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465629053165133824, + "in_reply_to_status_id_str": "465629053165133824", + "in_reply_to_user_id": 41329897, + "in_reply_to_user_id_str": "41329897", + "in_reply_to_screen_name": "j4cob", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 11 23:31:14 +0000 2014", + "id": 465635271300882432, + "id_str": "465635271300882432", + "text": "@j4cob @flipzagging and then there is a wide assortment of political parody such as @PRISM_NSA for all languages and countries", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465634298083565568, + "in_reply_to_status_id_str": "465634298083565568", + "in_reply_to_user_id": 41329897, + "in_reply_to_user_id_str": "41329897", + "in_reply_to_screen_name": "j4cob", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 11 23:29:20 +0000 2014", + "id": 465634793716457473, + "id_str": "465634793716457473", + "text": "@j4cob @flipzagging glancing at my timeline, I have no idea who the Telecomix family of accounts are run by, and they actively resist govts", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465634298083565568, + "in_reply_to_status_id_str": "465634298083565568", + "in_reply_to_user_id": 41329897, + "in_reply_to_user_id_str": "41329897", + "in_reply_to_screen_name": "j4cob", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 11 23:21:29 +0000 2014", + "id": 465632819096461312, + "id_str": "465632819096461312", + "text": "@pyhxr if so, a pretty lousy one", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465631944844144640, + "in_reply_to_status_id_str": "465631944844144640", + "in_reply_to_user_id": 1090729004, + "in_reply_to_user_id_str": "1090729004", + "in_reply_to_screen_name": "pyhxr", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 11 23:12:25 +0000 2014", + "id": 465630536409812992, + "id_str": "465630536409812992", + "text": "@torvos REALLY depends on the mechanics http://t.co/HVXkf8OMLl", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465627761831604224, + "in_reply_to_status_id_str": "465627761831604224", + "in_reply_to_user_id": 15399231, + "in_reply_to_user_id_str": "15399231", + "in_reply_to_screen_name": "torvos", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sun May 11 23:06:54 +0000 2014", + "id": 465629146345791491, + "id_str": "465629146345791491", + "text": "RT @j4cob: What are some great examples of anonymous / pseudonymous Twitter accounts? Especially ones that are very \"free-speechy.\"", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sun May 11 23:06:31 +0000 2014", + "id": 465629053165133824, + "id_str": "465629053165133824", + "text": "What are some great examples of anonymous / pseudonymous Twitter accounts? Especially ones that are very \"free-speechy.\"", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 41329897, + "id_str": "41329897" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 8, + "favorite_count": 7, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 8, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 11 23:06:30 +0000 2014", + "id": 465629045972291585, + "id_str": "465629045972291585", + "text": "@aspects_ebooks well that would indeed be pretty remarkable", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465628840216502272, + "in_reply_to_status_id_str": "465628840216502272", + "in_reply_to_user_id": 2345404375, + "in_reply_to_user_id_str": "2345404375", + "in_reply_to_screen_name": "aspects_ebooks", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 11 23:05:36 +0000 2014", + "id": 465628819588907009, + "id_str": "465628819588907009", + "text": "@Shufflejoy please tell me that’s her real line", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465627904047857664, + "in_reply_to_status_id_str": "465627904047857664", + "in_reply_to_user_id": 1567524811, + "in_reply_to_user_id_str": "1567524811", + "in_reply_to_screen_name": "Shufflejoy", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 11 23:04:00 +0000 2014", + "id": 465628417489391616, + "id_str": "465628417489391616", + "text": "@retrocombine what my eyes saw is a little different from how the camera captured it mind http://t.co/WxetGY4yv7", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465627461942644737, + "in_reply_to_status_id_str": "465627461942644737", + "in_reply_to_user_id": 128747003, + "in_reply_to_user_id_str": "128747003", + "in_reply_to_screen_name": "retrocombine", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sun May 11 22:58:57 +0000 2014", + "id": 465627147735158784, + "id_str": "465627147735158784", + "text": "There’s a pink flowering tree outside my window; the sunset shining through it makes it look like I’m trapped in a schoolgirl anime", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 7, + "favorite_count": 14, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 11 22:48:44 +0000 2014", + "id": 465624575557246976, + "id_str": "465624575557246976", + "text": "@Shufflejoy @cosmothra 😨", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465623380159635457, + "in_reply_to_status_id_str": "465623380159635457", + "in_reply_to_user_id": 1567524811, + "in_reply_to_user_id_str": "1567524811", + "in_reply_to_screen_name": "Shufflejoy", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Sun May 11 22:33:16 +0000 2014", + "id": 465620684786642944, + "id_str": "465620684786642944", + "text": "RT @munin: @Viss So the wretched hive of scum and villainy has a better disclosure program than many 'legit' companies.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sun May 11 22:10:46 +0000 2014", + "id": 465615020102283264, + "id_str": "465615020102283264", + "text": "@Viss So the wretched hive of scum and villainy has a better disclosure program than many 'legit' companies.", + "source": "HootSuite", + "truncated": false, + "in_reply_to_status_id": 465613416845942784, + "in_reply_to_status_id_str": "465613416845942784", + "in_reply_to_user_id": 2269701, + "in_reply_to_user_id_str": "2269701", + "in_reply_to_screen_name": "Viss", + "user": { + "id": 8513352, + "id_str": "8513352" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 5, + "favorite_count": 7, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "Viss", + "name": "Dan Tentler", + "id": 2269701, + "id_str": "2269701", + "indices": [ + 0, + 5 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 5, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 11 22:33:14 +0000 2014", + "id": 465620673759838208, + "id_str": "465620673759838208", + "text": "RT @Viss: http://t.co/tZvqq9T2IT a writeup by @moot about a recent 4chan breech describing some of the consequences of getting popped.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sun May 11 22:04:23 +0000 2014", + "id": 465613416845942784, + "id_str": "465613416845942784", + "text": "http://t.co/tZvqq9T2IT a writeup by @moot about a recent 4chan breech describing some of the consequences of getting popped.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2269701, + "id_str": "2269701" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 16, + "favorite_count": 11, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/tZvqq9T2IT", + "expanded_url": "http://chrishateswriting.com/post/84931829578/when-a-bad-day-gets-worse-getting-hacked-twice-in-one", + "display_url": "chrishateswriting.com/post/849318295…", + "indices": [ + 0, + 22 + ] + } + ], + "user_mentions": [ + { + "screen_name": "moot", + "name": "moot", + "id": 36994785, + "id_str": "36994785", + "indices": [ + 36, + 41 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 16, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sun May 11 21:57:38 +0000 2014", + "id": 465611717205303297, + "id_str": "465611717205303297", + "text": "@alt_m1sp during which I missed your twitteringness ~", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465611389340360704, + "in_reply_to_status_id_str": "465611389340360704", + "in_reply_to_user_id": 2401670173, + "in_reply_to_user_id_str": "2401670173", + "in_reply_to_screen_name": "alt_m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 11 21:40:46 +0000 2014", + "id": 465607472963936257, + "id_str": "465607472963936257", + "text": "@alt_m1sp you’re not a *paid* scientist, but one does not simply stop having an inquisitive and evidence-driven mindset. I hope.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465599867318833152, + "in_reply_to_status_id_str": "465599867318833152", + "in_reply_to_user_id": 2401670173, + "in_reply_to_user_id_str": "2401670173", + "in_reply_to_screen_name": "alt_m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 11 21:39:28 +0000 2014", + "id": 465607145091006464, + "id_str": "465607145091006464", + "text": "@madamluna @winnersusedrugs @Shufflejoy http://t.co/orKfIG4A29", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465527182094508033, + "in_reply_to_status_id_str": "465527182094508033", + "in_reply_to_user_id": 9490552, + "in_reply_to_user_id_str": "9490552", + "in_reply_to_screen_name": "madamluna", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Sun May 11 21:36:25 +0000 2014", + "id": 465606378921660416, + "id_str": "465606378921660416", + "text": "@m1sp I attempted a complex scene… emphasis on attempted. http://t.co/UyqGfZj1tJ", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sun May 11 21:09:27 +0000 2014", + "id": 465599589534273537, + "id_str": "465599589534273537", + "text": "@Myriachan in 10th grade I was assigned to read Emma. Read first chapter, last chapter, wrote the report, teacher none the wiser", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465598316349112320, + "in_reply_to_status_id_str": "465598316349112320", + "in_reply_to_user_id": 1556497868, + "in_reply_to_user_id_str": "1556497868", + "in_reply_to_screen_name": "Myriachan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 11 21:00:12 +0000 2014", + "id": 465597263931506688, + "id_str": "465597263931506688", + "text": "@Myriachan while her work may have been original at the time, the genre has been beaten to death", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465596242437734400, + "in_reply_to_status_id_str": "465596242437734400", + "in_reply_to_user_id": 1556497868, + "in_reply_to_user_id_str": "1556497868", + "in_reply_to_screen_name": "Myriachan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 11 20:59:34 +0000 2014", + "id": 465597104506040321, + "id_str": "465597104506040321", + "text": "@Myriachan nah trust me it’s not really a matter of girliness", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465596242437734400, + "in_reply_to_status_id_str": "465596242437734400", + "in_reply_to_user_id": 1556497868, + "in_reply_to_user_id_str": "1556497868", + "in_reply_to_screen_name": "Myriachan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 11 20:28:53 +0000 2014", + "id": 465589380091224064, + "id_str": "465589380091224064", + "text": "RT @Kufat: \"Sir, could you please explain why you thought you could bring a SWORD onto an airplane?\"\n\"Well, you let that other guy bring a …", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sun May 11 20:28:03 +0000 2014", + "id": 465589171906547712, + "id_str": "465589171906547712", + "text": "\"Sir, could you please explain why you thought you could bring a SWORD onto an airplane?\"\n\"Well, you let that other guy bring a pen...\"", + "source": "MetroTwit", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 207691003, + "id_str": "207691003" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 58, + "favorite_count": 41, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 58, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 11 20:03:11 +0000 2014", + "id": 465582915381100544, + "id_str": "465582915381100544", + "text": "@Catfish_Man :D", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465582709708816384, + "in_reply_to_status_id_str": "465582709708816384", + "in_reply_to_user_id": 15444008, + "in_reply_to_user_id_str": "15444008", + "in_reply_to_screen_name": "Catfish_Man", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Sun May 11 19:39:31 +0000 2014", + "id": 465576956625305602, + "id_str": "465576956625305602", + "text": "So basically I deeply resent food as some sort of upkeep penalty when I'm clearly *busy*", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 22, + "favorite_count": 25, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 11 19:25:01 +0000 2014", + "id": 465573310533615616, + "id_str": "465573310533615616", + "text": "@cyclerunner when I'm interested in what I'm doing, it stays unnoticeable until it's an emergency, manifested as sickness feeling", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 465572894207389698, + "in_reply_to_status_id_str": "465572894207389698", + "in_reply_to_user_id": 20166253, + "in_reply_to_user_id_str": "20166253", + "in_reply_to_screen_name": "cyclerunner", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 11 19:23:57 +0000 2014", + "id": 465573040621772800, + "id_str": "465573040621772800", + "text": "@akopa spoilers: the thing I'm forgetting is eating", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 465572927384322048, + "in_reply_to_status_id_str": "465572927384322048", + "in_reply_to_user_id": 14314798, + "in_reply_to_user_id_str": "14314798", + "in_reply_to_screen_name": "akopa", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 11 19:22:51 +0000 2014", + "id": 465572763835449344, + "id_str": "465572763835449344", + "text": "Followed by:\n4:00pm nom\n10:00pm why do I feel hungry again?! I already ate today", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 7, + "favorite_count": 14, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 11 19:20:57 +0000 2014", + "id": 465572286234255360, + "id_str": "465572286234255360", + "text": "@m1sp @zhuowei I uhh, I am not willing to appropriate this sort of thing from this country in particular.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 465571650180640768, + "in_reply_to_status_id_str": "465571650180640768", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 11 19:19:56 +0000 2014", + "id": 465572028351643648, + "id_str": "465572028351643648", + "text": "Me, every single weekend:\n10:30am wake up, get on computer\n2:00pm I feel like I'm forgetting something...\n3:00pm why do I feel sick", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 16, + "favorite_count": 23, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 11 19:12:20 +0000 2014", + "id": 465570118534066176, + "id_str": "465570118534066176", + "text": "@flameeyes @TehMillhouse oh the disclosure is this year, but their dev team is apparently trapped in a vortex", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 465569930629623808, + "in_reply_to_status_id_str": "465569930629623808", + "in_reply_to_user_id": 14383295, + "in_reply_to_user_id_str": "14383295", + "in_reply_to_screen_name": "flameeyes", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 11 19:10:53 +0000 2014", + "id": 465569754283925504, + "id_str": "465569754283925504", + "text": "@zhuowei @m1sp yeah -- here's a version with the actual singing, on slow mode https://t.co/wvexO36Fvk", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 465569243103117312, + "in_reply_to_status_id_str": "465569243103117312", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sun May 11 19:09:01 +0000 2014", + "id": 465569284324749312, + "id_str": "465569284324749312", + "text": "@m1sp @zhuowei bit difficult to tease out that translation, but it's very definitely a patriotic ballad", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 465567330294972416, + "in_reply_to_status_id_str": "465567330294972416", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 11 19:03:32 +0000 2014", + "id": 465567902884585473, + "id_str": "465567902884585473", + "text": "@m1sp @zhuowei little bit http://t.co/36qe7Q5MY8", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 465567330294972416, + "in_reply_to_status_id_str": "465567330294972416", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sun May 11 18:59:28 +0000 2014", + "id": 465566881072427008, + "id_str": "465566881072427008", + "text": "@m1sp @zhuowei it's not copyright I'm concerned about, I'm pretty sure the tune is of folk provenance. It's the... cultural context.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 465566705071046656, + "in_reply_to_status_id_str": "465566705071046656", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 11 18:58:20 +0000 2014", + "id": 465566593162817536, + "id_str": "465566593162817536", + "text": "@m1sp as I mentioned to @zhuowei I really *wish* that I could make this *canonically* Aramaz's themesong, but I can't.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 465566347267547137, + "in_reply_to_status_id_str": "465566347267547137", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 11 18:51:50 +0000 2014", + "id": 465564957946298368, + "id_str": "465564957946298368", + "text": "@m1sp *skips tracks* now Houri's Unofficial Themesong https://t.co/lduKodLwFu", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 465562304751218689, + "in_reply_to_status_id_str": "465562304751218689", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sun May 11 18:51:32 +0000 2014", + "id": 465564883094740992, + "id_str": "465564883094740992", + "text": "@eqe I have a fruit tree outside my window. The bees *live* elsewhere, thankfully.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 465564648947740673, + "in_reply_to_status_id_str": "465564648947740673", + "in_reply_to_user_id": 16076004, + "in_reply_to_user_id_str": "16076004", + "in_reply_to_screen_name": "eqe", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 11 18:43:19 +0000 2014", + "id": 465562814447226881, + "id_str": "465562814447226881", + "text": "@m1sp today's soundtrack is the Aramaz Song, on loop, forever http://t.co/c9CnlpXOo1", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 465562304751218689, + "in_reply_to_status_id_str": "465562304751218689", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sun May 11 18:42:13 +0000 2014", + "id": 465562536105230336, + "id_str": "465562536105230336", + "text": "@m1sp idk but I’m in a good mood", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465562304751218689, + "in_reply_to_status_id_str": "465562304751218689", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 6, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 11 18:41:02 +0000 2014", + "id": 465562240658460673, + "id_str": "465562240658460673", + "text": "@m1sp Mispy!! Dance with me ᕕ( ᐛ )ᕗ", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 11 18:30:36 +0000 2014", + "id": 465559616852877312, + "id_str": "465559616852877312", + "text": "@Shufflejoy what, you don’t want my actionable tips on reducing risk?!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465559454985883648, + "in_reply_to_status_id_str": "465559454985883648", + "in_reply_to_user_id": 1567524811, + "in_reply_to_user_id_str": "1567524811", + "in_reply_to_screen_name": "Shufflejoy", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 11 18:29:55 +0000 2014", + "id": 465559444445614082, + "id_str": "465559444445614082", + "text": "@zhuowei but the lyrics are patriotic, so I can’t make it canonically his theme song. That’d be weirdly appropriative 😒", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 11 18:29:08 +0000 2014", + "id": 465559244637741056, + "id_str": "465559244637741056", + "text": "@zhuowei speaking of Armenian; Aramaz as a character was 100% inspired by this song, isn’t it catchy http://t.co/Ye2rYMpR0p", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sun May 11 18:20:42 +0000 2014", + "id": 465557121707544576, + "id_str": "465557121707544576", + "text": "@bcrypt welp\n\nHello", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465550517318332416, + "in_reply_to_status_id_str": "465550517318332416", + "in_reply_to_user_id": 968881477, + "in_reply_to_user_id_str": "968881477", + "in_reply_to_screen_name": "bcrypt", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 11 18:19:44 +0000 2014", + "id": 465556881692315648, + "id_str": "465556881692315648", + "text": "@antumbral *sighs in mild annoyance at each reminder*\n\nNot that I expect the internet personally to accommodate me with silence", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465546061676048384, + "in_reply_to_status_id_str": "465546061676048384", + "in_reply_to_user_id": 19837512, + "in_reply_to_user_id_str": "19837512", + "in_reply_to_screen_name": "antumbral", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 11 18:13:44 +0000 2014", + "id": 465555369159589889, + "id_str": "465555369159589889", + "text": "RT @mattblaze: Just to be clear - and I'm sure I'm speaking for a lot of people here - \"pirate\" copies of my academic papers do nothing but…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sun May 11 17:04:14 +0000 2014", + "id": 465537879218077696, + "id_str": "465537879218077696", + "text": "Just to be clear - and I'm sure I'm speaking for a lot of people here - \"pirate\" copies of my academic papers do nothing but help me.", + "source": "TweetDeck", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 26567591, + "id_str": "26567591" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 285, + "favorite_count": 152, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 285, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 11 18:07:53 +0000 2014", + "id": 465553899232165890, + "id_str": "465553899232165890", + "text": "RT @youngvulgarian: Hypermasculinity is so weird: http://t.co/YIv1Q1d4MK", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sun May 11 13:59:27 +0000 2014", + "id": 465491377292587008, + "id_str": "465491377292587008", + "text": "Hypermasculinity is so weird: http://t.co/YIv1Q1d4MK", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 268809577, + "id_str": "268809577" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1145, + "favorite_count": 1127, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ], + "media": [ + { + "id": 465491375187034112, + "id_str": "465491375187034112", + "indices": [ + 30, + 52 + ], + "media_url": "http://pbs.twimg.com/media/BnXB8IAIAAAxTam.jpg", + "media_url_https": "https://pbs.twimg.com/media/BnXB8IAIAAAxTam.jpg", + "url": "http://t.co/YIv1Q1d4MK", + "display_url": "pic.twitter.com/YIv1Q1d4MK", + "expanded_url": "http://twitter.com/youngvulgarian/status/465491377292587008/photo/1", + "type": "photo", + "sizes": { + "medium": { + "w": 500, + "h": 375, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 500, + "h": 375, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 255, + "resize": "fit" + } + } + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 1145, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sun May 11 18:06:38 +0000 2014", + "id": 465553585204236288, + "id_str": "465553585204236288", + "text": "@kebesays and here we see 99 people who cut their fingers off and 1 person experimenting with modes. \n\nThat person can implement it themself", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465553361052254208, + "in_reply_to_status_id_str": "465553361052254208", + "in_reply_to_user_id": 41912279, + "in_reply_to_user_id_str": "41912279", + "in_reply_to_screen_name": "kebesays", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 11 17:59:14 +0000 2014", + "id": 465551721830182912, + "id_str": "465551721830182912", + "text": "@zhuowei this is the language in question btw http://t.co/ZfX9qVsr3m", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 465551230605881345, + "in_reply_to_status_id_str": "465551230605881345", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sun May 11 17:58:02 +0000 2014", + "id": 465551420100321280, + "id_str": "465551420100321280", + "text": "@zhuowei bahahahahahahaha", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 465551230605881345, + "in_reply_to_status_id_str": "465551230605881345", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "tl" + }, + { + "created_at": "Sun May 11 17:57:43 +0000 2014", + "id": 465551339481600000, + "id_str": "465551339481600000", + "text": "@zhuowei to further disrespect it, the aspects pronunciation is erel-hoen and not ere-lhoen, because I think that sounds neat", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 465549182850195456, + "in_reply_to_status_id_str": "465549182850195456", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 11 17:56:47 +0000 2014", + "id": 465551102692192256, + "id_str": "465551102692192256", + "text": "@AggeKA Eve? Eve is passive. Eve is weak.\n\nI am the active opponent. I. am. MALICE.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 465550877122887680, + "in_reply_to_status_id_str": "465550877122887680", + "in_reply_to_user_id": 419773303, + "in_reply_to_user_id_str": "419773303", + "in_reply_to_screen_name": "AggeKA", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 11 17:52:19 +0000 2014", + "id": 465549979952492544, + "id_str": "465549979952492544", + "text": "@zhuowei good luck. I like dead languages... and disrespecting their orthography. http://t.co/HCMkS11VGO", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 465549182850195456, + "in_reply_to_status_id_str": "465549182850195456", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sun May 11 17:47:54 +0000 2014", + "id": 465548868332314624, + "id_str": "465548868332314624", + "text": "@zhuowei also, I was seeing if Google Translate had improved Armenian enough to give me a better translation of a certain song (it hasn't)", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 465546758836080641, + "in_reply_to_status_id_str": "465546758836080641", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 11 17:45:37 +0000 2014", + "id": 465548292588195840, + "id_str": "465548292588195840", + "text": "@zhuowei to answer the attendant question, that is not, in fact, all the world.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 465546758836080641, + "in_reply_to_status_id_str": "465546758836080641", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 11 17:44:12 +0000 2014", + "id": 465547936214945792, + "id_str": "465547936214945792", + "text": "@zhuowei which is an artistic disemvoweling of https://t.co/uukNgfEvwx", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 465546758836080641, + "in_reply_to_status_id_str": "465546758836080641", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sun May 11 17:43:01 +0000 2014", + "id": 465547641846112257, + "id_str": "465547641846112257", + "text": "@zhuowei that's a solid theory reflecting reality, though yesterday I needed .jp because I was settling on a word for http://t.co/JpNS0gBp5g", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 465546758836080641, + "in_reply_to_status_id_str": "465546758836080641", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sun May 11 17:24:36 +0000 2014", + "id": 465543004573298688, + "id_str": "465543004573298688", + "text": "@raudelmil you got an IRL sigh", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 465542516628934657, + "in_reply_to_status_id_str": "465542516628934657", + "in_reply_to_user_id": 182083978, + "in_reply_to_user_id_str": "182083978", + "in_reply_to_screen_name": "raudelmil", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 11 16:57:29 +0000 2014", + "id": 465536181044641792, + "id_str": "465536181044641792", + "text": "I'm brought back around to the question \"wait, why did crypto APIs ever ship ECB mode to begin with?\" #visiblepenguins", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 4, + "favorite_count": 5, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 11 16:48:17 +0000 2014", + "id": 465533865230999553, + "id_str": "465533865230999553", + "text": "@zauspar it wasn't terribly intrusive, and it's all ready to go for the next tenant if they want it; landlord would probably okay it", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 465533119907364865, + "in_reply_to_status_id_str": "465533119907364865", + "in_reply_to_user_id": 216571343, + "in_reply_to_user_id_str": "216571343", + "in_reply_to_screen_name": "zauspar", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 11 16:46:31 +0000 2014", + "id": 465533420848676864, + "id_str": "465533420848676864", + "text": "@zauspar in my house they installed a modem box to the inside of the closet, and it has a wire that comes out to the nearest power plug,", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 465533119907364865, + "in_reply_to_status_id_str": "465533119907364865", + "in_reply_to_user_id": 216571343, + "in_reply_to_user_id_str": "216571343", + "in_reply_to_screen_name": "zauspar", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 11 16:33:07 +0000 2014", + "id": 465530049899143168, + "id_str": "465530049899143168", + "text": "It uses ECB mode encryption, but this fundamental fail is made irrelevant by the known keys... bahahaha", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 4, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 11 16:28:39 +0000 2014", + "id": 465528923296522241, + "id_str": "465528923296522241", + "text": "See vulnerability description, point the first for some serious 1990s lols https://t.co/nW1eNSfEqa", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 20, + "favorite_count": 14, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sun May 11 16:24:32 +0000 2014", + "id": 465527890054893568, + "id_str": "465527890054893568", + "text": "@kilophoton why u do dis", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 465527597116313600, + "in_reply_to_status_id_str": "465527597116313600", + "in_reply_to_user_id": 13142292, + "in_reply_to_user_id_str": "13142292", + "in_reply_to_screen_name": "kilophoton", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 11 16:21:43 +0000 2014", + "id": 465527181293002753, + "id_str": "465527181293002753", + "text": "@bwalter01 flowers is why they're here! landlady would probably be pretty annoyed if I tried to move the tree", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 465526943648321536, + "in_reply_to_status_id_str": "465526943648321536", + "in_reply_to_user_id": 2271624740, + "in_reply_to_user_id_str": "2271624740", + "in_reply_to_screen_name": "bwalter01", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 11 16:19:41 +0000 2014", + "id": 465526666991644672, + "id_str": "465526666991644672", + "text": "@demize95 GAHH.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 465526603058274305, + "in_reply_to_status_id_str": "465526603058274305", + "in_reply_to_user_id": 137133048, + "in_reply_to_user_id_str": "137133048", + "in_reply_to_screen_name": "demize95", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "tl" + }, + { + "created_at": "Sun May 11 16:19:28 +0000 2014", + "id": 465526613128392705, + "id_str": "465526613128392705", + "text": "Let's not discuss what sort of late-night arguments I'm getting into that would put both Armenian and Japanese on my translate hotbar", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 9, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 11 16:18:18 +0000 2014", + "id": 465526321003520000, + "id_str": "465526321003520000", + "text": "I'm out of linguistic cookies, so here's the spoiler http://t.co/CuIDZ859Hn", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 11, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sun May 11 16:17:31 +0000 2014", + "id": 465526125146279937, + "id_str": "465526125146279937", + "text": "@ModusGolems winner!", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 465525927225856000, + "in_reply_to_status_id_str": "465525927225856000", + "in_reply_to_user_id": 2263261266, + "in_reply_to_user_id_str": "2263261266", + "in_reply_to_screen_name": "ModusGolems", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "nl" + }, + { + "created_at": "Sun May 11 16:11:06 +0000 2014", + "id": 465524508133040130, + "id_str": "465524508133040130", + "text": "Suddenly bees, everywhere outside my window. I *hate* bees. A linguistic cookie for anyone who gets the irony", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 11 16:09:47 +0000 2014", + "id": 465524178427183104, + "id_str": "465524178427183104", + "text": "@raudelmil I get called Megan a lot...", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 465522059615797249, + "in_reply_to_status_id_str": "465522059615797249", + "in_reply_to_user_id": 182083978, + "in_reply_to_user_id_str": "182083978", + "in_reply_to_screen_name": "raudelmil", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 11 15:42:01 +0000 2014", + "id": 465517191446536192, + "id_str": "465517191446536192", + "text": "@duckinator @Talen_Lee @TakoArishi the dark, twisted face of my childhood nightmares is what they are http://t.co/yJqBeXt4aq", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 465516963364872192, + "in_reply_to_status_id_str": "465516963364872192", + "in_reply_to_user_id": 28650670, + "in_reply_to_user_id_str": "28650670", + "in_reply_to_screen_name": "duckinator", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sun May 11 15:40:28 +0000 2014", + "id": 465516799044251648, + "id_str": "465516799044251648", + "text": "@Talen_Lee @duckinator @TakoArishi does interstallar selfie station export gifs???", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 465516727493591040, + "in_reply_to_status_id_str": "465516727493591040", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "sv" + }, + { + "created_at": "Sun May 11 15:35:14 +0000 2014", + "id": 465515482775187456, + "id_str": "465515482775187456", + "text": "The truth is out: why I'm bad at facial recognition http://t.co/zk09p2Ceu2", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 14, + "favorite_count": 10, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sun May 11 15:31:19 +0000 2014", + "id": 465514495389872128, + "id_str": "465514495389872128", + "text": "@Talen_Lee @TakoArishi I was wondering why you first posted a screencap of what seems to be a giant pawn", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 465514231517822976, + "in_reply_to_status_id_str": "465514231517822976", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 11 15:28:06 +0000 2014", + "id": 465513687907053568, + "id_str": "465513687907053568", + "text": "@Ninjifox it will cap out at about 800 tweets, 😭😡 if you have *lists* you can switch to those to see further into the past", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465513008475942913, + "in_reply_to_status_id_str": "465513008475942913", + "in_reply_to_user_id": 119217218, + "in_reply_to_user_id_str": "119217218", + "in_reply_to_screen_name": "Ninji_Folf", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 11 15:22:13 +0000 2014", + "id": 465512206285541376, + "id_str": "465512206285541376", + "text": "@zauspar we have fios; we are pretty reasonably satisfied; we hear people complain about comcast a lot.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465508088574115840, + "in_reply_to_status_id_str": "465508088574115840", + "in_reply_to_user_id": 216571343, + "in_reply_to_user_id_str": "216571343", + "in_reply_to_screen_name": "zauspar", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 11 15:14:50 +0000 2014", + "id": 465510348263403520, + "id_str": "465510348263403520", + "text": "@steffenbew @codeispoetry 👋", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465510153253838848, + "in_reply_to_status_id_str": "465510153253838848", + "in_reply_to_user_id": 12799192, + "in_reply_to_user_id_str": "12799192", + "in_reply_to_screen_name": "steffenbew", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Sun May 11 15:12:52 +0000 2014", + "id": 465509854673920001, + "id_str": "465509854673920001", + "text": "@Talen_Lee oh my gods I have a legit phobia of tonberries", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465453938615930880, + "in_reply_to_status_id_str": "465453938615930880", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 11 15:11:54 +0000 2014", + "id": 465509608715329537, + "id_str": "465509608715329537", + "text": "@steffenbew @codeispoetry ohhh\n\nOhhhhh \n\nFeminism literally would not exist without feminine anger to defend and advance it, you know.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465509298135916544, + "in_reply_to_status_id_str": "465509298135916544", + "in_reply_to_user_id": 12799192, + "in_reply_to_user_id_str": "12799192", + "in_reply_to_screen_name": "steffenbew", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 11 15:10:48 +0000 2014", + "id": 465509332202029056, + "id_str": "465509332202029056", + "text": "@steffenbew @codeispoetry okay, cool, dunno what that has to do with categorically masculinizing it with our language or not.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465508588589707264, + "in_reply_to_status_id_str": "465508588589707264", + "in_reply_to_user_id": 12799192, + "in_reply_to_user_id_str": "12799192", + "in_reply_to_screen_name": "steffenbew", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 11 15:03:34 +0000 2014", + "id": 465507512071233536, + "id_str": "465507512071233536", + "text": "@steffenbew @codeispoetry unless we had a disconnect that the context was very specifically hacking and hypothetical hackers being male", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465505256152244226, + "in_reply_to_status_id_str": "465505256152244226", + "in_reply_to_user_id": 12799192, + "in_reply_to_user_id_str": "12799192", + "in_reply_to_screen_name": "steffenbew", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 11 15:00:46 +0000 2014", + "id": 465506808292192257, + "id_str": "465506808292192257", + "text": "Perhaps I’m interested in fair gender representation for villains because I am, in fact, a supervillain", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 9, + "favorite_count": 22, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 11 14:56:25 +0000 2014", + "id": 465505713050386432, + "id_str": "465505713050386432", + "text": "@steffenbew @codeispoetry then I have literally no idea what you’re saying or asking me.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465505256152244226, + "in_reply_to_status_id_str": "465505256152244226", + "in_reply_to_user_id": 12799192, + "in_reply_to_user_id_str": "12799192", + "in_reply_to_screen_name": "steffenbew", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 11 14:49:09 +0000 2014", + "id": 465503885000310784, + "id_str": "465503885000310784", + "text": "@steffenbew @codeispoetry found it ಠ_ಠ", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465473407640145920, + "in_reply_to_status_id_str": "465473407640145920", + "in_reply_to_user_id": 12799192, + "in_reply_to_user_id_str": "12799192", + "in_reply_to_screen_name": "steffenbew", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 11 14:44:39 +0000 2014", + "id": 465502752987422720, + "id_str": "465502752987422720", + "text": "@steffenbew @codeispoetry Hang on let me find my special death glare for people who ask a woman in tech why she’s a )$&@ feminist", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465473407640145920, + "in_reply_to_status_id_str": "465473407640145920", + "in_reply_to_user_id": 12799192, + "in_reply_to_user_id_str": "12799192", + "in_reply_to_screen_name": "steffenbew", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 11 05:07:35 +0000 2014", + "id": 465357530613297152, + "id_str": "465357530613297152", + "text": "@judsonlester no and no but I’m not going to go into it here", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465357248177668098, + "in_reply_to_status_id_str": "465357248177668098", + "in_reply_to_user_id": 216126673, + "in_reply_to_user_id_str": "216126673", + "in_reply_to_screen_name": "judsonlester", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 11 05:03:37 +0000 2014", + "id": 465356531975065600, + "id_str": "465356531975065600", + "text": "@eevee it sounds like a joke crypto currency", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465353072978321408, + "in_reply_to_status_id_str": "465353072978321408", + "in_reply_to_user_id": 14412937, + "in_reply_to_user_id_str": "14412937", + "in_reply_to_screen_name": "eevee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 11 04:54:10 +0000 2014", + "id": 465354154274484224, + "id_str": "465354154274484224", + "text": "@zauspar grats!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465324888237277184, + "in_reply_to_status_id_str": "465324888237277184", + "in_reply_to_user_id": 216571343, + "in_reply_to_user_id_str": "216571343", + "in_reply_to_screen_name": "zauspar", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "lv" + }, + { + "created_at": "Sun May 11 04:54:10 +0000 2014", + "id": 465354154274484224, + "id_str": "465354154274484224", + "text": "@zauspar grats!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465324888237277184, + "in_reply_to_status_id_str": "465324888237277184", + "in_reply_to_user_id": 216571343, + "in_reply_to_user_id_str": "216571343", + "in_reply_to_screen_name": "zauspar", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "lv" + }, + { + "created_at": "Sun May 11 04:08:30 +0000 2014", + "id": 465342661948227584, + "id_str": "465342661948227584", + "text": "Channeling all my \"only girl in the program\" experience to write a fictional creepy fellow-student-with-a-crush. Write what you know...", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 7, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 11 03:43:22 +0000 2014", + "id": 465336334224072705, + "id_str": "465336334224072705", + "text": "@JoshJ777 @ameaijou yeah, I'm not gonna speak on their behalf but I checked their state's protection classes and it doesn't look so hot", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 465334809934311424, + "in_reply_to_status_id_str": "465334809934311424", + "in_reply_to_user_id": 112629055, + "in_reply_to_user_id_str": "112629055", + "in_reply_to_screen_name": "JoshJ777", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 11 03:30:41 +0000 2014", + "id": 465333143017230336, + "id_str": "465333143017230336", + "text": "I have a friend who recently came out as trans and it seems like their boss might be trying to bully them into quitting. Grahh", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 11 02:46:10 +0000 2014", + "id": 465321939905826816, + "id_str": "465321939905826816", + "text": "@frkbmb I’d like to think I’ve leveled up my skill in detecting these people faster after going around the sociopath block a few times", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465316331617652736, + "in_reply_to_status_id_str": "465316331617652736", + "in_reply_to_user_id": 540721095, + "in_reply_to_user_id_str": "540721095", + "in_reply_to_screen_name": "frkbmb", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 11 02:07:41 +0000 2014", + "id": 465312255593037824, + "id_str": "465312255593037824", + "text": "@dildog D’:", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465282673280565248, + "in_reply_to_status_id_str": "465282673280565248", + "in_reply_to_user_id": 14159456, + "in_reply_to_user_id_str": "14159456", + "in_reply_to_screen_name": "dildog", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Sun May 11 02:07:15 +0000 2014", + "id": 465312144993824768, + "id_str": "465312144993824768", + "text": "@abby_ebooks let the storm rage on", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465280152206053376, + "in_reply_to_status_id_str": "465280152206053376", + "in_reply_to_user_id": 789336668, + "in_reply_to_user_id_str": "789336668", + "in_reply_to_screen_name": "abby_ebooks", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 11 01:04:08 +0000 2014", + "id": 465296261076107265, + "id_str": "465296261076107265", + "text": "@landley ... someone not so good at picking fort spots?", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 465296072290471936, + "in_reply_to_status_id_str": "465296072290471936", + "in_reply_to_user_id": 14326287, + "in_reply_to_user_id_str": "14326287", + "in_reply_to_screen_name": "landley", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 10 23:49:06 +0000 2014", + "id": 465277378239795200, + "id_str": "465277378239795200", + "text": "@gotyaoi @m1sp Barsamin and Katarosi are 24 there, for reference… and some Stuff Has Happened in the meantime. Clearly.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465276212126834688, + "in_reply_to_status_id_str": "465276212126834688", + "in_reply_to_user_id": 393022772, + "in_reply_to_user_id_str": "393022772", + "in_reply_to_screen_name": "gotyaoi", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 10 23:47:48 +0000 2014", + "id": 465277052380520449, + "id_str": "465277052380520449", + "text": "@puellavulnerata this repressed identity would explain the novel I’m writing about the teenage boy with the lightning thing…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465276774729789441, + "in_reply_to_status_id_str": "465276774729789441", + "in_reply_to_user_id": 54666727, + "in_reply_to_user_id_str": "54666727", + "in_reply_to_screen_name": "puellavulnerata", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 10 23:44:54 +0000 2014", + "id": 465276322336739328, + "id_str": "465276322336739328", + "text": "My husband just shouted into voicechat “are YOU drunk enough to remember the Alamo?!” 😟", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 14, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 10 23:41:13 +0000 2014", + "id": 465275394854506498, + "id_str": "465275394854506498", + "text": "@gotyaoi @m1sp whoa spoiler alert http://t.co/C5Na57ahBd", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465266735658975233, + "in_reply_to_status_id_str": "465266735658975233", + "in_reply_to_user_id": 393022772, + "in_reply_to_user_id_str": "393022772", + "in_reply_to_screen_name": "gotyaoi", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sat May 10 23:09:31 +0000 2014", + "id": 465267418085212160, + "id_str": "465267418085212160", + "text": "@h0pbeat well, depending on which direction this storm is coming from it could have hit me a good five minutes sooner :) so don’t feel bad~", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465266966501294080, + "in_reply_to_status_id_str": "465266966501294080", + "in_reply_to_user_id": 92963556, + "in_reply_to_user_id_str": "92963556", + "in_reply_to_screen_name": "h0pbeat", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 10 23:07:35 +0000 2014", + "id": 465266930635796480, + "id_str": "465266930635796480", + "text": "@633nm @zauspar people like to snicker and call me southern when I say y’all, apparently unappreciative I am being concise and ungendered", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465241287310843904, + "in_reply_to_status_id_str": "465241287310843904", + "in_reply_to_user_id": 55793804, + "in_reply_to_user_id_str": "55793804", + "in_reply_to_screen_name": "633nm", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 10 22:58:26 +0000 2014", + "id": 465264630819196928, + "id_str": "465264630819196928", + "text": "I think I’ll go for a walk. *lightning flashes, thunder rolls* Yep, all the way to nowhere", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 5, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 10 22:51:57 +0000 2014", + "id": 465262997909536768, + "id_str": "465262997909536768", + "text": "@jacel @Xaosopher .NL has had a love affair with American country music for a while now. Can’t say I understand why", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465232427359932416, + "in_reply_to_status_id_str": "465232427359932416", + "in_reply_to_user_id": 14587244, + "in_reply_to_user_id_str": "14587244", + "in_reply_to_screen_name": "jacel", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 10 20:42:43 +0000 2014", + "id": 465230476492283904, + "id_str": "465230476492283904", + "text": "@m1sp life’s so easy when you’re evil ~ http://t.co/JTVTsdi3Uz", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sat May 10 20:08:07 +0000 2014", + "id": 465221767607230464, + "id_str": "465221767607230464", + "text": "@mattsta @thegrugq a robot wouldn’t be so easily… distracted https://t.co/bOlrnaLasB", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465202445476306945, + "in_reply_to_status_id_str": "465202445476306945", + "in_reply_to_user_id": 14825696, + "in_reply_to_user_id_str": "14825696", + "in_reply_to_screen_name": "mattsta", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sat May 10 19:53:36 +0000 2014", + "id": 465218115068899328, + "id_str": "465218115068899328", + "text": "@m1sp I wonder how many readers would *notice* Deloram has no lines, or when they’d notice, if I omitted pointing it out.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 10 19:26:22 +0000 2014", + "id": 465211260867321856, + "id_str": "465211260867321856", + "text": "@m1sp heh heh though Luz becomes a perfectly ordinary conventional father himself and I’m sure that will be *fine*", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465210346873970688, + "in_reply_to_status_id_str": "465210346873970688", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 10 19:25:10 +0000 2014", + "id": 465210959804788736, + "id_str": "465210959804788736", + "text": "@m1sp hmm, same idea with the noble but occasionally baffled Single Father, the Baron and Rodomond", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465210346873970688, + "in_reply_to_status_id_str": "465210346873970688", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 10 19:19:10 +0000 2014", + "id": 465209449645215744, + "id_str": "465209449645215744", + "text": "@zedshaw *notes display name* *checks your bio*\n\nShame, SHAME", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 15029296, + "in_reply_to_user_id_str": "15029296", + "in_reply_to_screen_name": "zedshaw", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 10 19:14:20 +0000 2014", + "id": 465208231761956864, + "id_str": "465208231761956864", + "text": "@m1sp I just looked over the character death roster and apparently I *really* have something against fathers \n\nDon’t worry, Luzcrezo…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 10 19:07:35 +0000 2014", + "id": 465206533517623296, + "id_str": "465206533517623296", + "text": "@tapbot_paul is the graduation cap supposed to make me feel LESS like meat might be murder?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465206157754109952, + "in_reply_to_status_id_str": "465206157754109952", + "in_reply_to_user_id": 18247541, + "in_reply_to_user_id_str": "18247541", + "in_reply_to_screen_name": "tapbot_paul", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 10 18:47:16 +0000 2014", + "id": 465201421127016448, + "id_str": "465201421127016448", + "text": "RT @nowthis: This entertained me. RT @ftrain: “Every Human in Star Wars is Really a Humanoid Bee” http://t.co/FLylRQ7Db1", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sat May 10 14:15:37 +0000 2014", + "id": 465133059839234048, + "id_str": "465133059839234048", + "text": "This entertained me. RT @ftrain: “Every Human in Star Wars is Really a Humanoid Bee” http://t.co/FLylRQ7Db1", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 1133821, + "id_str": "1133821" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 20, + "favorite_count": 11, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/FLylRQ7Db1", + "expanded_url": "http://www.tor.com/blogs/2014/04/every-human-in-star-wars-is-really-a-humanoid-bee", + "display_url": "tor.com/blogs/2014/04/…", + "indices": [ + 85, + 107 + ] + } + ], + "user_mentions": [ + { + "screen_name": "ftrain", + "name": "Paul Ford", + "id": 6981492, + "id_str": "6981492", + "indices": [ + 24, + 31 + ] + } + ] + }, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 20, + "favorite_count": 0, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sat May 10 18:33:53 +0000 2014", + "id": 465198052073283584, + "id_str": "465198052073283584", + "text": "RT @thetrudz: See this? https://t.co/09C9STY1gX | Ahem: https://t.co/7bo06aJLFX", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sat May 10 16:55:02 +0000 2014", + "id": 465173177014841344, + "id_str": "465173177014841344", + "text": "See this? https://t.co/09C9STY1gX | Ahem: https://t.co/7bo06aJLFX", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 32238490, + "id_str": "32238490" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "quoted_status_id": 462731110867533824, + "quoted_status_id_str": "462731110867533824", + "retweet_count": 33, + "favorite_count": 11, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "https://t.co/09C9STY1gX", + "expanded_url": "https://twitter.com/r9k_txt/status/449379338560241664", + "display_url": "twitter.com/r9k_txt/status…", + "indices": [ + 10, + 33 + ] + }, + { + "url": "https://t.co/7bo06aJLFX", + "expanded_url": "https://twitter.com/thetrudz/status/462731110867533824", + "display_url": "twitter.com/thetrudz/statu…", + "indices": [ + 42, + 65 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 33, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sat May 10 17:56:09 +0000 2014", + "id": 465188557410168832, + "id_str": "465188557410168832", + "text": "@hinanawi_chan exploiting anxiety disorders is really ableist", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465187889077178368, + "in_reply_to_status_id_str": "465187889077178368", + "in_reply_to_user_id": 2336014178, + "in_reply_to_user_id_str": "2336014178", + "in_reply_to_screen_name": "hinanawi_chan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 10 17:52:52 +0000 2014", + "id": 465187732650594306, + "id_str": "465187732650594306", + "text": "@zhuowei Compliment. I hope they're not inverting all my bits :D", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 465187518774661121, + "in_reply_to_status_id_str": "465187518774661121", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 10 17:47:04 +0000 2014", + "id": 465186271069892608, + "id_str": "465186271069892608", + "text": "*gasp* I got fanmail from a reader... via Drowtales forums!!! *clutches chunk of UTF-8 encoded text close to heart*", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 9, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 10 17:36:01 +0000 2014", + "id": 465183488828649472, + "id_str": "465183488828649472", + "text": "@jamie_gaskins I try to be.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 465182904771825664, + "in_reply_to_status_id_str": "465182904771825664", + "in_reply_to_user_id": 195645259, + "in_reply_to_user_id_str": "195645259", + "in_reply_to_screen_name": "jamie_gaskins", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 10 17:25:50 +0000 2014", + "id": 465180929632116737, + "id_str": "465180929632116737", + "text": "@jamie_gaskins sometimes I dumb it down for the audience. Though \"masculine\" wouldn't have caused character crunch so perhaps I should have.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 465180523430952961, + "in_reply_to_status_id_str": "465180523430952961", + "in_reply_to_user_id": 195645259, + "in_reply_to_user_id_str": "195645259", + "in_reply_to_screen_name": "jamie_gaskins", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 10 17:16:30 +0000 2014", + "id": 465178578267545600, + "id_str": "465178578267545600", + "text": "@zhuowei @Talen_Lee I have a recollection of what it feels like when the tape is caught by the mechanism and pulled in, but that's about it", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 465178337275834368, + "in_reply_to_status_id_str": "465178337275834368", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 10 17:04:17 +0000 2014", + "id": 465175504828375040, + "id_str": "465175504828375040", + "text": "@HaydnJohnson are you saying you don't use pronouns?", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 465174748129808384, + "in_reply_to_status_id_str": "465174748129808384", + "in_reply_to_user_id": 334429384, + "in_reply_to_user_id_str": "334429384", + "in_reply_to_screen_name": "HaydnJohnson", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 10 16:57:42 +0000 2014", + "id": 465173846727733248, + "id_str": "465173846727733248", + "text": "@Jennimason0990 @Talen_Lee school system decided to keep us all in the dark thinking that was better than us worrying our parents were dead", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 465173454346797056, + "in_reply_to_status_id_str": "465173454346797056", + "in_reply_to_user_id": 485288297, + "in_reply_to_user_id_str": "485288297", + "in_reply_to_screen_name": "Jennimason0990", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 10 16:57:10 +0000 2014", + "id": 465173712010899457, + "id_str": "465173712010899457", + "text": "@Jennimason0990 @Talen_Lee relevant context may be that we were within commuting distance of the Pentagon; my dad worked across the street", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 465173454346797056, + "in_reply_to_status_id_str": "465173454346797056", + "in_reply_to_user_id": 485288297, + "in_reply_to_user_id_str": "485288297", + "in_reply_to_screen_name": "Jennimason0990", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 10 16:54:43 +0000 2014", + "id": 465173098082217984, + "id_str": "465173098082217984", + "text": "@Talen_Lee @Jennimason0990 oh oh I remember! I remember the teachers actively lied to us all day to keep us from finding out", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 465171185236340736, + "in_reply_to_status_id_str": "465171185236340736", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 10 16:43:06 +0000 2014", + "id": 465170175105323008, + "id_str": "465170175105323008", + "text": "@Talen_Lee — and was starting to get really frustrated with our silence until someone said “uhh, sir, I was two”", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465169570500599808, + "in_reply_to_status_id_str": "465169570500599808", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 2, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 10 16:42:36 +0000 2014", + "id": 465170046080135169, + "id_str": "465170046080135169", + "text": "@Talen_Lee on a related note, on the first day of class our philosophy prof asked us for our memories of the day the Berlin Wall fell —", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465169570500599808, + "in_reply_to_status_id_str": "465169570500599808", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 3, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 10 16:41:23 +0000 2014", + "id": 465169740848062464, + "id_str": "465169740848062464", + "text": "@food4hackers @McGrewSecurity the angel of APT passes over you.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465169433560764416, + "in_reply_to_status_id_str": "465169433560764416", + "in_reply_to_user_id": 570833453, + "in_reply_to_user_id_str": "570833453", + "in_reply_to_screen_name": "food4hackers", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 10 16:36:06 +0000 2014", + "id": 465168412961169408, + "id_str": "465168412961169408", + "text": "@Talen_Lee and if I’m not attending college?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465157565588832256, + "in_reply_to_status_id_str": "465157565588832256", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 10 16:33:05 +0000 2014", + "id": 465167654844510209, + "id_str": "465167654844510209", + "text": "@ThePokeBot gahh I was asleeeeep", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465152926462115840, + "in_reply_to_status_id_str": "465152926462115840", + "in_reply_to_user_id": 2436473940, + "in_reply_to_user_id_str": "2436473940", + "in_reply_to_screen_name": "ThePokeBot", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 10 16:23:37 +0000 2014", + "id": 465165271167012864, + "id_str": "465165271167012864", + "text": "Warning: if you refer to hypothetical attackers with only male pronouns, I may hack you just to prove a spiteful point", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 59, + "favorite_count": 86, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 10 16:22:24 +0000 2014", + "id": 465164965792325632, + "id_str": "465164965792325632", + "text": "@declanm @hackerfantastic this absolutely violates his rights. All Jehovah’s Witness children already opt out of pledges in schools, for ex", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465019915674468352, + "in_reply_to_status_id_str": "465019915674468352", + "in_reply_to_user_id": 4517721, + "in_reply_to_user_id_str": "4517721", + "in_reply_to_screen_name": "declanm", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 10 16:21:14 +0000 2014", + "id": 465164671683940352, + "id_str": "465164671683940352", + "text": "RT @declanm: Texas teen won't recite Pledge of Allegiance because of #NSA spying + Internet restrictions. So he gets suspended: http://t.co…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sat May 10 06:46:02 +0000 2014", + "id": 465019915674468352, + "id_str": "465019915674468352", + "text": "Texas teen won't recite Pledge of Allegiance because of #NSA spying + Internet restrictions. So he gets suspended: http://t.co/EAnWBeQCZi", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 4517721, + "id_str": "4517721" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 117, + "favorite_count": 36, + "entities": { + "hashtags": [ + { + "text": "NSA", + "indices": [ + 56, + 60 + ] + } + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/EAnWBeQCZi", + "expanded_url": "http://www.khou.com/news/local/Boy-punished-at-school-for-refusing-to-stand-for-Pledge-of-Allegiance-258402211.html", + "display_url": "khou.com/news/local/Boy…", + "indices": [ + 115, + 137 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 117, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sat May 10 16:20:13 +0000 2014", + "id": 465164414635606017, + "id_str": "465164414635606017", + "text": "RT @grittygrease: As a reminder: if you revoke a certificate due to key compromise, don't reuse the revoked key in a new certificate. http:…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Fri May 09 22:18:42 +0000 2014", + "id": 464892241299771392, + "id_str": "464892241299771392", + "text": "As a reminder: if you revoke a certificate due to key compromise, don't reuse the revoked key in a new certificate. http://t.co/o89QWIGcWS", + "source": "Twitter for Mac", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 180858105, + "id_str": "180858105" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 30, + "favorite_count": 12, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/o89QWIGcWS", + "expanded_url": "http://news.netcraft.com/archives/2014/05/09/keys-left-unchanged-in-many-heartbleed-replacement-certificates.html", + "display_url": "news.netcraft.com/archives/2014/…", + "indices": [ + 116, + 138 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 30, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sat May 10 16:08:15 +0000 2014", + "id": 465161401674104833, + "id_str": "465161401674104833", + "text": "RT @fredraynal: Understanding Python under the hood: why Python is slow http://t.co/EMN5OwZfaa", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sat May 10 08:00:38 +0000 2014", + "id": 465038690260357121, + "id_str": "465038690260357121", + "text": "Understanding Python under the hood: why Python is slow http://t.co/EMN5OwZfaa", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 313418162, + "id_str": "313418162" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 43, + "favorite_count": 52, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/EMN5OwZfaa", + "expanded_url": "http://jakevdp.github.io/blog/2014/05/09/why-python-is-slow/", + "display_url": "jakevdp.github.io/blog/2014/05/0…", + "indices": [ + 56, + 78 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 43, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sat May 10 08:06:29 +0000 2014", + "id": 465040160712040448, + "id_str": "465040160712040448", + "text": "@Talen_Lee ಠ_ಠ", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 465027553724350465, + "in_reply_to_status_id_str": "465027553724350465", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "kn" + }, + { + "created_at": "Sat May 10 03:06:28 +0000 2014", + "id": 464964659649724416, + "id_str": "464964659649724416", + "text": "@Talen_Lee @m1sp nooooo not the antenna wilt", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464964470737874944, + "in_reply_to_status_id_str": "464964470737874944", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 10 03:05:18 +0000 2014", + "id": 464964365632819200, + "id_str": "464964365632819200", + "text": "@Talen_Lee it doesn’t have to be a checksum", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464963900782288896, + "in_reply_to_status_id_str": "464963900782288896", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 10 03:02:34 +0000 2014", + "id": 464963681378267136, + "id_str": "464963681378267136", + "text": "Whole day: can’t keep my eyes open, miserably tired\n\nBed time: … … … 👀 do you wanna build a snowmaaaaaan", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 19, + "favorite_count": 35, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 10 03:00:40 +0000 2014", + "id": 464963199800836096, + "id_str": "464963199800836096", + "text": "@FioraAeterna who be this", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464962287757844480, + "in_reply_to_status_id_str": "464962287757844480", + "in_reply_to_user_id": 2468699718, + "in_reply_to_user_id_str": "2468699718", + "in_reply_to_screen_name": "FioraAeterna", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 10 02:58:04 +0000 2014", + "id": 464962548333174784, + "id_str": "464962548333174784", + "text": "@aspects_ebooks he really is. Break up with him, Bars", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464948981932777472, + "in_reply_to_status_id_str": "464948981932777472", + "in_reply_to_user_id": 2345404375, + "in_reply_to_user_id_str": "2345404375", + "in_reply_to_screen_name": "aspects_ebooks", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 10 02:56:07 +0000 2014", + "id": 464962055473098752, + "id_str": "464962055473098752", + "text": "@Packetknife I also know someone in her 50s who simply does not comprehend fractions or negative numbers…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464943843612590080, + "in_reply_to_status_id_str": "464943843612590080", + "in_reply_to_user_id": 19564254, + "in_reply_to_user_id_str": "19564254", + "in_reply_to_screen_name": "Packetknife", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 10 00:58:46 +0000 2014", + "id": 464932525467377664, + "id_str": "464932525467377664", + "text": "@ThePokeBot aw man missed it again", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464922602276786176, + "in_reply_to_status_id_str": "464922602276786176", + "in_reply_to_user_id": 2436473940, + "in_reply_to_user_id_str": "2436473940", + "in_reply_to_screen_name": "ThePokeBot", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 10 00:57:07 +0000 2014", + "id": 464932107593076736, + "id_str": "464932107593076736", + "text": "@_jdpage @shu @eevee oh sure eevee gets all the credit, just because his rant predates my blog and is more widely read and…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464913624335929344, + "in_reply_to_status_id_str": "464913624335929344", + "in_reply_to_user_id": 233252431, + "in_reply_to_user_id_str": "233252431", + "in_reply_to_screen_name": "_jdpage", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 09 23:44:00 +0000 2014", + "id": 464913706963730432, + "id_str": "464913706963730432", + "text": "@renpytom @HanakoGames I think I told them, being only 24, I had never really seen a fax machine in person and didn’t know how to use one :)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464911005621837825, + "in_reply_to_status_id_str": "464911005621837825", + "in_reply_to_user_id": 8956112, + "in_reply_to_user_id_str": "8956112", + "in_reply_to_screen_name": "renpytom", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 09 23:41:32 +0000 2014", + "id": 464913089092415488, + "id_str": "464913089092415488", + "text": "@renpytom @HanakoGames the last time I was asked to fax something, 2012, they acted genuinely surprised I didn’t have a fax in my house", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464911005621837825, + "in_reply_to_status_id_str": "464911005621837825", + "in_reply_to_user_id": 8956112, + "in_reply_to_user_id_str": "8956112", + "in_reply_to_screen_name": "renpytom", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 09 23:39:47 +0000 2014", + "id": 464912648908578816, + "id_str": "464912648908578816", + "text": "@jdhartley @ELLIOTTCABLE one wonders if all Nintendo downloads are served from a single 2003-model Dell in someone’s closet", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464908606974877696, + "in_reply_to_status_id_str": "464908606974877696", + "in_reply_to_user_id": 7268202, + "in_reply_to_user_id_str": "7268202", + "in_reply_to_screen_name": "jdhartley", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 09 23:34:53 +0000 2014", + "id": 464911415925809152, + "id_str": "464911415925809152", + "text": "@web_kunoichi birds are *literally* dinosaurs, they’re in the process of fixing the taxonomy to unambiguously reflect this", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464911054468698112, + "in_reply_to_status_id_str": "464911054468698112", + "in_reply_to_user_id": 126101180, + "in_reply_to_user_id_str": "126101180", + "in_reply_to_screen_name": "web_kunoichi", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 09 23:26:21 +0000 2014", + "id": 464909265145061376, + "id_str": "464909265145061376", + "text": "RT @Tomi_Tapio: @0xabad1dea raaaaar hissssss honkersaurs http://t.co/ynSR5ZlXe1", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Fri May 09 23:25:44 +0000 2014", + "id": 464909113613643777, + "id_str": "464909113613643777", + "text": "@0xabad1dea raaaaar hissssss honkersaurs http://t.co/ynSR5ZlXe1", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 464905919831109632, + "in_reply_to_status_id_str": "464905919831109632", + "in_reply_to_user_id": 126030998, + "in_reply_to_user_id_str": "126030998", + "in_reply_to_screen_name": "0xabad1dea", + "user": { + "id": 43579011, + "id_str": "43579011" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 4, + "favorite_count": 2, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "0xabad1dea", + "name": "Melissa", + "id": 126030998, + "id_str": "126030998", + "indices": [ + 0, + 11 + ] + } + ], + "media": [ + { + "id": 464909110463721472, + "id_str": "464909110463721472", + "indices": [ + 41, + 63 + ], + "media_url": "http://pbs.twimg.com/media/BnOwX24IcAArWwy.jpg", + "media_url_https": "https://pbs.twimg.com/media/BnOwX24IcAArWwy.jpg", + "url": "http://t.co/ynSR5ZlXe1", + "display_url": "pic.twitter.com/ynSR5ZlXe1", + "expanded_url": "http://twitter.com/Tomi_Tapio/status/464909113613643777/photo/1", + "type": "photo", + "sizes": { + "medium": { + "w": 600, + "h": 451, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 256, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 1024, + "h": 770, + "resize": "fit" + } + } + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "es" + }, + "retweet_count": 4, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "es" + }, + { + "created_at": "Fri May 09 23:26:16 +0000 2014", + "id": 464909246828515328, + "id_str": "464909246828515328", + "text": "@Tomi_Tapio squee", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464909113613643777, + "in_reply_to_status_id_str": "464909113613643777", + "in_reply_to_user_id": 43579011, + "in_reply_to_user_id_str": "43579011", + "in_reply_to_screen_name": "Tomi_Tapio", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "sk" + }, + { + "created_at": "Fri May 09 23:25:55 +0000 2014", + "id": 464909159494717440, + "id_str": "464909159494717440", + "text": "@aredridel there’s like ten of them together in an area clearcut for power lines", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464908920893739009, + "in_reply_to_status_id_str": "464908920893739009", + "in_reply_to_user_id": 17950990, + "in_reply_to_user_id_str": "17950990", + "in_reply_to_screen_name": "aredridel", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 09 23:23:14 +0000 2014", + "id": 464908483981099008, + "id_str": "464908483981099008", + "text": "@mike_913 NyQuil made me extremely ill last year and I thought something was seriously wrong until the doctor said it was the NyQuil", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464892507642265600, + "in_reply_to_status_id_str": "464892507642265600", + "in_reply_to_user_id": 102264133, + "in_reply_to_user_id_str": "102264133", + "in_reply_to_screen_name": "mike_913", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 09 23:18:28 +0000 2014", + "id": 464907281075687424, + "id_str": "464907281075687424", + "text": "@Talen_Lee what species is this", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 464906545692553216, + "in_reply_to_status_id_str": "464906545692553216", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 09 23:13:03 +0000 2014", + "id": 464905919831109632, + "id_str": "464905919831109632", + "text": "Gobblesaurs and honkersaurs, peacefully coexisting (honkersaurs are my favorite) http://t.co/jmvxfKwVW1", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 9, + "favorite_count": 20, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri May 09 23:09:29 +0000 2014", + "id": 464905021336076288, + "id_str": "464905021336076288", + "text": "@SamusAranX I think that's the same...", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 464904208408674304, + "in_reply_to_status_id_str": "464904208408674304", + "in_reply_to_user_id": 37647087, + "in_reply_to_user_id_str": "37647087", + "in_reply_to_screen_name": "SamusAranX", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 09 23:03:40 +0000 2014", + "id": 464903558391795712, + "id_str": "464903558391795712", + "text": "@longobord aren't dogwood flowers *much* bigger and distinctly leafy?", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 464903300257554432, + "in_reply_to_status_id_str": "464903300257554432", + "in_reply_to_user_id": 18757859, + "in_reply_to_user_id_str": "18757859", + "in_reply_to_screen_name": "longobord", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 09 23:03:13 +0000 2014", + "id": 464903444172533761, + "id_str": "464903444172533761", + "text": "@Archaemic sorry I'm now some hundreds of yards away, the trunk is a deep reddish color and smooth, thick enough to beat someone senseless", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 464902943670427648, + "in_reply_to_status_id_str": "464902943670427648", + "in_reply_to_user_id": 222006525, + "in_reply_to_user_id_str": "222006525", + "in_reply_to_screen_name": "Archaemic", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 09 22:59:48 +0000 2014", + "id": 464902586399612928, + "id_str": "464902586399612928", + "text": "Anyone know what kind of tree/bush this is (Massachusetts) http://t.co/Ylt7nkOeGY", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri May 09 22:10:56 +0000 2014", + "id": 464890285915656192, + "id_str": "464890285915656192", + "text": "@focalintent @MarkKriegsman https://t.co/KnsIVIcAlg this could use some programmatic pizazz", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 8034552, + "in_reply_to_user_id_str": "8034552", + "in_reply_to_screen_name": "focalintent", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri May 09 22:02:52 +0000 2014", + "id": 464888258196172800, + "id_str": "464888258196172800", + "text": "@gsuberland @puellavulnerata I already have to take medicine just to sleep at all, but last night it randomly failed for some reason", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464888044836106241, + "in_reply_to_status_id_str": "464888044836106241", + "in_reply_to_user_id": 432513392, + "in_reply_to_user_id_str": "432513392", + "in_reply_to_screen_name": "gsuberland", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 09 21:58:17 +0000 2014", + "id": 464887102543368192, + "id_str": "464887102543368192", + "text": "I’m so upset that an entire day of my life has been wasted by not being able to fall asleep. Sick, miserable, can’t think, still can’t sleep", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 09 21:43:53 +0000 2014", + "id": 464883478970904576, + "id_str": "464883478970904576", + "text": "@eevee ftr I don’t really expect them to patch it for political reasons far more than technical ones", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464882316737642496, + "in_reply_to_status_id_str": "464882316737642496", + "in_reply_to_user_id": 14412937, + "in_reply_to_user_id_str": "14412937", + "in_reply_to_screen_name": "eevee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 09 21:41:50 +0000 2014", + "id": 464882966250807296, + "id_str": "464882966250807296", + "text": "@eevee I remember the patch taking for EV er to download, granted their servers are slow as death but I don’t think it was a few KB", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464882316737642496, + "in_reply_to_status_id_str": "464882316737642496", + "in_reply_to_user_id": 14412937, + "in_reply_to_user_id_str": "14412937", + "in_reply_to_screen_name": "eevee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 09 21:32:24 +0000 2014", + "id": 464880590768975872, + "id_str": "464880590768975872", + "text": "@PolCPP @ashedryden exit to street", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464880251857039360, + "in_reply_to_status_id_str": "464880251857039360", + "in_reply_to_user_id": 139209139, + "in_reply_to_user_id_str": "139209139", + "in_reply_to_screen_name": "PolCPP", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 09 21:25:59 +0000 2014", + "id": 464878977543192576, + "id_str": "464878977543192576", + "text": "@eevee I can’t be bothered to remember Pokemon Paris’s real name apparently", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464877295774101504, + "in_reply_to_status_id_str": "464877295774101504", + "in_reply_to_user_id": 14412937, + "in_reply_to_user_id_str": "14412937", + "in_reply_to_screen_name": "eevee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 09 21:25:25 +0000 2014", + "id": 464878834698182656, + "id_str": "464878834698182656", + "text": "@eevee they actually managed to fix the Pokemon corruption bug with saving in Paris so at least they have a working infrastructure now", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464877295774101504, + "in_reply_to_status_id_str": "464877295774101504", + "in_reply_to_user_id": 14412937, + "in_reply_to_user_id_str": "14412937", + "in_reply_to_screen_name": "eevee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 09 21:17:59 +0000 2014", + "id": 464876960762458112, + "id_str": "464876960762458112", + "text": "Wait didn’t Tomodachi Life at one point have a BUG that enabled gay marriage and now they say patching it in is impossible @eevee", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 9, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 09 21:16:49 +0000 2014", + "id": 464876668671520769, + "id_str": "464876668671520769", + "text": "@GreenPirate_org it’s in reply to immediately receding retweet, Tweetbot helpfully discarded the metadata apparently", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464876502317019136, + "in_reply_to_status_id_str": "464876502317019136", + "in_reply_to_user_id": 213296734, + "in_reply_to_user_id_str": "213296734", + "in_reply_to_screen_name": "GreenPirate_org", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 09 21:12:31 +0000 2014", + "id": 464875588704927744, + "id_str": "464875588704927744", + "text": "I do note the “if” the size of the moon but they just made a baby step in not the wrong direction", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 09 21:11:28 +0000 2014", + "id": 464875321339416576, + "id_str": "464875321339416576", + "text": "RT @Polygon: Nintendo vows to make future Tomodachi games 'more inclusive' to better represent all players http://t.co/NAzPGB8IS9", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Fri May 09 20:26:54 +0000 2014", + "id": 464864106550284288, + "id_str": "464864106550284288", + "text": "Nintendo vows to make future Tomodachi games 'more inclusive' to better represent all players http://t.co/NAzPGB8IS9", + "source": "SB Nation", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 454340464, + "id_str": "454340464" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 98, + "favorite_count": 58, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/NAzPGB8IS9", + "expanded_url": "http://sbn.to/1fV6sDE", + "display_url": "sbn.to/1fV6sDE", + "indices": [ + 94, + 116 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 98, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri May 09 21:03:46 +0000 2014", + "id": 464873383172526080, + "id_str": "464873383172526080", + "text": "@elad3 @ashedryden Precisely! Except it’s everyone else who’s weird! 🇺🇸🇺🇸🇺🇸", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464873046923165696, + "in_reply_to_status_id_str": "464873046923165696", + "in_reply_to_user_id": 160897504, + "in_reply_to_user_id_str": "160897504", + "in_reply_to_screen_name": "elad3", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 09 21:00:40 +0000 2014", + "id": 464872604751245312, + "id_str": "464872604751245312", + "text": "@elad3 @ashedryden if B is where the door to the street is (hillside building) then in USA it’d be B == G == 1", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464867694643118080, + "in_reply_to_status_id_str": "464867694643118080", + "in_reply_to_user_id": 160897504, + "in_reply_to_user_id_str": "160897504", + "in_reply_to_screen_name": "elad3", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 09 20:36:47 +0000 2014", + "id": 464866594225917955, + "id_str": "464866594225917955", + "text": ".@ashedryden @Tomi_Tapio “hang on, is this elevator in America or Europe?” “Not sure. Let’s cover all our bases”", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464806507893489664, + "in_reply_to_status_id_str": "464806507893489664", + "in_reply_to_user_id": 9510922, + "in_reply_to_user_id_str": "9510922", + "in_reply_to_screen_name": "ashedryden", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 09 20:36:05 +0000 2014", + "id": 464866417402470401, + "id_str": "464866417402470401", + "text": "RT @ashedryden: Let's talk about usability and the element of least surprise for users: http://t.co/9CFBFynegr", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Fri May 09 16:38:01 +0000 2014", + "id": 464806507893489664, + "id_str": "464806507893489664", + "text": "Let's talk about usability and the element of least surprise for users: http://t.co/9CFBFynegr", + "source": "iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 9510922, + "id_str": "9510922" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 202, + "favorite_count": 149, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ], + "media": [ + { + "id": 464806507830595584, + "id_str": "464806507830595584", + "indices": [ + 72, + 94 + ], + "media_url": "http://pbs.twimg.com/media/BnNTDmSIUAA8fW7.jpg", + "media_url_https": "https://pbs.twimg.com/media/BnNTDmSIUAA8fW7.jpg", + "url": "http://t.co/9CFBFynegr", + "display_url": "pic.twitter.com/9CFBFynegr", + "expanded_url": "http://twitter.com/ashedryden/status/464806507893489664/photo/1", + "type": "photo", + "sizes": { + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 453, + "resize": "fit" + }, + "large": { + "w": 720, + "h": 960, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 800, + "resize": "fit" + } + } + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 202, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri May 09 18:53:16 +0000 2014", + "id": 464840544834052096, + "id_str": "464840544834052096", + "text": "RT @DrFNFurter: ... pation.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Thu May 08 04:24:44 +0000 2014", + "id": 464259582358220800, + "id_str": "464259582358220800", + "text": "... pation.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 38618369, + "id_str": "38618369" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 64523, + "favorite_count": 34528, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "tl" + }, + "retweet_count": 64523, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "tl" + }, + { + "created_at": "Fri May 09 18:53:13 +0000 2014", + "id": 464840530149388288, + "id_str": "464840530149388288", + "text": "RT @DrFNFurter: I see you shiver with antici ...", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Fri May 08 06:10:02 +0000 2009", + "id": 1735237290, + "id_str": "1735237290", + "text": "I see you shiver with antici ...", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 38618369, + "id_str": "38618369" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 62591, + "favorite_count": 32161, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 62591, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 09 18:06:01 +0000 2014", + "id": 464828651469426688, + "id_str": "464828651469426688", + "text": "@landley hooray I got proxy pity", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464825979916279810, + "in_reply_to_status_id_str": "464825979916279810", + "in_reply_to_user_id": 14326287, + "in_reply_to_user_id_str": "14326287", + "in_reply_to_screen_name": "landley", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 09 17:48:07 +0000 2014", + "id": 464824149240991744, + "id_str": "464824149240991744", + "text": "When I finally got some sleep, I dreamed that I got a cute new girlfriend. I’m actually kinda upset she turned out to be ephemeral.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 8, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 09 17:44:28 +0000 2014", + "id": 464823230977810432, + "id_str": "464823230977810432", + "text": "RT @Bitly: We suspect Bitly account credentials have been compromised. Please take action now. Details here: http://t.co/ZExA9TreXd", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Fri May 09 00:23:11 +0000 2014", + "id": 464561181504839680, + "id_str": "464561181504839680", + "text": "We suspect Bitly account credentials have been compromised. Please take action now. Details here: http://t.co/ZExA9TreXd", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 15234886, + "id_str": "15234886" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 866, + "favorite_count": 118, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/ZExA9TreXd", + "expanded_url": "http://bit.ly/SecurityDetails", + "display_url": "bit.ly/SecurityDetails", + "indices": [ + 98, + 120 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 866, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri May 09 13:34:25 +0000 2014", + "id": 464760301666435072, + "id_str": "464760301666435072", + "text": "@alt_m1sp clearly", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464759494782644224, + "in_reply_to_status_id_str": "464759494782644224", + "in_reply_to_user_id": 2401670173, + "in_reply_to_user_id_str": "2401670173", + "in_reply_to_screen_name": "alt_m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 09 13:32:03 +0000 2014", + "id": 464759708159856640, + "id_str": "464759708159856640", + "text": "RT @charliesome: This is my favourite Windows 3.11 bug. '9' (as in the 1990s) is ASCII 57, so of course the 2010s is displayed as ';': http…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Fri May 09 10:56:51 +0000 2014", + "id": 464720647864586241, + "id_str": "464720647864586241", + "text": "This is my favourite Windows 3.11 bug. '9' (as in the 1990s) is ASCII 57, so of course the 2010s is displayed as ';': http://t.co/5zhHtACULu", + "source": "Twitter for Mac", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 16142240, + "id_str": "16142240" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 120, + "favorite_count": 83, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/5zhHtACULu", + "expanded_url": "http://charlie.su/screen_shot_2014_05_09_at_8.54.08_pm-9063a306a40caf.png", + "display_url": "charlie.su/screen_shot_20…", + "indices": [ + 118, + 140 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 120, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri May 09 10:09:11 +0000 2014", + "id": 464708652297764864, + "id_str": "464708652297764864", + "text": "Oh my gods the sun is up and I haven’t slept a wink and everything is terrible", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 4, + "favorite_count": 7, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 09 04:41:05 +0000 2014", + "id": 464626085255475200, + "id_str": "464626085255475200", + "text": "@Talen_Lee well, a billion can be a minority in the right context, but, you know, not the context of being the religion behind western power", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464625881361960961, + "in_reply_to_status_id_str": "464625881361960961", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 09 04:37:41 +0000 2014", + "id": 464625228711460864, + "id_str": "464625228711460864", + "text": "@Packetknife there is no shame in great age", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464624873449725952, + "in_reply_to_status_id_str": "464624873449725952", + "in_reply_to_user_id": 19564254, + "in_reply_to_user_id_str": "19564254", + "in_reply_to_screen_name": "Packetknife", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 09 04:19:04 +0000 2014", + "id": 464620545699766273, + "id_str": "464620545699766273", + "text": "@Packetknife disclaimer: don’t actually know how old you are but, you know, probably", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464577169545760768, + "in_reply_to_status_id_str": "464577169545760768", + "in_reply_to_user_id": 19564254, + "in_reply_to_user_id_str": "19564254", + "in_reply_to_screen_name": "Packetknife", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 09 04:18:38 +0000 2014", + "id": 464620433250480128, + "id_str": "464620433250480128", + "text": "@Packetknife I haven’t sworn you off, you’re safely in my collection of platonic male friends old enough to be my father.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464577169545760768, + "in_reply_to_status_id_str": "464577169545760768", + "in_reply_to_user_id": 19564254, + "in_reply_to_user_id_str": "19564254", + "in_reply_to_screen_name": "Packetknife", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 09 01:27:12 +0000 2014", + "id": 464577291931353089, + "id_str": "464577291931353089", + "text": "@jesster_king http://t.co/dsCsaCfgxv", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 464576969909485568, + "in_reply_to_status_id_str": "464576969909485568", + "in_reply_to_user_id": 46763517, + "in_reply_to_user_id_str": "46763517", + "in_reply_to_screen_name": "jesster_king", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Fri May 09 01:20:01 +0000 2014", + "id": 464575482609287169, + "id_str": "464575482609287169", + "text": "@Mordicant I do this thing where I remember I don't really agree with someone but I don't actually remember what the dispute was", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 464574740733382656, + "in_reply_to_status_id_str": "464574740733382656", + "in_reply_to_user_id": 21220563, + "in_reply_to_user_id_str": "21220563", + "in_reply_to_screen_name": "Mordicant", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 09 01:16:15 +0000 2014", + "id": 464574538395947010, + "id_str": "464574538395947010", + "text": "@Mordicant made me go ehhhhhh, pertaining to gender etc.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 464574287282982912, + "in_reply_to_status_id_str": "464574287282982912", + "in_reply_to_user_id": 21220563, + "in_reply_to_user_id_str": "21220563", + "in_reply_to_screen_name": "Mordicant", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 09 01:16:04 +0000 2014", + "id": 464574490866110466, + "id_str": "464574490866110466", + "text": "@Mordicant did I argue with him about cops? I believe you if you say I did haha. Nah it was some things he said more recently that kinda", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 464574287282982912, + "in_reply_to_status_id_str": "464574287282982912", + "in_reply_to_user_id": 21220563, + "in_reply_to_user_id_str": "21220563", + "in_reply_to_screen_name": "Mordicant", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 09 01:05:26 +0000 2014", + "id": 464571812677169152, + "id_str": "464571812677169152", + "text": "@zauspar @Archaemic I uhh, I knew the basic premise of game of thrones before it was cool! I swear!", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 464571619118432258, + "in_reply_to_status_id_str": "464571619118432258", + "in_reply_to_user_id": 216571343, + "in_reply_to_user_id_str": "216571343", + "in_reply_to_screen_name": "zauspar", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 09 01:04:16 +0000 2014", + "id": 464571521911242753, + "id_str": "464571521911242753", + "text": "@geekable I want you to know that this is my favorite from the set. https://t.co/XdyXAbYrPe", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 755035, + "in_reply_to_user_id_str": "755035", + "in_reply_to_screen_name": "geekable", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri May 09 01:00:39 +0000 2014", + "id": 464570608979030016, + "id_str": "464570608979030016", + "text": "@zauspar yay \\o/", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 464570530532974593, + "in_reply_to_status_id_str": "464570530532974593", + "in_reply_to_user_id": 216571343, + "in_reply_to_user_id_str": "216571343", + "in_reply_to_screen_name": "zauspar", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "vi" + }, + { + "created_at": "Fri May 09 00:57:36 +0000 2014", + "id": 464569844047020032, + "id_str": "464569844047020032", + "text": "@WhiteMageSlave also not enough Arya pwning things!", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 464568301692411904, + "in_reply_to_status_id_str": "464568301692411904", + "in_reply_to_user_id": 90791634, + "in_reply_to_user_id_str": "90791634", + "in_reply_to_screen_name": "WhiteMageSlave", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 09 00:57:13 +0000 2014", + "id": 464569746181357569, + "id_str": "464569746181357569", + "text": "@rajb245 not enough Arya pwning things", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 464563631217471488, + "in_reply_to_status_id_str": "464563631217471488", + "in_reply_to_user_id": 26796247, + "in_reply_to_user_id_str": "26796247", + "in_reply_to_screen_name": "rajb245", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 08 23:57:38 +0000 2014", + "id": 464554750437232641, + "id_str": "464554750437232641", + "text": "@m1sp suddenly tongue twister o_O (salvaging what I can from this scene) http://t.co/oxcEIDDnos", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu May 08 23:17:52 +0000 2014", + "id": 464544744748888064, + "id_str": "464544744748888064", + "text": "how come I have never seen any teamup fanart of Tony and Arya Stark, internet", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 9, + "favorite_count": 10, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 08 23:06:22 +0000 2014", + "id": 464541850540728321, + "id_str": "464541850540728321", + "text": "@geekable no, I soured on a series of tweets of his, some of which he later deleted", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464541656604475392, + "in_reply_to_status_id_str": "464541656604475392", + "in_reply_to_user_id": 755035, + "in_reply_to_user_id_str": "755035", + "in_reply_to_screen_name": "geekable", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 08 23:04:47 +0000 2014", + "id": 464541449846292480, + "id_str": "464541449846292480", + "text": "@geekable because of the dark chasm of opinion that separates you and me, which is filled with monsters.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464540967635517440, + "in_reply_to_status_id_str": "464540967635517440", + "in_reply_to_user_id": 755035, + "in_reply_to_user_id_str": "755035", + "in_reply_to_screen_name": "geekable", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 08 22:47:38 +0000 2014", + "id": 464537133731287040, + "id_str": "464537133731287040", + "text": "@kamander @shipwreckedinla @Kufat don’t forget insisting that a singular, masculine-gendered God is the generic deity of American discourse", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464536450869239808, + "in_reply_to_status_id_str": "464536450869239808", + "in_reply_to_user_id": 18012266, + "in_reply_to_user_id_str": "18012266", + "in_reply_to_screen_name": "kamander", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 08 22:45:08 +0000 2014", + "id": 464536506192121857, + "id_str": "464536506192121857", + "text": "I feel dirty retweeting him in particular but the point stands. Insert poorly thought out joke comparing headphones to iTunes", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 08 22:43:09 +0000 2014", + "id": 464536006684073984, + "id_str": "464536006684073984", + "text": "RT @codinghorror: Twitter (n): a collaborative game where you try to guess what just happened based on a stream of truly awful jokes about …", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Thu May 08 22:40:12 +0000 2014", + "id": 464535265068191744, + "id_str": "464535265068191744", + "text": "Twitter (n): a collaborative game where you try to guess what just happened based on a stream of truly awful jokes about the event", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 5637652, + "id_str": "5637652" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 789, + "favorite_count": 541, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 789, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 08 22:20:27 +0000 2014", + "id": 464530293429657600, + "id_str": "464530293429657600", + "text": "@marymad @puellavulnerata BE STRONG 🙏", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464529762174902272, + "in_reply_to_status_id_str": "464529762174902272", + "in_reply_to_user_id": 10938752, + "in_reply_to_user_id_str": "10938752", + "in_reply_to_screen_name": "marymad", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "vi" + }, + { + "created_at": "Thu May 08 22:10:35 +0000 2014", + "id": 464527810879827968, + "id_str": "464527810879827968", + "text": ".@admittedlyhuman “not catching fire” is the sort of *immediate* safety concern I’m thinking of", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464527459564937216, + "in_reply_to_status_id_str": "464527459564937216", + "in_reply_to_user_id": 19892410, + "in_reply_to_user_id_str": "19892410", + "in_reply_to_screen_name": "admittedlyhuman", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 08 22:08:09 +0000 2014", + "id": 464527200432443392, + "id_str": "464527200432443392", + "text": "Especially since California passing laws on phone sales in California is really California passing laws on phone sales in North America", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 08 22:06:22 +0000 2014", + "id": 464526749536358402, + "id_str": "464526749536358402", + "text": "Don’t think I’m a fan of legally mandatory software features outside of immediate safety concerns http://t.co/Sgpi7POQAs", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 5, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu May 08 21:50:37 +0000 2014", + "id": 464522785771888640, + "id_str": "464522785771888640", + "text": "@dozykraut @nelhage 🇵🇴🇸🇮‌🇹🇮🇻🇪", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464522417340424192, + "in_reply_to_status_id_str": "464522417340424192", + "in_reply_to_user_id": 23579460, + "in_reply_to_user_id_str": "23579460", + "in_reply_to_screen_name": "dozykraut", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Thu May 08 21:47:00 +0000 2014", + "id": 464521876379668480, + "id_str": "464521876379668480", + "text": "@nelhage the last time I complained of this, a twitter engineer favorited it, so I’m holding on to hope", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464518515274166272, + "in_reply_to_status_id_str": "464518515274166272", + "in_reply_to_user_id": 11806222, + "in_reply_to_user_id_str": "11806222", + "in_reply_to_screen_name": "nelhage", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 08 21:45:41 +0000 2014", + "id": 464521547256823809, + "id_str": "464521547256823809", + "text": "@tapbot_paul best I can think of is time bomb code that compares against a manually inserted constant", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464518210427957248, + "in_reply_to_status_id_str": "464518210427957248", + "in_reply_to_user_id": 18247541, + "in_reply_to_user_id_str": "18247541", + "in_reply_to_screen_name": "tapbot_paul", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 08 21:40:52 +0000 2014", + "id": 464520331646885888, + "id_str": "464520331646885888", + "text": "@hackerfantastic note that if you want 300 pages of COLOR then may gods have mercy on you", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464520118631137281, + "in_reply_to_status_id_str": "464520118631137281", + "in_reply_to_user_id": 19026149, + "in_reply_to_user_id_str": "19026149", + "in_reply_to_screen_name": "hackerfantastic", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 08 21:38:46 +0000 2014", + "id": 464519804960112640, + "id_str": "464519804960112640", + "text": "@hackerfantastic (they advertise for selling your printed books but you can totes just have a one-off mailed straight to you)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464505980752236544, + "in_reply_to_status_id_str": "464505980752236544", + "in_reply_to_user_id": 19026149, + "in_reply_to_user_id_str": "19026149", + "in_reply_to_screen_name": "hackerfantastic", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 08 21:37:48 +0000 2014", + "id": 464519562348601344, + "id_str": "464519562348601344", + "text": "@hackerfantastic try lulu, my black and white 440-page book comes out to $9 + $4 shipping, they should have a British printer", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464505980752236544, + "in_reply_to_status_id_str": "464505980752236544", + "in_reply_to_user_id": 19026149, + "in_reply_to_user_id_str": "19026149", + "in_reply_to_screen_name": "hackerfantastic", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 08 21:35:58 +0000 2014", + "id": 464519100186644480, + "id_str": "464519100186644480", + "text": "@hinanawi_chan … is that process ID *supposed* to be negative?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464503928986402817, + "in_reply_to_status_id_str": "464503928986402817", + "in_reply_to_user_id": 2336014178, + "in_reply_to_user_id_str": "2336014178", + "in_reply_to_screen_name": "hinanawi_chan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 08 21:30:11 +0000 2014", + "id": 464517644377653248, + "id_str": "464517644377653248", + "text": "@samuelpepys Uncle Penny Pincher?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464492252782657536, + "in_reply_to_status_id_str": "464492252782657536", + "in_reply_to_user_id": 14475268, + "in_reply_to_user_id_str": "14475268", + "in_reply_to_screen_name": "samuelpepys", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 08 21:28:38 +0000 2014", + "id": 464517255376547840, + "id_str": "464517255376547840", + "text": "@zhuowei @m1sp this is what kicks off Barsamin’s Exciting Deadly Adventure in Soronanin", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464516835228934144, + "in_reply_to_status_id_str": "464516835228934144", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 08 21:27:54 +0000 2014", + "id": 464517069397299201, + "id_str": "464517069397299201", + "text": "@zhuowei @m1sp this is book-threeish as far as where the scene would go; we’ll see when we get there how she’s doing", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464516835228934144, + "in_reply_to_status_id_str": "464516835228934144", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 08 21:20:00 +0000 2014", + "id": 464515082290855936, + "id_str": "464515082290855936", + "text": "@m1sp @zhuowei and once again, I'm glad I bothered to note down where and when I was. The most productive company meeting ever 8)", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 08 21:19:33 +0000 2014", + "id": 464514968306470914, + "id_str": "464514968306470914", + "text": "@m1sp I just dug this up... I think this is when I finally nailed Tsovinar as a character. http://t.co/3nRLPGnIZ6 /cc @zhuowei", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu May 08 21:09:57 +0000 2014", + "id": 464512551191986176, + "id_str": "464512551191986176", + "text": "@RSWestmoreland neither really? Just kinda... chemically. Like if I was breathing in a room where cleaning stuff was used?", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 464512321529065472, + "in_reply_to_status_id_str": "464512321529065472", + "in_reply_to_user_id": 242595690, + "in_reply_to_user_id_str": "242595690", + "in_reply_to_screen_name": "RSWestmoreland", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 08 20:32:52 +0000 2014", + "id": 464503219561848832, + "id_str": "464503219561848832", + "text": "@zhuowei it's a scene where Katarosi discusses the history of divine madness with a Republican professor who looks like GRRM.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 464502960370642946, + "in_reply_to_status_id_str": "464502960370642946", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 08 20:32:21 +0000 2014", + "id": 464503091023212545, + "id_str": "464503091023212545", + "text": "@zhuowei I actually do like some of them, but they just weren't working out. One of them may be salvaged for a different part though", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 464502960370642946, + "in_reply_to_status_id_str": "464502960370642946", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 08 20:30:36 +0000 2014", + "id": 464502652160581633, + "id_str": "464502652160581633", + "text": "Manuscript word count: 23,637\n\nDiscarded draft word count: 10,551", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 08 19:36:12 +0000 2014", + "id": 464488960254025728, + "id_str": "464488960254025728", + "text": "@gsuberland :<", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464488650894749696, + "in_reply_to_status_id_str": "464488650894749696", + "in_reply_to_user_id": 432513392, + "in_reply_to_user_id_str": "432513392", + "in_reply_to_screen_name": "gsuberland", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "vi" + }, + { + "created_at": "Thu May 08 19:33:58 +0000 2014", + "id": 464488396493434880, + "id_str": "464488396493434880", + "text": "@m1sp @zauspar and if momma’s little baby won’t sing, momma gonna turn you into an Alk-thing", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464488149830234112, + "in_reply_to_status_id_str": "464488149830234112", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 08 19:31:57 +0000 2014", + "id": 464487891180486656, + "id_str": "464487891180486656", + "text": "@m1sp @zauspar hush little baby, don’t say a word, or momma will feed you to the waterfall bird", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464487651790577665, + "in_reply_to_status_id_str": "464487651790577665", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 3, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 08 19:28:27 +0000 2014", + "id": 464487011253243904, + "id_str": "464487011253243904", + "text": "@m1sp @zauspar it occurred to me the other day that if I start the adoption process that would seriously cut into writing time", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464486824631889922, + "in_reply_to_status_id_str": "464486824631889922", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 08 19:27:32 +0000 2014", + "id": 464486779375321088, + "id_str": "464486779375321088", + "text": "@zauspar yaaaay", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464486567109996544, + "in_reply_to_status_id_str": "464486567109996544", + "in_reply_to_user_id": 216571343, + "in_reply_to_user_id_str": "216571343", + "in_reply_to_screen_name": "zauspar", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 08 19:27:21 +0000 2014", + "id": 464486731518328832, + "id_str": "464486731518328832", + "text": "@zauspar @m1sp but there were six years of world building and discarded attempts before that", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464486460704710656, + "in_reply_to_status_id_str": "464486460704710656", + "in_reply_to_user_id": 216571343, + "in_reply_to_user_id_str": "216571343", + "in_reply_to_screen_name": "zauspar", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 08 19:27:02 +0000 2014", + "id": 464486653911109634, + "id_str": "464486653911109634", + "text": "@zauspar @m1sp writing the manuscript of the first book took one year including a few months of writers block", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464486460704710656, + "in_reply_to_status_id_str": "464486460704710656", + "in_reply_to_user_id": 216571343, + "in_reply_to_user_id_str": "216571343", + "in_reply_to_screen_name": "zauspar", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 08 19:26:34 +0000 2014", + "id": 464486537112334336, + "id_str": "464486537112334336", + "text": "@WhiteMageSlave also my social circle is the exact opposite", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464485138588770304, + "in_reply_to_status_id_str": "464485138588770304", + "in_reply_to_user_id": 90791634, + "in_reply_to_user_id_str": "90791634", + "in_reply_to_screen_name": "WhiteMageSlave", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 08 19:26:18 +0000 2014", + "id": 464486469693104128, + "id_str": "464486469693104128", + "text": "@WhiteMageSlave I’m here, I just often am no good at articulating responses", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464485138588770304, + "in_reply_to_status_id_str": "464485138588770304", + "in_reply_to_user_id": 90791634, + "in_reply_to_user_id_str": "90791634", + "in_reply_to_screen_name": "WhiteMageSlave", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 08 19:24:53 +0000 2014", + "id": 464486112481005568, + "id_str": "464486112481005568", + "text": "@m1sp \\o/ I was thinking of posting this too haha", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464481795480616960, + "in_reply_to_status_id_str": "464481795480616960", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 08 19:23:41 +0000 2014", + "id": 464485810121613313, + "id_str": "464485810121613313", + "text": "@m1sp @zauspar I, uh,\n\nI hope I have seven more years in me at least", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464485673496739840, + "in_reply_to_status_id_str": "464485673496739840", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 08 19:23:14 +0000 2014", + "id": 464485698406318080, + "id_str": "464485698406318080", + "text": "@ghostqueer also an outside context that may illuminate this (opposite of death of the author) is that I am deeply, DEEPLY pregnancy-phobic.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464483322236653568, + "in_reply_to_status_id_str": "464483322236653568", + "in_reply_to_user_id": 2337742344, + "in_reply_to_user_id_str": "2337742344", + "in_reply_to_screen_name": "ghostqueer", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 08 19:21:58 +0000 2014", + "id": 464485378351968256, + "id_str": "464485378351968256", + "text": "@m1sp @zauspar after looking at what was covered in book 1, I mapped it out and came up with eight total, very symmetrical", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464485107709919232, + "in_reply_to_status_id_str": "464485107709919232", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 08 19:21:12 +0000 2014", + "id": 464485184499617793, + "id_str": "464485184499617793", + "text": "@ghostqueer oh, well, this is… addressed?… later", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464483322236653568, + "in_reply_to_status_id_str": "464483322236653568", + "in_reply_to_user_id": 2337742344, + "in_reply_to_user_id_str": "2337742344", + "in_reply_to_screen_name": "ghostqueer", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 08 19:20:20 +0000 2014", + "id": 464484967024963584, + "id_str": "464484967024963584", + "text": "@zauspar eeee! Yes of course! SEVEN more! I’m working on book 2 at this very moment", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464482804840300544, + "in_reply_to_status_id_str": "464482804840300544", + "in_reply_to_user_id": 216571343, + "in_reply_to_user_id_str": "216571343", + "in_reply_to_screen_name": "zauspar", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 5, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 08 18:09:23 +0000 2014", + "id": 464467109867966467, + "id_str": "464467109867966467", + "text": "@landley I think I’m nearly the only woman I know who *doesn’t*", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464461238454738944, + "in_reply_to_status_id_str": "464461238454738944", + "in_reply_to_user_id": 14326287, + "in_reply_to_user_id_str": "14326287", + "in_reply_to_screen_name": "landley", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 08 17:50:03 +0000 2014", + "id": 464462247260352512, + "id_str": "464462247260352512", + "text": "@m1sp @antumbral @Talen_Lee http://t.co/Ot7jrardlv", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464453094135177220, + "in_reply_to_status_id_str": "464453094135177220", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Thu May 08 17:46:57 +0000 2014", + "id": 464461465857294336, + "id_str": "464461465857294336", + "text": "@nikmd23 @blowdart …you know twitter pics don’t support gif right", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464416066479726595, + "in_reply_to_status_id_str": "464416066479726595", + "in_reply_to_user_id": 14169419, + "in_reply_to_user_id_str": "14169419", + "in_reply_to_screen_name": "nikmd23", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 08 17:07:44 +0000 2014", + "id": 464451598849413120, + "id_str": "464451598849413120", + "text": "@m1sp @antumbral @Talen_Lee I very specifically have a note that says \"Light, for the purposes of Tsovinar's powers, is a particle.\"", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 464449321862066176, + "in_reply_to_status_id_str": "464449321862066176", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 8, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 08 17:06:43 +0000 2014", + "id": 464451339410743296, + "id_str": "464451339410743296", + "text": "@m1sp @Talen_Lee Dhovakin-nar Izael. Thu'uminar.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 464447136726122496, + "in_reply_to_status_id_str": "464447136726122496", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": true, + "retweeted": false, + "lang": "hr" + }, + { + "created_at": "Thu May 08 16:58:45 +0000 2014", + "id": 464449337121333248, + "id_str": "464449337121333248", + "text": "@m1sp @Talen_Lee Shouting As Superpower", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464447136726122496, + "in_reply_to_status_id_str": "464447136726122496", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 08 16:56:48 +0000 2014", + "id": 464448846529982464, + "id_str": "464448846529982464", + "text": "@DrPizza not me. But other people. Yes.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464443687007965184, + "in_reply_to_status_id_str": "464443687007965184", + "in_reply_to_user_id": 11375732, + "in_reply_to_user_id_str": "11375732", + "in_reply_to_screen_name": "DrPizza", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 08 16:53:52 +0000 2014", + "id": 464448108773269504, + "id_str": "464448108773269504", + "text": "@FioraAeterna sounds like we’d get along", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464435233618530306, + "in_reply_to_status_id_str": "464435233618530306", + "in_reply_to_user_id": 2468699718, + "in_reply_to_user_id_str": "2468699718", + "in_reply_to_screen_name": "FioraAeterna", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 08 16:49:01 +0000 2014", + "id": 464446885802291200, + "id_str": "464446885802291200", + "text": "@Talen_Lee the Republicans in this story do speak GreekLatin, so “in the language of Petragon they call it…” was the best I could do", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464416729431437312, + "in_reply_to_status_id_str": "464416729431437312", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 08 16:47:49 +0000 2014", + "id": 464446583468093440, + "id_str": "464446583468093440", + "text": "RT @Talen_Lee: Talen Reads Glory In The Thunder – Chapter 4 http://t.co/CYzOQEpgAY", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Thu May 08 14:49:11 +0000 2014", + "id": 464416729431437312, + "id_str": "464416729431437312", + "text": "Talen Reads Glory In The Thunder – Chapter 4 http://t.co/CYzOQEpgAY", + "source": "WordPress.com", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 1626778274, + "id_str": "1626778274" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 0, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/CYzOQEpgAY", + "expanded_url": "http://wp.me/p4pPKG-GT", + "display_url": "wp.me/p4pPKG-GT", + "indices": [ + 45, + 67 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 1, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu May 08 16:30:30 +0000 2014", + "id": 464442226945175552, + "id_str": "464442226945175552", + "text": "@lilshieste .... D:", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 464441863512940544, + "in_reply_to_status_id_str": "464441863512940544", + "in_reply_to_user_id": 314762184, + "in_reply_to_user_id_str": "314762184", + "in_reply_to_screen_name": "lilshieste", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "it" + }, + { + "created_at": "Thu May 08 16:05:44 +0000 2014", + "id": 464435993173430272, + "id_str": "464435993173430272", + "text": "@puellavulnerata *opens link* AHHHHHHHHHHHHHHHHHH", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 464435896259862528, + "in_reply_to_status_id_str": "464435896259862528", + "in_reply_to_user_id": 54666727, + "in_reply_to_user_id_str": "54666727", + "in_reply_to_screen_name": "puellavulnerata", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 08 16:05:08 +0000 2014", + "id": 464435844833480704, + "id_str": "464435844833480704", + "text": "@Talen_Lee no, I'd know that one, this just tastes more... generically chemically?", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 464435664876871683, + "in_reply_to_status_id_str": "464435664876871683", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 08 16:04:15 +0000 2014", + "id": 464435619632926721, + "id_str": "464435619632926721", + "text": "I've had a weird taste in my mouth for a few days. What horrible and lethal diseases does this suggest", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 08 14:33:35 +0000 2014", + "id": 464412803801939968, + "id_str": "464412803801939968", + "text": "@homakov no I have never seen robocop so I'm going to assume you tried to install a laser gun in your arm or something", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 464412631701262336, + "in_reply_to_status_id_str": "464412631701262336", + "in_reply_to_user_id": 86890115, + "in_reply_to_user_id_str": "86890115", + "in_reply_to_screen_name": "homakov", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 08 14:31:06 +0000 2014", + "id": 464412179517943808, + "id_str": "464412179517943808", + "text": "@homakov what is wrong with you though", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464411961258545153, + "in_reply_to_status_id_str": "464411961258545153", + "in_reply_to_user_id": 86890115, + "in_reply_to_user_id_str": "86890115", + "in_reply_to_screen_name": "homakov", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 08 14:22:39 +0000 2014", + "id": 464410051415785473, + "id_str": "464410051415785473", + "text": "RT @mikko: Chrome currently pins certificates for Google, Twitter, Tor Project, Cryptocat, Tor2Web and Lavabit. \nSee https://t.co/VXANNQrOu1", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Thu May 08 14:20:09 +0000 2014", + "id": 464409425441083392, + "id_str": "464409425441083392", + "text": "Chrome currently pins certificates for Google, Twitter, Tor Project, Cryptocat, Tor2Web and Lavabit. \nSee https://t.co/VXANNQrOu1", + "source": "Twitter for Websites", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 23566038, + "id_str": "23566038" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 53, + "favorite_count": 31, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "https://t.co/VXANNQrOu1", + "expanded_url": "https://code.google.com/p/chromium/codesearch#chromium/src/net/http/transport_security_state_static.json", + "display_url": "code.google.com/p/chromium/cod…", + "indices": [ + 106, + 129 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 53, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu May 08 13:21:28 +0000 2014", + "id": 464394653123362816, + "id_str": "464394653123362816", + "text": "@zauspar yay", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464386771829002244, + "in_reply_to_status_id_str": "464386771829002244", + "in_reply_to_user_id": 216571343, + "in_reply_to_user_id_str": "216571343", + "in_reply_to_screen_name": "zauspar", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Thu May 08 06:22:45 +0000 2014", + "id": 464289282031509504, + "id_str": "464289282031509504", + "text": "@zhuowei @m1sp @hinanawi_chan @gotyaoi about Rosi never wearing pants", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464288989457809408, + "in_reply_to_status_id_str": "464288989457809408", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 08 04:56:17 +0000 2014", + "id": 464267520644743168, + "id_str": "464267520644743168", + "text": "@eevee yes...? It’s just cutesier to simplify words", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464267225302446080, + "in_reply_to_status_id_str": "464267225302446080", + "in_reply_to_user_id": 14412937, + "in_reply_to_user_id_str": "14412937", + "in_reply_to_screen_name": "eevee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 08 04:52:59 +0000 2014", + "id": 464266691619196928, + "id_str": "464266691619196928", + "text": "@eevee I always thought that was simply a matter of too many syllables", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464262473034383360, + "in_reply_to_status_id_str": "464262473034383360", + "in_reply_to_user_id": 14412937, + "in_reply_to_user_id_str": "14412937", + "in_reply_to_screen_name": "eevee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 08 04:25:42 +0000 2014", + "id": 464259825694957568, + "id_str": "464259825694957568", + "text": "@zhuowei @hinanawi_chan @m1sp looks a little too frilly though… should do it again", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464259623587815424, + "in_reply_to_status_id_str": "464259623587815424", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 08 04:21:40 +0000 2014", + "id": 464258811180486656, + "id_str": "464258811180486656", + "text": "@zhuowei @m1sp she is Serious Business. http://t.co/I200VTxq2T", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464251035305799680, + "in_reply_to_status_id_str": "464251035305799680", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu May 08 03:51:26 +0000 2014", + "id": 464251200209031168, + "id_str": "464251200209031168", + "text": "@zhuowei @m1sp Varodahn len Soronanin ~", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 464251035305799680, + "in_reply_to_status_id_str": "464251035305799680", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "in" + }, + { + "created_at": "Thu May 08 03:48:10 +0000 2014", + "id": 464250380067418113, + "id_str": "464250380067418113", + "text": "@zhuowei @m1sp Barsamin and Tall Women, Part 2 http://t.co/9RxMXOnj9D", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 464248416264925186, + "in_reply_to_status_id_str": "464248416264925186", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu May 08 03:41:31 +0000 2014", + "id": 464248706821156864, + "id_str": "464248706821156864", + "text": "@zhuowei @m1sp it was planned, I swear :) In that in my *head* I imagined him taller than her and realized \"no, he isn't, sorry Houri\"", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 464248416264925186, + "in_reply_to_status_id_str": "464248416264925186", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 08 03:12:27 +0000 2014", + "id": 464241391942397952, + "id_str": "464241391942397952", + "text": "@frkbmb I very specifically was taught that all life is either plant or animal. As in, fungi = plant", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 464240905793183744, + "in_reply_to_status_id_str": "464240905793183744", + "in_reply_to_user_id": 540721095, + "in_reply_to_user_id_str": "540721095", + "in_reply_to_screen_name": "frkbmb", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 08 03:12:02 +0000 2014", + "id": 464241286849900544, + "id_str": "464241286849900544", + "text": "@frkbmb the sad thing is I'm pretty sure this is real. My elementary school creation science books were generally Not Even Wrong", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 464240905793183744, + "in_reply_to_status_id_str": "464240905793183744", + "in_reply_to_user_id": 540721095, + "in_reply_to_user_id_str": "540721095", + "in_reply_to_screen_name": "frkbmb", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 08 01:27:16 +0000 2014", + "id": 464214918909009920, + "id_str": "464214918909009920", + "text": "@hinanawi_chan @zauspar this isn’t how any yandere murder plot began ever.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464214746221137920, + "in_reply_to_status_id_str": "464214746221137920", + "in_reply_to_user_id": 2336014178, + "in_reply_to_user_id_str": "2336014178", + "in_reply_to_screen_name": "hinanawi_chan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 08 01:24:10 +0000 2014", + "id": 464214139859382272, + "id_str": "464214139859382272", + "text": "@zauspar I don’t really mind either way (I would get $2.70 from an amazon sale btw)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464213820756328449, + "in_reply_to_status_id_str": "464213820756328449", + "in_reply_to_user_id": 216571343, + "in_reply_to_user_id_str": "216571343", + "in_reply_to_screen_name": "zauspar", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 08 01:20:28 +0000 2014", + "id": 464213210024124416, + "id_str": "464213210024124416", + "text": "@zauspar I’m like 80% the new version upload to amazon (with lengthened chapter 17) succeeded and stuff", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464212741561933824, + "in_reply_to_status_id_str": "464212741561933824", + "in_reply_to_user_id": 216571343, + "in_reply_to_user_id_str": "216571343", + "in_reply_to_screen_name": "zauspar", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 08 01:19:50 +0000 2014", + "id": 464213052133367808, + "id_str": "464213052133367808", + "text": "@zauspar you can! You can also get it for Nothing http://t.co/pcuW3qilPe", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464212741561933824, + "in_reply_to_status_id_str": "464212741561933824", + "in_reply_to_user_id": 216571343, + "in_reply_to_user_id_str": "216571343", + "in_reply_to_screen_name": "zauspar", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu May 08 01:18:20 +0000 2014", + "id": 464212673119256576, + "id_str": "464212673119256576", + "text": "@zauspar >___________>", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464212476427767808, + "in_reply_to_status_id_str": "464212476427767808", + "in_reply_to_user_id": 216571343, + "in_reply_to_user_id_str": "216571343", + "in_reply_to_screen_name": "zauspar", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "pt" + }, + { + "created_at": "Thu May 08 01:05:30 +0000 2014", + "id": 464209442242715648, + "id_str": "464209442242715648", + "text": "@m1sp http://t.co/DUSTGtZHWt", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Thu May 08 00:56:55 +0000 2014", + "id": 464207284613046272, + "id_str": "464207284613046272", + "text": "@puellavulnerata 🔔👰👑👰🔔", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464207103205203968, + "in_reply_to_status_id_str": "464207103205203968", + "in_reply_to_user_id": 54666727, + "in_reply_to_user_id_str": "54666727", + "in_reply_to_screen_name": "puellavulnerata", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Thu May 08 00:55:19 +0000 2014", + "id": 464206882404438017, + "id_str": "464206882404438017", + "text": "@puellavulnerata I wanna be royalty, will you please royal-gay-marry me, I mean, I assume you’re not royal-married to him", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464186931236966401, + "in_reply_to_status_id_str": "464186931236966401", + "in_reply_to_user_id": 54666727, + "in_reply_to_user_id_str": "54666727", + "in_reply_to_screen_name": "puellavulnerata", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu May 08 00:49:43 +0000 2014", + "id": 464205472489164800, + "id_str": "464205472489164800", + "text": "RT @FakeRobotGamer: dying laughing irl http://t.co/lD3ndlW3m4", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Wed May 07 15:12:53 +0000 2014", + "id": 464060306029703168, + "id_str": "464060306029703168", + "text": "dying laughing irl http://t.co/lD3ndlW3m4", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 1263295052, + "id_str": "1263295052" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 357, + "favorite_count": 304, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ], + "media": [ + { + "id": 464060304280657920, + "id_str": "464060304280657920", + "indices": [ + 19, + 41 + ], + "media_url": "http://pbs.twimg.com/media/BnCsY1cCIAAbrog.jpg", + "media_url_https": "https://pbs.twimg.com/media/BnCsY1cCIAAbrog.jpg", + "url": "http://t.co/lD3ndlW3m4", + "display_url": "pic.twitter.com/lD3ndlW3m4", + "expanded_url": "http://twitter.com/FakeRobotGamer/status/464060306029703168/photo/1", + "type": "photo", + "sizes": { + "medium": { + "w": 378, + "h": 577, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 519, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 378, + "h": 577, + "resize": "fit" + } + } + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 357, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu May 08 00:22:32 +0000 2014", + "id": 464198629150834689, + "id_str": "464198629150834689", + "text": "@MunchlaxRegrets @m1sp :[[[", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 464198550419546112, + "in_reply_to_status_id_str": "464198550419546112", + "in_reply_to_user_id": 66081332, + "in_reply_to_user_id_str": "66081332", + "in_reply_to_screen_name": "MunchlaxRegrets", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Thu May 08 00:03:23 +0000 2014", + "id": 464193810721816576, + "id_str": "464193810721816576", + "text": "@zhuowei oh, you're a teenager? (if you told me this before I somehow dropped it from hot storage, sorry!!)", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 464192203930087425, + "in_reply_to_status_id_str": "464192203930087425", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 07 23:52:51 +0000 2014", + "id": 464191159435132928, + "id_str": "464191159435132928", + "text": "@zhuowei @McGrewSecurity pretty much just like that except I imagine she has a face (I haven't seen it in a while)", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 464190968476880899, + "in_reply_to_status_id_str": "464190968476880899", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 07 23:52:22 +0000 2014", + "id": 464191037561249792, + "id_str": "464191037561249792", + "text": "@zhuowei @m1sp well I can see by what thought process I arrived at it, Arakel is a loser but there are THREE women after him, dating sim.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 464190651685289984, + "in_reply_to_status_id_str": "464190651685289984", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 07 23:51:21 +0000 2014", + "id": 464190781389934593, + "id_str": "464190781389934593", + "text": "RT @zhuowei: @McGrewSecurity @0xabad1dea http://t.co/R0S5YOvLTN", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Wed May 07 23:48:52 +0000 2014", + "id": 464190159328522240, + "id_str": "464190159328522240", + "text": "@McGrewSecurity @0xabad1dea http://t.co/R0S5YOvLTN", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 464174492424871936, + "in_reply_to_status_id_str": "464174492424871936", + "in_reply_to_user_id": 13275122, + "in_reply_to_user_id_str": "13275122", + "in_reply_to_screen_name": "McGrewSecurity", + "user": { + "id": 383083538, + "id_str": "383083538" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 3, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/R0S5YOvLTN", + "expanded_url": "http://zhuoweizhang.net/temprepo/zapping/", + "display_url": "zhuoweizhang.net/temprepo/zappi…", + "indices": [ + 28, + 50 + ] + } + ], + "user_mentions": [ + { + "screen_name": "McGrewSecurity", + "name": "Wesley McGrew", + "id": 13275122, + "id_str": "13275122", + "indices": [ + 0, + 15 + ] + }, + { + "screen_name": "0xabad1dea", + "name": "Melissa", + "id": 126030998, + "id_str": "126030998", + "indices": [ + 16, + 27 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + "retweet_count": 2, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Wed May 07 23:50:31 +0000 2014", + "id": 464190572752674816, + "id_str": "464190572752674816", + "text": "@zhuowei @McGrewSecurity *dies laughing*", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 464190159328522240, + "in_reply_to_status_id_str": "464190159328522240", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 07 23:42:08 +0000 2014", + "id": 464188464213155841, + "id_str": "464188464213155841", + "text": "@m1sp LOL I don't remember drawing this http://t.co/cUJwFImb3d", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed May 07 22:51:31 +0000 2014", + "id": 464175723305922563, + "id_str": "464175723305922563", + "text": "RT @coyoteseven: @0xabad1dea http://t.co/4FTSS4n76r", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Wed May 07 22:49:01 +0000 2014", + "id": 464175097385725953, + "id_str": "464175097385725953", + "text": "@0xabad1dea http://t.co/4FTSS4n76r", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 464172739348008961, + "in_reply_to_status_id_str": "464172739348008961", + "in_reply_to_user_id": 126030998, + "in_reply_to_user_id_str": "126030998", + "in_reply_to_screen_name": "0xabad1dea", + "user": { + "id": 27753612, + "id_str": "27753612" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 1, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/4FTSS4n76r", + "expanded_url": "http://archive.org/stream/byte-magazine-1975-12/1975_12_BYTE_00-04_Assembling_an_Altair_djvu.txt", + "display_url": "archive.org/stream/byte-ma…", + "indices": [ + 12, + 34 + ] + } + ], + "user_mentions": [ + { + "screen_name": "0xabad1dea", + "name": "Melissa", + "id": 126030998, + "id_str": "126030998", + "indices": [ + 0, + 11 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + "retweet_count": 1, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Wed May 07 22:43:39 +0000 2014", + "id": 464173746249400320, + "id_str": "464173746249400320", + "text": "From the archives, my first game design document, age 7 I think. (press spacebar to zap) http://t.co/xjWghpl3M5", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 14, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed May 07 22:39:39 +0000 2014", + "id": 464172739348008961, + "id_str": "464172739348008961", + "text": "I think - I *THINK* - that might be a screencap from an issue of BYTE magazine. Not that it explains a motorola washtub.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 07 22:37:32 +0000 2014", + "id": 464172204268072960, + "id_str": "464172204268072960", + "text": "I uploaded this to my imgur two years ago and I have no idea why http://t.co/EZv7gs7KTH \n\n(motorola logo???)", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 9, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed May 07 22:36:26 +0000 2014", + "id": 464171928610017282, + "id_str": "464171928610017282", + "text": "@zhuowei that was just something I drew on a whim once. (The scene with Ismyrn in a dress is still in but has been reworked like 6x)", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 464171678172340225, + "in_reply_to_status_id_str": "464171678172340225", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 07 22:28:43 +0000 2014", + "id": 464169985342832640, + "id_str": "464169985342832640", + "text": "@zhuowei ahh here it is. I drew this over two years ago... http://t.co/OwlfJF0Caf", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 464166930232782848, + "in_reply_to_status_id_str": "464166930232782848", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed May 07 22:26:16 +0000 2014", + "id": 464169370017488898, + "id_str": "464169370017488898", + "text": "@zhuowei ahh, I figured out which image you saw, I was thinking of a different one entirely!", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 464166930232782848, + "in_reply_to_status_id_str": "464166930232782848", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 07 22:22:32 +0000 2014", + "id": 464168430925389824, + "id_str": "464168430925389824", + "text": "@zhuowei but 99% of it is Super Secret! http://t.co/j43L0Z6ea2", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 464166930232782848, + "in_reply_to_status_id_str": "464166930232782848", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed May 07 22:22:32 +0000 2014", + "id": 464168430925389824, + "id_str": "464168430925389824", + "text": "@zhuowei but 99% of it is Super Secret! http://t.co/j43L0Z6ea2", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 464166930232782848, + "in_reply_to_status_id_str": "464166930232782848", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed May 07 22:13:55 +0000 2014", + "id": 464166261530705920, + "id_str": "464166261530705920", + "text": "@zhuowei also I’m surprised you knew/remembered that…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 07 22:06:42 +0000 2014", + "id": 464164445489741824, + "id_str": "464164445489741824", + "text": ".@defendtheworld @travisgoodspeed OH GODS DAMMIT.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464141509806129152, + "in_reply_to_status_id_str": "464141509806129152", + "in_reply_to_user_id": 16145684, + "in_reply_to_user_id_str": "16145684", + "in_reply_to_screen_name": "defendtheworld", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 07 22:06:27 +0000 2014", + "id": 464164385720926208, + "id_str": "464164385720926208", + "text": "RT @defendtheworld: BGP is turing complete too, http://t.co/LaDdv2YJ5t", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Wed May 07 20:35:33 +0000 2014", + "id": 464141509806129152, + "id_str": "464141509806129152", + "text": "BGP is turing complete too, http://t.co/LaDdv2YJ5t", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 16145684, + "id_str": "16145684" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 64, + "favorite_count": 32, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/LaDdv2YJ5t", + "expanded_url": "http://vanbever.eu/pdfs/vanbever_turing_icnp_2013.pdf", + "display_url": "vanbever.eu/pdfs/vanbever_…", + "indices": [ + 28, + 50 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "ro" + }, + "retweet_count": 64, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "ro" + }, + { + "created_at": "Wed May 07 22:05:08 +0000 2014", + "id": 464164050482782208, + "id_str": "464164050482782208", + "text": "@aspects_ebooks well don’t be afraid to give me a head’s up or anything", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464148656372080640, + "in_reply_to_status_id_str": "464148656372080640", + "in_reply_to_user_id": 2345404375, + "in_reply_to_user_id_str": "2345404375", + "in_reply_to_screen_name": "aspects_ebooks", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 07 22:03:20 +0000 2014", + "id": 464163597564641280, + "id_str": "464163597564641280", + "text": "@zhuowei @hinanawi_chan @gotyaoi @m1sp you don’t need to take that as a criticism ~ !", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464163301903974400, + "in_reply_to_status_id_str": "464163301903974400", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 07 22:02:04 +0000 2014", + "id": 464163279343194113, + "id_str": "464163279343194113", + "text": "@zhuowei @gotyaoi @m1sp pantaloons, they always have something OVER them, this pants with just pants thing, that’s weird", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464163031887253505, + "in_reply_to_status_id_str": "464163031887253505", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 07 21:59:15 +0000 2014", + "id": 464162572871401472, + "id_str": "464162572871401472", + "text": "@zhuowei @gotyaoi @m1sp also Katarosi, I’m just not a good enough artist to portray characters consistently", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464162410983473152, + "in_reply_to_status_id_str": "464162410983473152", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 07 21:58:13 +0000 2014", + "id": 464162311486603264, + "id_str": "464162311486603264", + "text": "@TakoArishi @eevee …", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464162131345428483, + "in_reply_to_status_id_str": "464162131345428483", + "in_reply_to_user_id": 22107482, + "in_reply_to_user_id_str": "22107482", + "in_reply_to_screen_name": "TakoArishi", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Wed May 07 21:55:54 +0000 2014", + "id": 464161726955401216, + "id_str": "464161726955401216", + "text": "I’m not for banning sale or display of the Confederate flag. If you want to display it, I would like to know that about you going in", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 10, + "favorite_count": 7, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 07 21:53:22 +0000 2014", + "id": 464161090033565697, + "id_str": "464161090033565697", + "text": "@gotyaoi @m1sp http://t.co/PkkUfBKArZ", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464158256324423680, + "in_reply_to_status_id_str": "464158256324423680", + "in_reply_to_user_id": 393022772, + "in_reply_to_user_id_str": "393022772", + "in_reply_to_screen_name": "gotyaoi", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Wed May 07 21:45:22 +0000 2014", + "id": 464159079493947392, + "id_str": "464159079493947392", + "text": "@gotyaoi @m1sp —> Republicans http://t.co/lYPfR0pCMM", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464158256324423680, + "in_reply_to_status_id_str": "464158256324423680", + "in_reply_to_user_id": 393022772, + "in_reply_to_user_id_str": "393022772", + "in_reply_to_screen_name": "gotyaoi", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "pt" + }, + { + "created_at": "Wed May 07 21:44:31 +0000 2014", + "id": 464158865496371200, + "id_str": "464158865496371200", + "text": "@gotyaoi @m1sp Antaram is modeled with specific reference to Armenia, which is basically western but you can see other influences.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464158256324423680, + "in_reply_to_status_id_str": "464158256324423680", + "in_reply_to_user_id": 393022772, + "in_reply_to_user_id_str": "393022772", + "in_reply_to_screen_name": "gotyaoi", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 07 21:23:16 +0000 2014", + "id": 464153514873065473, + "id_str": "464153514873065473", + "text": "@gotyaoi @m1sp well, the characters from the Republic across the sea would dress something like that, the ones who wear dresses anyway", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 464153098953691137, + "in_reply_to_status_id_str": "464153098953691137", + "in_reply_to_user_id": 393022772, + "in_reply_to_user_id_str": "393022772", + "in_reply_to_screen_name": "gotyaoi", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 07 21:01:54 +0000 2014", + "id": 464148137129431040, + "id_str": "464148137129431040", + "text": "@Sense_of_scale @Reweth http://t.co/s43bMPIIAS", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 464147706680594432, + "in_reply_to_status_id_str": "464147706680594432", + "in_reply_to_user_id": 123460786, + "in_reply_to_user_id_str": "123460786", + "in_reply_to_screen_name": "Sense_of_scale", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Wed May 07 20:41:36 +0000 2014", + "id": 464143031520612352, + "id_str": "464143031520612352", + "text": "@MechMK1 *`\\o/`*\n\nthose are pom-poms, I don't know why I felt I needed a pom-pom emote", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 464142717619306496, + "in_reply_to_status_id_str": "464142717619306496", + "in_reply_to_user_id": 81556825, + "in_reply_to_user_id_str": "81556825", + "in_reply_to_screen_name": "MechMK1", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 07 20:40:51 +0000 2014", + "id": 464142841115979776, + "id_str": "464142841115979776", + "text": "@gotyaoi @m1sp that one's a little too explicitly European", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 464142332099854336, + "in_reply_to_status_id_str": "464142332099854336", + "in_reply_to_user_id": 393022772, + "in_reply_to_user_id_str": "393022772", + "in_reply_to_screen_name": "gotyaoi", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 07 20:37:43 +0000 2014", + "id": 464142051412434944, + "id_str": "464142051412434944", + "text": "Is it really \"international tell your crush day\"?\n\nWell *gets out a scroll three feet long* ahem, this could take a few minutes", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 32, + "favorite_count": 57, + "favorited": true, + "retweeted": true, + "lang": "en" + }, + { + "created_at": "Wed May 07 20:31:30 +0000 2014", + "id": 464140490049204224, + "id_str": "464140490049204224", + "text": "@gotyaoi @m1sp basically everyone in Aspects who has superpowers is a really particularly poor choice for having superpowers", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 464135755846406144, + "in_reply_to_status_id_str": "464135755846406144", + "in_reply_to_user_id": 393022772, + "in_reply_to_user_id_str": "393022772", + "in_reply_to_screen_name": "gotyaoi", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 07 20:30:41 +0000 2014", + "id": 464140284872228864, + "id_str": "464140284872228864", + "text": "@gotyaoi @m1sp hmm, oh her, yes, needs the nice dress though.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 464136452335742976, + "in_reply_to_status_id_str": "464136452335742976", + "in_reply_to_user_id": 393022772, + "in_reply_to_user_id_str": "393022772", + "in_reply_to_screen_name": "gotyaoi", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 07 19:49:40 +0000 2014", + "id": 464129961645707264, + "id_str": "464129961645707264", + "text": "@0x00string but it doesn’t, and considering whence that widespread mental disconnect is interesting/important.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464129111787864064, + "in_reply_to_status_id_str": "464129111787864064", + "in_reply_to_user_id": 265096889, + "in_reply_to_user_id_str": "265096889", + "in_reply_to_screen_name": "0x00string", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 07 19:48:53 +0000 2014", + "id": 464129762592444417, + "id_str": "464129762592444417", + "text": "@0x00string I just mean that the arguments for not portraying a gay kiss on kiddie tv should logically apply to a straight kiss,", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464129111787864064, + "in_reply_to_status_id_str": "464129111787864064", + "in_reply_to_user_id": 265096889, + "in_reply_to_user_id_str": "265096889", + "in_reply_to_screen_name": "0x00string", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 07 19:47:56 +0000 2014", + "id": 464129525279129601, + "id_str": "464129525279129601", + "text": "@0x00string in *my* opinion? It isn’t.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464129111787864064, + "in_reply_to_status_id_str": "464129111787864064", + "in_reply_to_user_id": 265096889, + "in_reply_to_user_id_str": "265096889", + "in_reply_to_screen_name": "0x00string", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 07 19:44:07 +0000 2014", + "id": 464128563416141824, + "id_str": "464128563416141824", + "text": "@winocm @DarrenPMeyer I saw it in person the other day. Before I had to avert my eyes, that is", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464125256110596097, + "in_reply_to_status_id_str": "464125256110596097", + "in_reply_to_user_id": 428413732, + "in_reply_to_user_id_str": "428413732", + "in_reply_to_screen_name": "winocm", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 07 19:39:34 +0000 2014", + "id": 464127417569656834, + "id_str": "464127417569656834", + "text": "@zhuowei but almost the entire article is about how the aggression thing is a dangerously misinformed stereotype :)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464125375761485824, + "in_reply_to_status_id_str": "464125375761485824", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 07 19:30:28 +0000 2014", + "id": 464125130323398656, + "id_str": "464125130323398656", + "text": "RT @ELLIOTTCABLE: Wow. ‘For many Chinese [Latin characters] might as well be Cyrillic.’\n\nOn latin URLs in China.\n\nhttp://t.co/vh3LIGVsc6 #i…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Wed May 07 19:03:57 +0000 2014", + "id": 464118455579340801, + "id_str": "464118455579340801", + "text": "Wow. ‘For many Chinese [Latin characters] might as well be Cyrillic.’\n\nOn latin URLs in China.\n\nhttp://t.co/vh3LIGVsc6 #i17n /via @incanus77", + "source": "Twitter for Mac", + "truncated": false, + "in_reply_to_status_id": 464117368243748864, + "in_reply_to_status_id_str": "464117368243748864", + "in_reply_to_user_id": 4765141, + "in_reply_to_user_id_str": "4765141", + "in_reply_to_screen_name": "incanus77", + "user": { + "id": 771681, + "id_str": "771681" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 23, + "favorite_count": 14, + "entities": { + "hashtags": [ + { + "text": "i17n", + "indices": [ + 119, + 124 + ] + } + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/vh3LIGVsc6", + "expanded_url": "http://www.newrepublic.com/article/117608/chinese-number-websites-secret-meaning-urls", + "display_url": "newrepublic.com/article/117608…", + "indices": [ + 96, + 118 + ] + } + ], + "user_mentions": [ + { + "screen_name": "incanus77", + "name": "Justin Miller", + "id": 4765141, + "id_str": "4765141", + "indices": [ + 130, + 140 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 23, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed May 07 19:20:01 +0000 2014", + "id": 464122499660136448, + "id_str": "464122499660136448", + "text": "@m1sp this lady looks remarkably like my idea of Talassen (just, you know, more blonde) http://t.co/rTVadMjHAJ", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed May 07 19:17:38 +0000 2014", + "id": 464121901028110336, + "id_str": "464121901028110336", + "text": ".@rachelnabors wait so the YY fish can lay eggs and – and I think I lost the thread of this comic book plot.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 464121249644290049, + "in_reply_to_status_id_str": "464121249644290049", + "in_reply_to_user_id": 9550352, + "in_reply_to_user_id_str": "9550352", + "in_reply_to_screen_name": "rachelnabors", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 07 19:17:18 +0000 2014", + "id": 464121814008860675, + "id_str": "464121814008860675", + "text": "RT @rachelnabors: @0xabad1dea An idea used in aquaculture right now! http://t.co/uB28w6Gfrn But it says nothing of the YY fish lacking soci…", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Wed May 07 19:15:03 +0000 2014", + "id": 464121249644290049, + "id_str": "464121249644290049", + "text": "@0xabad1dea An idea used in aquaculture right now! http://t.co/uB28w6Gfrn But it says nothing of the YY fish lacking social graces.", + "source": "Twitter for Mac", + "truncated": false, + "in_reply_to_status_id": 464120737310064641, + "in_reply_to_status_id_str": "464120737310064641", + "in_reply_to_user_id": 126030998, + "in_reply_to_user_id_str": "126030998", + "in_reply_to_screen_name": "0xabad1dea", + "user": { + "id": 9550352, + "id_str": "9550352" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 0, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/uB28w6Gfrn", + "expanded_url": "http://www.undercurrentnews.com/2013/02/13/oman-trials-breeding-of-super-males-tilapia/", + "display_url": "undercurrentnews.com/2013/02/13/oma…", + "indices": [ + 51, + 73 + ] + } + ], + "user_mentions": [ + { + "screen_name": "0xabad1dea", + "name": "Melissa", + "id": 126030998, + "id_str": "126030998", + "indices": [ + 0, + 11 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 1, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed May 07 19:13:01 +0000 2014", + "id": 464120737310064641, + "id_str": "464120737310064641", + "text": "How does science even. http://t.co/nTNtkqgOnt", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 7, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed May 07 18:22:56 +0000 2014", + "id": 464108131954339840, + "id_str": "464108131954339840", + "text": "@kx001 outside of Nintendo’s profitability, I know I’m not alone in considering emulation a generally inferior experience", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464107940572852224, + "in_reply_to_status_id_str": "464107940572852224", + "in_reply_to_user_id": 35222788, + "in_reply_to_user_id_str": "35222788", + "in_reply_to_screen_name": "kx001", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 07 18:19:10 +0000 2014", + "id": 464107185593528321, + "id_str": "464107185593528321", + "text": "RT @451wendy: \"Passwords should be changed regularly. Therefore, we have changed your child's password to be their date of birth.\" #notenou…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Wed May 07 16:53:43 +0000 2014", + "id": 464085680746807296, + "id_str": "464085680746807296", + "text": "\"Passwords should be changed regularly. Therefore, we have changed your child's password to be their date of birth.\" #notenoughfacepalms", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 353963359, + "id_str": "353963359" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 25, + "favorite_count": 12, + "entities": { + "hashtags": [ + { + "text": "notenoughfacepalms", + "indices": [ + 117, + 136 + ] + } + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 25, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 07 18:13:58 +0000 2014", + "id": 464105876044148736, + "id_str": "464105876044148736", + "text": "@zhuowei @m1sp \"Is your mother not regnant?\"", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 464105495821705216, + "in_reply_to_status_id_str": "464105495821705216", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 07 18:13:09 +0000 2014", + "id": 464105673174036480, + "id_str": "464105673174036480", + "text": "@kx001 of course people emulate it all the time!\n\nBut that might not be Nintendo's favorite option...", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 464105446908129280, + "in_reply_to_status_id_str": "464105446908129280", + "in_reply_to_user_id": 35222788, + "in_reply_to_user_id_str": "35222788", + "in_reply_to_screen_name": "kx001", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 07 18:11:45 +0000 2014", + "id": 464105317727764480, + "id_str": "464105317727764480", + "text": "@m1sp http://t.co/eQUwN6ygSa", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Wed May 07 18:05:13 +0000 2014", + "id": 464103674575613953, + "id_str": "464103674575613953", + "text": "@kx001 it's not that the original is not okay, it's that they literally don't have the hardware to boot it up in their possession", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 464103521085050880, + "in_reply_to_status_id_str": "464103521085050880", + "in_reply_to_user_id": 35222788, + "in_reply_to_user_id_str": "35222788", + "in_reply_to_screen_name": "kx001", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 07 17:47:07 +0000 2014", + "id": 464099121998356480, + "id_str": "464099121998356480", + "text": "what do birds think about airplanes", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 4, + "favorite_count": 8, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 07 17:34:30 +0000 2014", + "id": 464095944091656192, + "id_str": "464095944091656192", + "text": "@stawbewwi @m1sp .... logically consistent!\n\nPretty much *crazy*, but logically consistent!", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 464095703937986560, + "in_reply_to_status_id_str": "464095703937986560", + "in_reply_to_user_id": 36258817, + "in_reply_to_user_id_str": "36258817", + "in_reply_to_screen_name": "stawbewwi", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 07 17:27:00 +0000 2014", + "id": 464094057279815680, + "id_str": "464094057279815680", + "text": ".@zhuowei Unlock fairy, n. A clever pixie whose greatest joy is finding an unattended, unlocked computer in the office", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 464093833425207296, + "in_reply_to_status_id_str": "464093833425207296", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 18, + "favorite_count": 26, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 07 17:22:54 +0000 2014", + "id": 464093025464229888, + "id_str": "464093025464229888", + "text": "@chriseng *cough*", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 464091944218787841, + "in_reply_to_status_id_str": "464091944218787841", + "in_reply_to_user_id": 126030998, + "in_reply_to_user_id_str": "126030998", + "in_reply_to_screen_name": "0xabad1dea", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 07 17:22:01 +0000 2014", + "id": 464092804281815040, + "id_str": "464092804281815040", + "text": "@ululator my mother did this to me when I was NINETEEN. In the NETHERLANDS.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 464092496071774209, + "in_reply_to_status_id_str": "464092496071774209", + "in_reply_to_user_id": 14847137, + "in_reply_to_user_id_str": "14847137", + "in_reply_to_screen_name": "ululator", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 07 17:18:36 +0000 2014", + "id": 464091944218787841, + "id_str": "464091944218787841", + "text": "Oh my gods did Boss just email me a confession of lo– –\n\nOh, just an unlock fairy. Cancel that nuke.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 8, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 07 17:12:05 +0000 2014", + "id": 464090303536717825, + "id_str": "464090303536717825", + "text": "@_andy_tea oh, they’re usually — usually! — more narrow in scope than that", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464090099861684225, + "in_reply_to_status_id_str": "464090099861684225", + "in_reply_to_user_id": 232492541, + "in_reply_to_user_id_str": "232492541", + "in_reply_to_screen_name": "_andy_tea", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 07 17:09:37 +0000 2014", + "id": 464089683379499008, + "id_str": "464089683379499008", + "text": "@zhuowei @m1sp no! No, I’m not, I promise! \n\nBut Rashk? Like he’d miss such a chance", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464089557953032192, + "in_reply_to_status_id_str": "464089557953032192", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 07 17:08:25 +0000 2014", + "id": 464089380471058432, + "id_str": "464089380471058432", + "text": "@zhuowei @m1sp this is a spoiler, but, \n\nNot until after he’s dead", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464089155283066880, + "in_reply_to_status_id_str": "464089155283066880", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 07 17:07:44 +0000 2014", + "id": 464089209066627074, + "id_str": "464089209066627074", + "text": "@_andy_tea ha ha ha I’m going to go cry now.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464089072567607296, + "in_reply_to_status_id_str": "464089072567607296", + "in_reply_to_user_id": 232492541, + "in_reply_to_user_id_str": "232492541", + "in_reply_to_screen_name": "_andy_tea", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 07 17:06:38 +0000 2014", + "id": 464088932582318080, + "id_str": "464088932582318080", + "text": "@m1sp @aspects_ebooks Rashk did it", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464088367391465473, + "in_reply_to_status_id_str": "464088367391465473", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 07 17:04:13 +0000 2014", + "id": 464088326064988160, + "id_str": "464088326064988160", + "text": "@thegrugq ~porn~", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464088194187657216, + "in_reply_to_status_id_str": "464088194187657216", + "in_reply_to_user_id": 18983429, + "in_reply_to_user_id_str": "18983429", + "in_reply_to_screen_name": "thegrugq", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "vi" + }, + { + "created_at": "Wed May 07 17:03:37 +0000 2014", + "id": 464088171626508288, + "id_str": "464088171626508288", + "text": "@obstack precisely, which is cognitive dissonance, because they don’t apply it to hetero", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464087883096133632, + "in_reply_to_status_id_str": "464087883096133632", + "in_reply_to_user_id": 1121299910, + "in_reply_to_user_id_str": "1121299910", + "in_reply_to_screen_name": "obstack", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 07 17:03:02 +0000 2014", + "id": 464088026742669312, + "id_str": "464088026742669312", + "text": "So if my CEO is petitioning to ban noncompetes\n\nCan I assume the noncompete I signed before he worked here is, like, out the window", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 4, + "favorite_count": 12, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 07 16:59:06 +0000 2014", + "id": 464087037084045312, + "id_str": "464087037084045312", + "text": "@FioraAeterna lol I screw around with this trope so wickedly in gitt (at least I think so)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464086035144511489, + "in_reply_to_status_id_str": "464086035144511489", + "in_reply_to_user_id": 2468699718, + "in_reply_to_user_id_str": "2468699718", + "in_reply_to_screen_name": "FioraAeterna", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 07 16:53:58 +0000 2014", + "id": 464085744076611584, + "id_str": "464085744076611584", + "text": "@0x00string but why was heterosexual romance ever considered child safe to begin with, that’s an interesting question :)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464085357084942336, + "in_reply_to_status_id_str": "464085357084942336", + "in_reply_to_user_id": 265096889, + "in_reply_to_user_id_str": "265096889", + "in_reply_to_screen_name": "0x00string", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 07 16:53:07 +0000 2014", + "id": 464085531094028288, + "id_str": "464085531094028288", + "text": "@bugQ “we’re not picking sides! We’re just portraying the world as one of the sides happens to wish, coincidence really”", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464083974952742912, + "in_reply_to_status_id_str": "464083974952742912", + "in_reply_to_user_id": 12901352, + "in_reply_to_user_id_str": "12901352", + "in_reply_to_screen_name": "bugQ", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 07 16:52:22 +0000 2014", + "id": 464085340626509825, + "id_str": "464085340626509825", + "text": "RT @bugQ: .@0xabad1dea they are beyond the point of choosing whether or not their game constitutes social commentary. THE INDUSTRY is beyo…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Wed May 07 16:46:56 +0000 2014", + "id": 464083974952742912, + "id_str": "464083974952742912", + "text": ".@0xabad1dea they are beyond the point of choosing whether or not their game constitutes social commentary. THE INDUSTRY is beyond that", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 464082825130422273, + "in_reply_to_status_id_str": "464082825130422273", + "in_reply_to_user_id": 126030998, + "in_reply_to_user_id_str": "126030998", + "in_reply_to_screen_name": "0xabad1dea", + "user": { + "id": 12901352, + "id_str": "12901352" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 1, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "0xabad1dea", + "name": "Melissa", + "id": 126030998, + "id_str": "126030998", + "indices": [ + 1, + 12 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 2, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 07 16:49:39 +0000 2014", + "id": 464084657240145921, + "id_str": "464084657240145921", + "text": "Isn’t it a strange line of thought (yet nigh universal) that showing heterosexual flirting is child-friendly but homosexual flirting isn’t", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 52, + "favorite_count": 41, + "favorited": false, + "retweeted": true, + "lang": "en" + }, + { + "created_at": "Wed May 07 16:43:52 +0000 2014", + "id": 464083202265448448, + "id_str": "464083202265448448", + "text": ".@wakachamo the real reason is they’re scared of alienating American *parents* of young children from their brand", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464082920890974208, + "in_reply_to_status_id_str": "464082920890974208", + "in_reply_to_user_id": 14103188, + "in_reply_to_user_id_str": "14103188", + "in_reply_to_screen_name": "wakachamo", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 07 16:42:22 +0000 2014", + "id": 464082825130422273, + "id_str": "464082825130422273", + "text": "@0xabad1dea source URL: http://t.co/8J68cNaQIn", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464082756142497792, + "in_reply_to_status_id_str": "464082756142497792", + "in_reply_to_user_id": 126030998, + "in_reply_to_user_id_str": "126030998", + "in_reply_to_screen_name": "0xabad1dea", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "ro" + }, + { + "created_at": "Wed May 07 16:42:05 +0000 2014", + "id": 464082756142497792, + "id_str": "464082756142497792", + "text": "“It’s whimsical escapism. It’d make no sense to indulge our fans’ desires for an inclusivity utopia!” (URL in reply) http://t.co/yLZwkTFXSj", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 12, + "favorite_count": 2, + "favorited": false, + "retweeted": true, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed May 07 16:14:45 +0000 2014", + "id": 464075873637789696, + "id_str": "464075873637789696", + "text": "@Casiusss gold silver crystal", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 464074245610700800, + "in_reply_to_status_id_str": "464074245610700800", + "in_reply_to_user_id": 62487143, + "in_reply_to_user_id_str": "62487143", + "in_reply_to_screen_name": "Casiusss", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 07 16:14:31 +0000 2014", + "id": 464075818860158977, + "id_str": "464075818860158977", + "text": "@Tuplet and I tested, the documentation is flat out wrong about them not raising the same exceptions and they are equivalent", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 464075033107640320, + "in_reply_to_status_id_str": "464075033107640320", + "in_reply_to_user_id": 34310651, + "in_reply_to_user_id_str": "34310651", + "in_reply_to_screen_name": "Tuplet", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 07 16:13:54 +0000 2014", + "id": 464075662127415296, + "id_str": "464075662127415296", + "text": "@Tuplet I'm quoting documentation, probably whichever documentation hyperlinked me to the overload page", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 464075033107640320, + "in_reply_to_status_id_str": "464075033107640320", + "in_reply_to_user_id": 34310651, + "in_reply_to_user_id_str": "34310651", + "in_reply_to_screen_name": "Tuplet", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 07 15:52:24 +0000 2014", + "id": 464070251592687617, + "id_str": "464070251592687617", + "text": "@Talen_Lee I’m sure there will be SOME innovation, but they have a complete 3D Pokemon engine and a complete game overworld design", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464069397565292545, + "in_reply_to_status_id_str": "464069397565292545", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 07 15:50:26 +0000 2014", + "id": 464069757876981760, + "id_str": "464069757876981760", + "text": "@Talen_Lee they already have a 100% complete library of animated Pokemon models for the 3DS laying around", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464069397565292545, + "in_reply_to_status_id_str": "464069397565292545", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 07 15:48:01 +0000 2014", + "id": 464069149665136640, + "id_str": "464069149665136640", + "text": "On one hand, remakes are a cheap way to make money without innovating, on the other, legit “access for a new generation of gamers” reasons", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 07 15:44:20 +0000 2014", + "id": 464068221138513921, + "id_str": "464068221138513921", + "text": "@FioraAeterna @ValhallaSSL which comment? It’s dumping me to the top of the file", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464064564485562369, + "in_reply_to_status_id_str": "464064564485562369", + "in_reply_to_user_id": 2468699718, + "in_reply_to_user_id_str": "2468699718", + "in_reply_to_screen_name": "FioraAeterna", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 07 15:41:50 +0000 2014", + "id": 464067590541680642, + "id_str": "464067590541680642", + "text": "All the kids younger than me be excited for Pokemon ruby/sapphire remake \n\nDon’t you kids know perfection was achieved when *I* was ten", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 9, + "favorite_count": 17, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 07 15:23:22 +0000 2014", + "id": 464062945580699649, + "id_str": "464062945580699649", + "text": "Re: my question about inconsistent exceptions: the documentation is wrong, that’s all! Yaaaay", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 07 15:21:30 +0000 2014", + "id": 464062474321272833, + "id_str": "464062474321272833", + "text": "@antumbral —the answer is it grinds for 10 seconds and stack dumps with the null exception it “doesn’t throw”", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464061085440417794, + "in_reply_to_status_id_str": "464061085440417794", + "in_reply_to_user_id": 19837512, + "in_reply_to_user_id_str": "19837512", + "in_reply_to_screen_name": "antumbral", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 07 15:20:54 +0000 2014", + "id": 464062322630078464, + "id_str": "464062322630078464", + "text": "@antumbral I just pulled out visual studio and took a wild guess where code goes in http://t.co/KlaU4q5qF5 —", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464061085440417794, + "in_reply_to_status_id_str": "464061085440417794", + "in_reply_to_user_id": 19837512, + "in_reply_to_user_id_str": "19837512", + "in_reply_to_screen_name": "antumbral", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed May 07 15:16:23 +0000 2014", + "id": 464061187559137282, + "id_str": "464061187559137282", + "text": "@antumbral sorry not sniping at you", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464061085440417794, + "in_reply_to_status_id_str": "464061085440417794", + "in_reply_to_user_id": 19837512, + "in_reply_to_user_id_str": "19837512", + "in_reply_to_screen_name": "antumbral", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 07 15:15:30 +0000 2014", + "id": 464060964690604032, + "id_str": "464060964690604032", + "text": "@antumbral why bother documenting *that*!", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 464060846239252481, + "in_reply_to_status_id_str": "464060846239252481", + "in_reply_to_user_id": 19837512, + "in_reply_to_user_id_str": "19837512", + "in_reply_to_screen_name": "antumbral", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 07 15:14:40 +0000 2014", + "id": 464060753335422976, + "id_str": "464060753335422976", + "text": "@antumbral so what happens when you try to redirect to a null URL o_O", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 464060574620717056, + "in_reply_to_status_id_str": "464060574620717056", + "in_reply_to_user_id": 19837512, + "in_reply_to_user_id_str": "19837512", + "in_reply_to_screen_name": "antumbral", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 07 15:13:37 +0000 2014", + "id": 464060490025426945, + "id_str": "464060490025426945", + "text": "Uhh, is there a *reason* only one of these “equivalent” methods throws exceptions for a null argument? http://t.co/zJWuVKNw2w", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed May 07 14:56:05 +0000 2014", + "id": 464056080155152384, + "id_str": "464056080155152384", + "text": "@puellavulnerata @0xdeadbabe how to shorten any proof:\n\nThere exists a proof of X\nGo check it, it works \nTherefore X", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464055752491954179, + "in_reply_to_status_id_str": "464055752491954179", + "in_reply_to_user_id": 54666727, + "in_reply_to_user_id_str": "54666727", + "in_reply_to_screen_name": "puellavulnerata", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 07 14:47:29 +0000 2014", + "id": 464053912782135296, + "id_str": "464053912782135296", + "text": ".@baseballcrank @BenjySarlin @innismir did someone say aliens, time travelers and the supernatural?! http://t.co/UWNle0wa5r", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464053046998093825, + "in_reply_to_status_id_str": "464053046998093825", + "in_reply_to_user_id": 38021361, + "in_reply_to_user_id_str": "38021361", + "in_reply_to_screen_name": "baseballcrank", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 4, + "favorite_count": 7, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed May 07 14:28:21 +0000 2014", + "id": 464049100346753025, + "id_str": "464049100346753025", + "text": ".@puellavulnerata we should research how to optimize scam pricing, and sell the research for bitcoins.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464045764247703553, + "in_reply_to_status_id_str": "464045764247703553", + "in_reply_to_user_id": 54666727, + "in_reply_to_user_id_str": "54666727", + "in_reply_to_screen_name": "puellavulnerata", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 7, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 07 14:13:22 +0000 2014", + "id": 464045329357086720, + "id_str": "464045329357086720", + "text": ".@puellavulnerata which suggests they should set a lower “price” in the first place, one they can pay to themselves, maybe someone will bite", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464044800858013697, + "in_reply_to_status_id_str": "464044800858013697", + "in_reply_to_user_id": 54666727, + "in_reply_to_user_id_str": "54666727", + "in_reply_to_screen_name": "puellavulnerata", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 07 14:12:00 +0000 2014", + "id": 464044984287502336, + "id_str": "464044984287502336", + "text": "@puellavulnerata didn’t they want like, 20? That’s probably way more than they have to begin with", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464044800858013697, + "in_reply_to_status_id_str": "464044800858013697", + "in_reply_to_user_id": 54666727, + "in_reply_to_user_id_str": "54666727", + "in_reply_to_screen_name": "puellavulnerata", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 07 14:07:31 +0000 2014", + "id": 464043856732766209, + "id_str": "464043856732766209", + "text": "How sad, no one has yet purchased the magical OpenSSH 0day. https://t.co/r6Ns8oGsL2", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 8, + "favorite_count": 9, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed May 07 14:00:26 +0000 2014", + "id": 464042074984022016, + "id_str": "464042074984022016", + "text": "@alt_m1sp well I have no idea what your “paperwork” name currently is so you’re doing something right", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464041668384022528, + "in_reply_to_status_id_str": "464041668384022528", + "in_reply_to_user_id": 2401670173, + "in_reply_to_user_id_str": "2401670173", + "in_reply_to_screen_name": "alt_m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 07 13:47:37 +0000 2014", + "id": 464038849581051904, + "id_str": "464038849581051904", + "text": "RT @matthew_d_green: Reminder: for eight months now we've *known* that NSA inserted backdoors in popular encryption co-processors. Maybe ti…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Wed May 07 12:13:18 +0000 2014", + "id": 464015111913369600, + "id_str": "464015111913369600", + "text": "Reminder: for eight months now we've *known* that NSA inserted backdoors in popular encryption co-processors. Maybe time for some follow up?", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 106234268, + "id_str": "106234268" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 135, + "favorite_count": 75, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 135, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 07 13:37:52 +0000 2014", + "id": 464036395955150848, + "id_str": "464036395955150848", + "text": "Please stop falling for the OpenSSH hoax. It’s just an improvement on the too-obvious OpenSSL hoax from last week", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 14, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 07 13:29:39 +0000 2014", + "id": 464034328486227968, + "id_str": "464034328486227968", + "text": "RT @zhuowei: @m1sp $ ./configure\nChecking for a BSD-compatiable install...\nChecking whether build environment is sane...\nChecking your priv…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Wed May 07 08:02:24 +0000 2014", + "id": 463951970043039745, + "id_str": "463951970043039745", + "text": "@m1sp $ ./configure\nChecking for a BSD-compatiable install...\nChecking whether build environment is sane...\nChecking your privilege...", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 463951087053979648, + "in_reply_to_status_id_str": "463951087053979648", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 383083538, + "id_str": "383083538" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 9, + "favorite_count": 16, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "m1sp", + "name": "Mispy ☀", + "id": 1007638597, + "id_str": "1007638597", + "indices": [ + 0, + 5 + ] + } + ] + }, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 9, + "favorite_count": 0, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 07 13:20:15 +0000 2014", + "id": 464031960726134784, + "id_str": "464031960726134784", + "text": "@ServiceComputer yes, I just hurt my foot actually.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 464028250453184512, + "in_reply_to_status_id_str": "464028250453184512", + "in_reply_to_user_id": 20648530, + "in_reply_to_user_id_str": "20648530", + "in_reply_to_screen_name": "ServiceComputer", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 07 05:20:49 +0000 2014", + "id": 463911309780586497, + "id_str": "463911309780586497", + "text": "@Talen_Lee J*stine Tunn*y (censored to avoid search bots)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 463860261292486657, + "in_reply_to_status_id_str": "463860261292486657", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 07 05:17:08 +0000 2014", + "id": 463910381329473536, + "id_str": "463910381329473536", + "text": "@mcclure111 no idea what’s going on but I want to make a womanpage/personpage joke", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 463854072592744449, + "in_reply_to_status_id_str": "463854072592744449", + "in_reply_to_user_id": 312426579, + "in_reply_to_user_id_str": "312426579", + "in_reply_to_screen_name": "mcclure111", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 07 05:04:33 +0000 2014", + "id": 463907215175581696, + "id_str": "463907215175581696", + "text": "@q3hardcore freenode, efnet, those sorts of things, I'm not anywhere right now that I know of :)", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 463906814644338689, + "in_reply_to_status_id_str": "463906814644338689", + "in_reply_to_user_id": 361023488, + "in_reply_to_user_id_str": "361023488", + "in_reply_to_screen_name": "q3hardcore", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 07 05:01:05 +0000 2014", + "id": 463906343695679488, + "id_str": "463906343695679488", + "text": "@q3hardcore not very often these days? when I do it's as abadidea but if you run into me check with me that I'm me", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 463905772213006336, + "in_reply_to_status_id_str": "463905772213006336", + "in_reply_to_user_id": 361023488, + "in_reply_to_user_id_str": "361023488", + "in_reply_to_screen_name": "q3hardcore", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 07 04:44:57 +0000 2014", + "id": 463902283487805440, + "id_str": "463902283487805440", + "text": "Honor and a privilege to see @ThePokeBot shave another minute off its time. http://t.co/fZJ0Z88Vt8", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 8, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed May 07 04:12:53 +0000 2014", + "id": 463894212065239040, + "id_str": "463894212065239040", + "text": "@gewt @m1sp different Republicans.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 463894033106874368, + "in_reply_to_status_id_str": "463894033106874368", + "in_reply_to_user_id": 18125825, + "in_reply_to_user_id_str": "18125825", + "in_reply_to_screen_name": "gewt", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "fr" + }, + { + "created_at": "Wed May 07 04:12:23 +0000 2014", + "id": 463894083962818560, + "id_str": "463894083962818560", + "text": "@m1sp :DDD\n\nFTR I got her last name from mangling that of the biblical book of Galatians", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 463893863367598084, + "in_reply_to_status_id_str": "463893863367598084", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 07 03:26:40 +0000 2014", + "id": 463882579314081793, + "id_str": "463882579314081793", + "text": "@Kytri http://t.co/jaO8RtXk9T", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 18954686, + "in_reply_to_user_id_str": "18954686", + "in_reply_to_screen_name": "Kytri", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Wed May 07 02:53:28 +0000 2014", + "id": 463874227934740480, + "id_str": "463874227934740480", + "text": "@m1sp drug this up from, 2011 I think?, good thing I introduced the Feather Festival into my canon already. http://t.co/tLU2FCVfVw", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed May 07 01:13:22 +0000 2014", + "id": 463849034646425601, + "id_str": "463849034646425601", + "text": "@jesster_king ... you can't...", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 463848775006437376, + "in_reply_to_status_id_str": "463848775006437376", + "in_reply_to_user_id": 46763517, + "in_reply_to_user_id_str": "46763517", + "in_reply_to_screen_name": "jesster_king", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed May 07 00:54:56 +0000 2014", + "id": 463844397113552897, + "id_str": "463844397113552897", + "text": "@antumbral I'm pretty satisfied with it yeh. Probably depends a lot on your local average signal though", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 463842274472759296, + "in_reply_to_status_id_str": "463842274472759296", + "in_reply_to_user_id": 19837512, + "in_reply_to_user_id_str": "19837512", + "in_reply_to_screen_name": "antumbral", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 06 23:50:34 +0000 2014", + "id": 463828197956534272, + "id_str": "463828197956534272", + "text": "@jcran does this not scream fake to you? :)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 463827727343038464, + "in_reply_to_status_id_str": "463827727343038464", + "in_reply_to_user_id": 6300492, + "in_reply_to_user_id_str": "6300492", + "in_reply_to_screen_name": "jcran", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 06 23:41:23 +0000 2014", + "id": 463825884827226113, + "id_str": "463825884827226113", + "text": "@antumbral cost of being android, no offense.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 463817683281006593, + "in_reply_to_status_id_str": "463817683281006593", + "in_reply_to_user_id": 19837512, + "in_reply_to_user_id_str": "19837512", + "in_reply_to_screen_name": "antumbral", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 06 23:37:21 +0000 2014", + "id": 463824870732615680, + "id_str": "463824870732615680", + "text": "@eevee I think Java speed is all right on a line by line basis, the problem is the incredible aptitude for line count", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 463807657195745281, + "in_reply_to_status_id_str": "463807657195745281", + "in_reply_to_user_id": 14412937, + "in_reply_to_user_id_str": "14412937", + "in_reply_to_screen_name": "eevee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 06 23:35:53 +0000 2014", + "id": 463824502560804865, + "id_str": "463824502560804865", + "text": "RT @ThePokeBot: Many of you have asked why we don't reset automatically when the bot gets stuck. I run it down in today's patch notes http:…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue May 06 22:22:05 +0000 2014", + "id": 463805931461935104, + "id_str": "463805931461935104", + "text": "Many of you have asked why we don't reset automatically when the bot gets stuck. I run it down in today's patch notes http://t.co/feQDHMkTe5", + "source": "Twitter for Mac", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2436473940, + "id_str": "2436473940" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 4, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/feQDHMkTe5", + "expanded_url": "http://notehub.org/uz5ke", + "display_url": "notehub.org/uz5ke", + "indices": [ + 118, + 140 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 1, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue May 06 23:30:28 +0000 2014", + "id": 463823138824806402, + "id_str": "463823138824806402", + "text": "@onekade @puellavulnerata I need a finer definition of “confidence” here… confident in their capabilities yes…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 463783186732826625, + "in_reply_to_status_id_str": "463783186732826625", + "in_reply_to_user_id": 15982292, + "in_reply_to_user_id_str": "15982292", + "in_reply_to_screen_name": "onekade", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 06 23:24:15 +0000 2014", + "id": 463821576236843009, + "id_str": "463821576236843009", + "text": "@samuelpepys good gravy what did he do", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 463785227291078656, + "in_reply_to_status_id_str": "463785227291078656", + "in_reply_to_user_id": 14475268, + "in_reply_to_user_id_str": "14475268", + "in_reply_to_screen_name": "samuelpepys", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 06 23:20:56 +0000 2014", + "id": 463820739338973184, + "id_str": "463820739338973184", + "text": "@geekable didn’t you hear there’s an industry moratorium on that", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 463777775313108993, + "in_reply_to_status_id_str": "463777775313108993", + "in_reply_to_user_id": 755035, + "in_reply_to_user_id_str": "755035", + "in_reply_to_screen_name": "geekable", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 06 23:19:45 +0000 2014", + "id": 463820442965266432, + "id_str": "463820442965266432", + "text": "@chriseng that actually looks really shopped…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 463773582045085698, + "in_reply_to_status_id_str": "463773582045085698", + "in_reply_to_user_id": 13752192, + "in_reply_to_user_id_str": "13752192", + "in_reply_to_screen_name": "chriseng", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 06 23:09:24 +0000 2014", + "id": 463817839829200898, + "id_str": "463817839829200898", + "text": "@geekable I don't know of any closeted bi friends. So if I have any, they're so deep in the closet they're in Narnia", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 463817087056498688, + "in_reply_to_status_id_str": "463817087056498688", + "in_reply_to_user_id": 755035, + "in_reply_to_user_id_str": "755035", + "in_reply_to_screen_name": "geekable", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 06 22:56:25 +0000 2014", + "id": 463814571212292096, + "id_str": "463814571212292096", + "text": "@admung @marginoferror it's done it for as long as I've been watching, but it's really easy to miss. It's just a wiggle by the grass.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 463814350105350144, + "in_reply_to_status_id_str": "463814350105350144", + "in_reply_to_user_id": 701874878, + "in_reply_to_user_id_str": "701874878", + "in_reply_to_screen_name": "admung", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 06 22:52:15 +0000 2014", + "id": 463813520430075905, + "id_str": "463813520430075905", + "text": "@admung @marginoferror (a bot COULD read the random bytes, but, no-one really wants to see a bot that just reads invisible magic RAM values)", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 463813045056061440, + "in_reply_to_status_id_str": "463813045056061440", + "in_reply_to_user_id": 701874878, + "in_reply_to_user_id_str": "701874878", + "in_reply_to_screen_name": "admung", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 06 22:51:42 +0000 2014", + "id": 463813384274595840, + "id_str": "463813384274595840", + "text": "@admung @marginoferror the bot only uses Dsum Manipulation in the same way a human can. It doesn't read the random bytes.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 463813045056061440, + "in_reply_to_status_id_str": "463813045056061440", + "in_reply_to_user_id": 701874878, + "in_reply_to_user_id_str": "701874878", + "in_reply_to_screen_name": "admung", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 06 22:41:35 +0000 2014", + "id": 463810835618332672, + "id_str": "463810835618332672", + "text": "I actually find it hilarious that the bot's times are constrained primarily not by any trainer or any dungeon, but by those !@#$ trashcans", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 06 22:34:37 +0000 2014", + "id": 463809085083623424, + "id_str": "463809085083623424", + "text": "@tobypinder bingo", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 463809019459538946, + "in_reply_to_status_id_str": "463809019459538946", + "in_reply_to_user_id": 18698940, + "in_reply_to_user_id_str": "18698940", + "in_reply_to_screen_name": "tobypinder", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "es" + }, + { + "created_at": "Tue May 06 22:32:45 +0000 2014", + "id": 463808613102809088, + "id_str": "463808613102809088", + "text": "@zhuowei CONSTANT VIGILANCE", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 463808448472174594, + "in_reply_to_status_id_str": "463808448472174594", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "fr" + }, + { + "created_at": "Tue May 06 22:31:28 +0000 2014", + "id": 463808291940732928, + "id_str": "463808291940732928", + "text": "If the sentence \"we had some terrible trashcans this time\" makes any sense to you, take a step back from pokemon speedrunning immediately", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 8, + "favorite_count": 18, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 06 21:55:40 +0000 2014", + "id": 463799281879502848, + "id_str": "463799281879502848", + "text": "@zhuowei I haven't edited the online version.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 463799122143625216, + "in_reply_to_status_id_str": "463799122143625216", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 06 21:29:56 +0000 2014", + "id": 463792805597310976, + "id_str": "463792805597310976", + "text": "@MURITOCRACY oh, I am familiar, but at least I can follow a sensible train of thought over how they reach those feelings", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 463792399018254336, + "in_reply_to_status_id_str": "463792399018254336", + "in_reply_to_user_id": 2245914654, + "in_reply_to_user_id_str": "2245914654", + "in_reply_to_screen_name": "MURITOCRACY", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 06 21:16:15 +0000 2014", + "id": 463789363470417921, + "id_str": "463789363470417921", + "text": "@smeerp abadidea sails away in an arc", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 463789056568991744, + "in_reply_to_status_id_str": "463789056568991744", + "in_reply_to_user_id": 546573709, + "in_reply_to_user_id_str": "546573709", + "in_reply_to_screen_name": "smeerp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 06 21:11:56 +0000 2014", + "id": 463788277460262913, + "id_str": "463788277460262913", + "text": ".@winocm please secure revenge on Lenovo ThinkPad E531", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 463787902367846403, + "in_reply_to_status_id_str": "463787902367846403", + "in_reply_to_user_id": 428413732, + "in_reply_to_user_id_str": "428413732", + "in_reply_to_screen_name": "winocm", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "sl" + }, + { + "created_at": "Tue May 06 21:10:02 +0000 2014", + "id": 463787800140070912, + "id_str": "463787800140070912", + "text": "@puellavulnerata I'm, uh, not ready for this level of commitment", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 463787637560451077, + "in_reply_to_status_id_str": "463787637560451077", + "in_reply_to_user_id": 54666727, + "in_reply_to_user_id_str": "54666727", + "in_reply_to_screen_name": "puellavulnerata", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 06 21:08:55 +0000 2014", + "id": 463787517330722817, + "id_str": "463787517330722817", + "text": "RIP abadidea, tripped over a laptop power cord, fell into the desk chair, and her forehead hit the keyboard to spell this out", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 9, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 06 20:42:01 +0000 2014", + "id": 463780746608803840, + "id_str": "463780746608803840", + "text": "@a2 don't kill my poor innocent joke.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 463780572976779264, + "in_reply_to_status_id_str": "463780572976779264", + "in_reply_to_user_id": 19876236, + "in_reply_to_user_id_str": "19876236", + "in_reply_to_screen_name": "a2", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 06 20:38:47 +0000 2014", + "id": 463779933144481792, + "id_str": "463779933144481792", + "text": "A serious problem, unaddressed in our community, is bi erasure in drive-by hate speech http://t.co/DpwxSj7o6B", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 8, + "favorite_count": 25, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue May 06 19:50:39 +0000 2014", + "id": 463767822565642240, + "id_str": "463767822565642240", + "text": "@Xaosopher @m1sp Dr. @thegrugq was complaining that his simulacrum was funnier than he is. But at least he gets to provide sample data!", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 463767322734243840, + "in_reply_to_status_id_str": "463767322734243840", + "in_reply_to_user_id": 68878049, + "in_reply_to_user_id_str": "68878049", + "in_reply_to_screen_name": "Xaosopher", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 06 19:37:30 +0000 2014", + "id": 463764509300371457, + "id_str": "463764509300371457", + "text": "@encthenet I am aware. But I was far from the only person who had read it.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 463763934705893376, + "in_reply_to_status_id_str": "463763934705893376", + "in_reply_to_user_id": 1972539134, + "in_reply_to_user_id_str": "1972539134", + "in_reply_to_screen_name": "encthenet", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 06 18:49:09 +0000 2014", + "id": 463752343335366656, + "id_str": "463752343335366656", + "text": ".@Shuddertrix I confess, I just want everyone to know I’m so cultured I own a Recettear shirt", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 463751875565989888, + "in_reply_to_status_id_str": "463751875565989888", + "in_reply_to_user_id": 15731407, + "in_reply_to_user_id_str": "15731407", + "in_reply_to_screen_name": "Shuddertrix", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 10, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 06 18:46:40 +0000 2014", + "id": 463751718833258496, + "id_str": "463751718833258496", + "text": "Gratuitous Selfie, “Home Sick, Same Shirt I Wore Yesterday,” front camera on raster plane, 2014 http://t.co/FXoQbfonwb", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 9, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue May 06 18:18:53 +0000 2014", + "id": 463744725741486080, + "id_str": "463744725741486080", + "text": "@zauspar it isn’t per se, but the “THIS batch of source code looks good” thing is as close to solved as this problem gets", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 463744046020964352, + "in_reply_to_status_id_str": "463744046020964352", + "in_reply_to_user_id": 216571343, + "in_reply_to_user_id_str": "216571343", + "in_reply_to_screen_name": "zauspar", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 06 18:14:06 +0000 2014", + "id": 463743524198817794, + "id_str": "463743524198817794", + "text": "Eve scams and bitcoin http://t.co/iMP1VIUWIJ (Disclaimer: they kind of just ignore the cryptographic proof aspect)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue May 06 17:45:45 +0000 2014", + "id": 463736386588528640, + "id_str": "463736386588528640", + "text": "@alt_m1sp 😊", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 463736058467725313, + "in_reply_to_status_id_str": "463736058467725313", + "in_reply_to_user_id": 2401670173, + "in_reply_to_user_id_str": "2401670173", + "in_reply_to_screen_name": "alt_m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Tue May 06 17:39:56 +0000 2014", + "id": 463734926739636224, + "id_str": "463734926739636224", + "text": "@billpollock @thegrugq @winocm @0x56 eviller. 😈", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 463734603044229120, + "in_reply_to_status_id_str": "463734603044229120", + "in_reply_to_user_id": 13844972, + "in_reply_to_user_id_str": "13844972", + "in_reply_to_screen_name": "billpollock", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "tr" + }, + { + "created_at": "Tue May 06 17:38:04 +0000 2014", + "id": 463734456957014016, + "id_str": "463734456957014016", + "text": "@Raed667 this weird course that was mandatory for 13 years straight called “mathematics”", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 463734216967327744, + "in_reply_to_status_id_str": "463734216967327744", + "in_reply_to_user_id": 229803979, + "in_reply_to_user_id_str": "229803979", + "in_reply_to_screen_name": "Raed667", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 06 17:35:53 +0000 2014", + "id": 463733906202955776, + "id_str": "463733906202955776", + "text": "When I was in school I drew alligator teeth and googly eyes on < and > signs. All of them.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 18, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 06 17:32:47 +0000 2014", + "id": 463733123499307008, + "id_str": "463733123499307008", + "text": "@alt_m1sp what is this human emotion you call optimism", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 463732568534183936, + "in_reply_to_status_id_str": "463732568534183936", + "in_reply_to_user_id": 2401670173, + "in_reply_to_user_id_str": "2401670173", + "in_reply_to_screen_name": "alt_m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 06 17:16:50 +0000 2014", + "id": 463729112469606400, + "id_str": "463729112469606400", + "text": "RT @thomas_violence: i like my government like i like my ghosts: transparent, friendly and dedicated to staying out of my bedroom", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue May 06 04:12:23 +0000 2014", + "id": 463531699536556032, + "id_str": "463531699536556032", + "text": "i like my government like i like my ghosts: transparent, friendly and dedicated to staying out of my bedroom", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 62208940, + "id_str": "62208940" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 177, + "favorite_count": 202, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 177, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 06 17:14:28 +0000 2014", + "id": 463728515373101057, + "id_str": "463728515373101057", + "text": "> when you find a typo in your book you missed the last four times you checked 😨", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 06 17:01:20 +0000 2014", + "id": 463725210349633536, + "id_str": "463725210349633536", + "text": "@iaminigomontoya sorry @jlwfnord has a quicker draw", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 463724944254181377, + "in_reply_to_status_id_str": "463724944254181377", + "in_reply_to_user_id": 82237859, + "in_reply_to_user_id_str": "82237859", + "in_reply_to_screen_name": "iaminigomontoya", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 06 16:58:20 +0000 2014", + "id": 463724457048031233, + "id_str": "463724457048031233", + "text": "@chriseng inconceivable!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 463724359295975424, + "in_reply_to_status_id_str": "463724359295975424", + "in_reply_to_user_id": 13752192, + "in_reply_to_user_id_str": "13752192", + "in_reply_to_screen_name": "chriseng", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 06 16:56:16 +0000 2014", + "id": 463723935498919936, + "id_str": "463723935498919936", + "text": "My honey bunny BFF’s codebase is going to be the downfall of humanity. The Age of Bots is upon us. I’m… I’m so proud", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 15, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 06 16:54:46 +0000 2014", + "id": 463723557671817216, + "id_str": "463723557671817216", + "text": "RT @opsec_ebooks: OpenSSL — there is no known cure.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue May 06 11:21:45 +0000 2014", + "id": 463639753292652544, + "id_str": "463639753292652544", + "text": "OpenSSL — there is no known cure.", + "source": "opsec_ebooks", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2478060493, + "id_str": "2478060493" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 19, + "favorite_count": 13, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 19, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 06 16:47:54 +0000 2014", + "id": 463721830184804352, + "id_str": "463721830184804352", + "text": "@Ninjifox I went *looking* for that feature in the web interface the other day and couldn’t find it", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 463719988940255233, + "in_reply_to_status_id_str": "463719988940255233", + "in_reply_to_user_id": 119217218, + "in_reply_to_user_id_str": "119217218", + "in_reply_to_screen_name": "Ninji_Folf", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 06 16:45:53 +0000 2014", + "id": 463721323370262528, + "id_str": "463721323370262528", + "text": "@papierhache @zauspar oh bless.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 463716503259320320, + "in_reply_to_status_id_str": "463716503259320320", + "in_reply_to_user_id": 616942788, + "in_reply_to_user_id_str": "616942788", + "in_reply_to_screen_name": "papierhache", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 06 16:31:31 +0000 2014", + "id": 463717707343736833, + "id_str": "463717707343736833", + "text": "RT @halvarflake: The person responsible for the \"no unsigned types\" religion in Java is among the very few people whose faces I would enjoy…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue May 06 14:49:04 +0000 2014", + "id": 463691926009806848, + "id_str": "463691926009806848", + "text": "The person responsible for the \"no unsigned types\" religion in Java is among the very few people whose faces I would enjoy punching.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 15276283, + "id_str": "15276283" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 51, + "favorite_count": 42, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 51, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 06 16:31:13 +0000 2014", + "id": 463717630604349442, + "id_str": "463717630604349442", + "text": "RT @TinyPirate: \"My dwarf can't start a fistfight because he has no hands\" #dwarffortress is amazing http://t.co/QpuGL5x0qF", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue May 06 12:45:31 +0000 2014", + "id": 463660830974689283, + "id_str": "463660830974689283", + "text": "\"My dwarf can't start a fistfight because he has no hands\" #dwarffortress is amazing http://t.co/QpuGL5x0qF", + "source": "iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 21288050, + "id_str": "21288050" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 10, + "favorite_count": 2, + "entities": { + "hashtags": [ + { + "text": "dwarffortress", + "indices": [ + 59, + 73 + ] + } + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/QpuGL5x0qF", + "expanded_url": "http://www.reddit.com/r/dwarffortress/comments/24sk31/my_dwarf_cant_start_a_fistfight_because_he_has_no/", + "display_url": "reddit.com/r/dwarffortres…", + "indices": [ + 85, + 107 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 10, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue May 06 16:30:21 +0000 2014", + "id": 463717414723923968, + "id_str": "463717414723923968", + "text": "@aspects_ebooks I’m not even sure how many distinct sentences that’s from", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 463717044853407744, + "in_reply_to_status_id_str": "463717044853407744", + "in_reply_to_user_id": 2345404375, + "in_reply_to_user_id_str": "2345404375", + "in_reply_to_screen_name": "aspects_ebooks", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 06 16:28:42 +0000 2014", + "id": 463716998778982401, + "id_str": "463716998778982401", + "text": "@aspects_ebooks … 😱", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 463691403412119552, + "in_reply_to_status_id_str": "463691403412119552", + "in_reply_to_user_id": 2345404375, + "in_reply_to_user_id_str": "2345404375", + "in_reply_to_screen_name": "aspects_ebooks", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Tue May 06 16:27:58 +0000 2014", + "id": 463716812384129024, + "id_str": "463716812384129024", + "text": "RT @nostarch: Take 50% off all ebooks today to celebrate Day Against DRM. http://t.co/U2G5jcbBuQ Use code RIGHT2READ", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue May 06 14:27:39 +0000 2014", + "id": 463686534638895105, + "id_str": "463686534638895105", + "text": "Take 50% off all ebooks today to celebrate Day Against DRM. http://t.co/U2G5jcbBuQ Use code RIGHT2READ", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 17972387, + "id_str": "17972387" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 94, + "favorite_count": 20, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/U2G5jcbBuQ", + "expanded_url": "http://nostarch.com", + "display_url": "nostarch.com", + "indices": [ + 60, + 82 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 94, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue May 06 16:22:13 +0000 2014", + "id": 463715367173365760, + "id_str": "463715367173365760", + "text": "@Tuplet independent of computing limitations, consider things like western mathematical notation too.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 463713614231113728, + "in_reply_to_status_id_str": "463713614231113728", + "in_reply_to_user_id": 34310651, + "in_reply_to_user_id_str": "34310651", + "in_reply_to_screen_name": "Tuplet", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 06 16:21:31 +0000 2014", + "id": 463715189943042048, + "id_str": "463715189943042048", + "text": "@Tuplet LTR horizontal being common began post-WWII (same era as early computing) as they became more interlinked with the west", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 463713614231113728, + "in_reply_to_status_id_str": "463713614231113728", + "in_reply_to_user_id": 34310651, + "in_reply_to_user_id_str": "34310651", + "in_reply_to_screen_name": "Tuplet", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 06 16:10:11 +0000 2014", + "id": 463712340496908288, + "id_str": "463712340496908288", + "text": "@Xaosopher so typical of fickle kohai", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 463653087912013824, + "in_reply_to_status_id_str": "463653087912013824", + "in_reply_to_user_id": 68878049, + "in_reply_to_user_id_str": "68878049", + "in_reply_to_screen_name": "Xaosopher", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 06 15:57:07 +0000 2014", + "id": 463709050954608643, + "id_str": "463709050954608643", + "text": "@neoemonk as a hobbyist on IRC (which coincidentally is where most of the misogyny is…)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 463708769474842625, + "in_reply_to_status_id_str": "463708769474842625", + "in_reply_to_user_id": 186772185, + "in_reply_to_user_id_str": "186772185", + "in_reply_to_screen_name": "neoemonk", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 06 15:52:19 +0000 2014", + "id": 463707841832820736, + "id_str": "463707841832820736", + "text": "@antumbral @m1sp she’s extraordinarily difficult to kill, but she doesn’t actually know that (yet?)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 463707322749943808, + "in_reply_to_status_id_str": "463707322749943808", + "in_reply_to_user_id": 19837512, + "in_reply_to_user_id_str": "19837512", + "in_reply_to_screen_name": "antumbral", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 06 15:48:59 +0000 2014", + "id": 463707002490093568, + "id_str": "463707002490093568", + "text": "@m1sp she’s evacuating the Republic before anyone else finds out she’s an artifice. Because there’s someone new to think of now :)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 463689689082241024, + "in_reply_to_status_id_str": "463689689082241024", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 06 15:44:16 +0000 2014", + "id": 463705815149326338, + "id_str": "463705815149326338", + "text": "@Tuplet um… I think you may have cause and effect reversed :)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 463625083572207617, + "in_reply_to_status_id_str": "463625083572207617", + "in_reply_to_user_id": 34310651, + "in_reply_to_user_id_str": "34310651", + "in_reply_to_screen_name": "Tuplet", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 06 06:28:47 +0000 2014", + "id": 463566023820468224, + "id_str": "463566023820468224", + "text": "@FredrikSvanberg @Talen_Lee must resist OS war trolling\n\nIt’s a crown", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 463564477263523840, + "in_reply_to_status_id_str": "463564477263523840", + "in_reply_to_user_id": 138684458, + "in_reply_to_user_id_str": "138684458", + "in_reply_to_screen_name": "FredrikSvanberg", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 06 06:06:43 +0000 2014", + "id": 463560469731491840, + "id_str": "463560469731491840", + "text": "@Talen_Lee 👑", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 463559508883562497, + "in_reply_to_status_id_str": "463559508883562497", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Tue May 06 05:15:40 +0000 2014", + "id": 463547623194894336, + "id_str": "463547623194894336", + "text": "@aspects_ebooks The question was “who dies horribly near the end and deserves it”", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 463532846473543681, + "in_reply_to_status_id_str": "463532846473543681", + "in_reply_to_user_id": 2345404375, + "in_reply_to_user_id_str": "2345404375", + "in_reply_to_screen_name": "aspects_ebooks", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 06 03:54:39 +0000 2014", + "id": 463527235823992832, + "id_str": "463527235823992832", + "text": "@Talen_Lee it’s an A/B poem btw. The second line is resplendent in the sky.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 463526485504954369, + "in_reply_to_status_id_str": "463526485504954369", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 06 03:53:31 +0000 2014", + "id": 463526951144005632, + "id_str": "463526951144005632", + "text": "@zhuowei @Talen_Lee it’s tear the world asunder actually", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 463526734483058688, + "in_reply_to_status_id_str": "463526734483058688", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 06 03:50:02 +0000 2014", + "id": 463526074807504896, + "id_str": "463526074807504896", + "text": "@zhuowei ah, yeah, I just mean he kinda inherits Nhang as his sidekick", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 463525857651220480, + "in_reply_to_status_id_str": "463525857651220480", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 06 03:44:35 +0000 2014", + "id": 463524700690591744, + "id_str": "463524700690591744", + "text": "Attempting to fix sickness in the only way humans know how: an eight-hour shutdown and reboot process", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 15, + "favorite_count": 31, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 06 03:38:38 +0000 2014", + "id": 463523206033207296, + "id_str": "463523206033207296", + "text": "@aspects_ebooks oddly prescient", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 463510196552470528, + "in_reply_to_status_id_str": "463510196552470528", + "in_reply_to_user_id": 2345404375, + "in_reply_to_user_id_str": "2345404375", + "in_reply_to_screen_name": "aspects_ebooks", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 06 03:36:24 +0000 2014", + "id": 463522643359309824, + "id_str": "463522643359309824", + "text": "@ghostqueer http://t.co/dOOQeW6nLD\n\nThis joke is hilarious if you speak Dutch, trust me!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 463504384005914624, + "in_reply_to_status_id_str": "463504384005914624", + "in_reply_to_user_id": 2337742344, + "in_reply_to_user_id_str": "2337742344", + "in_reply_to_screen_name": "ghostqueer", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue May 06 03:30:50 +0000 2014", + "id": 463521240045469696, + "id_str": "463521240045469696", + "text": "@zhuowei “once”?\n\nBut mine is pure asm.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 463521084604555266, + "in_reply_to_status_id_str": "463521084604555266", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 06 03:28:51 +0000 2014", + "id": 463520741716025346, + "id_str": "463520741716025346", + "text": "I’m sick. I was also just exposed to a custom language parser in C tied to a CGI handler in C. Coincidence??", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 5, + "favorite_count": 16, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 06 03:26:51 +0000 2014", + "id": 463520237808140289, + "id_str": "463520237808140289", + "text": "@alt_kyasarin I hope this doesn’t sound trite: \n\nSeventeenishness, especially as affects an intelligent person.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 463493879979724800, + "in_reply_to_status_id_str": "463493879979724800", + "in_reply_to_user_id": 2399004906, + "in_reply_to_user_id_str": "2399004906", + "in_reply_to_screen_name": "alt_kyasarin", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 06 03:14:02 +0000 2014", + "id": 463517015727415296, + "id_str": "463517015727415296", + "text": "@kaepora I HAVE NO IDEA WHAT YOU MEAN. PERNICIOUS YOU SAY??", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 463478653910007809, + "in_reply_to_status_id_str": "463478653910007809", + "in_reply_to_user_id": 11728992, + "in_reply_to_user_id_str": "11728992", + "in_reply_to_screen_name": "kaepora", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 06 03:08:59 +0000 2014", + "id": 463515741430767616, + "id_str": "463515741430767616", + "text": "@abby_ebooks @vogon no doxing and NO giving away children", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 463471476944171008, + "in_reply_to_status_id_str": "463471476944171008", + "in_reply_to_user_id": 789336668, + "in_reply_to_user_id_str": "789336668", + "in_reply_to_screen_name": "abby_ebooks", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 06 02:27:45 +0000 2014", + "id": 463505365905465345, + "id_str": "463505365905465345", + "text": "@zhuowei oh this is for Corporate. Some stranger's code.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 06 02:17:37 +0000 2014", + "id": 463502816888520704, + "id_str": "463502816888520704", + "text": "@rantyben sure, let's swap", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 463502750773293056, + "in_reply_to_status_id_str": "463502750773293056", + "in_reply_to_user_id": 977910404, + "in_reply_to_user_id_str": "977910404", + "in_reply_to_screen_name": "rantyben", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 06 02:17:04 +0000 2014", + "id": 463502676505133056, + "id_str": "463502676505133056", + "text": "@rantyben my deadline's in an hour and forty five minutes, when's yours?", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 463502523148410880, + "in_reply_to_status_id_str": "463502523148410880", + "in_reply_to_user_id": 977910404, + "in_reply_to_user_id_str": "977910404", + "in_reply_to_screen_name": "rantyben", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 06 02:14:45 +0000 2014", + "id": 463502093081640960, + "id_str": "463502093081640960", + "text": "neck-deep in a file called \"bison.simple\" (such lies) is not where I wanted this night to end", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 10, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 06 01:57:06 +0000 2014", + "id": 463497651242029058, + "id_str": "463497651242029058", + "text": "@angelXwind S UX for short", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 463497458535124992, + "in_reply_to_status_id_str": "463497458535124992", + "in_reply_to_user_id": 184226976, + "in_reply_to_user_id_str": "184226976", + "in_reply_to_screen_name": "angelXwind", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 5, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 06 01:55:03 +0000 2014", + "id": 463497138434240512, + "id_str": "463497138434240512", + "text": "Naming conventions protip: don't append \"UX\" (for \"user experience\" or similar) to any typical English plural word.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 6, + "favorite_count": 8, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 06 01:40:12 +0000 2014", + "id": 463493401195737088, + "id_str": "463493401195737088", + "text": "@zhuowei @m1sp ahh good point", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 463493312016441344, + "in_reply_to_status_id_str": "463493312016441344", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 06 01:37:45 +0000 2014", + "id": 463492785220235264, + "id_str": "463492785220235264", + "text": "@m1sp I totally have not read this but I hope I *FINALLY* have something decent for this https://t.co/qUr4Bir52y", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue May 06 01:09:15 +0000 2014", + "id": 463485609433001984, + "id_str": "463485609433001984", + "text": "@neoemonk thanks ^^; but there's just as much \"years of study\" as anything native to me", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 463483110471249920, + "in_reply_to_status_id_str": "463483110471249920", + "in_reply_to_user_id": 186772185, + "in_reply_to_user_id_str": "186772185", + "in_reply_to_screen_name": "neoemonk", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 06 00:55:12 +0000 2014", + "id": 463482076747276288, + "id_str": "463482076747276288", + "text": "@zhuowei @antumbral @m1sp if we removed everything from Twitter that embarrassed Mispy...! :p", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 463481973999030272, + "in_reply_to_status_id_str": "463481973999030272", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 06 00:53:53 +0000 2014", + "id": 463481742079569920, + "id_str": "463481742079569920", + "text": "@zhuowei @antumbral @m1sp okay that makes the hat look like a beard and\n\nand", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 463481601897148416, + "in_reply_to_status_id_str": "463481601897148416", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 06 00:46:54 +0000 2014", + "id": 463479985366237184, + "id_str": "463479985366237184", + "text": "@zhuowei @m1sp Solornel is of no distinguished background. (Tsovinar also though technically she doesn't know for *sure*.)", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 463478956738367488, + "in_reply_to_status_id_str": "463478956738367488", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 06 00:41:59 +0000 2014", + "id": 463478747543252992, + "id_str": "463478747543252992", + "text": "@zhuowei @m1sp @TakoArishi artifices like Erasmin are very explicitly illegal in the Republic to begin with. (Sssh don't out her.)", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 463478315169222656, + "in_reply_to_status_id_str": "463478315169222656", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 06 00:41:21 +0000 2014", + "id": 463478588377808896, + "id_str": "463478588377808896", + "text": "@antumbral @m1sp @zhuowei tankini is the best I can do http://t.co/5j6LrYx60u", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 463477928215339008, + "in_reply_to_status_id_str": "463477928215339008", + "in_reply_to_user_id": 19837512, + "in_reply_to_user_id_str": "19837512", + "in_reply_to_screen_name": "antumbral", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 5, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue May 06 00:37:38 +0000 2014", + "id": 463477653421322240, + "id_str": "463477653421322240", + "text": "@zhuowei @m1sp @TakoArishi you sell yourself into artificeship before you die to provide for your family. Capitalism!", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 463477415373582337, + "in_reply_to_status_id_str": "463477415373582337", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 06 00:34:13 +0000 2014", + "id": 463476794667307008, + "id_str": "463476794667307008", + "text": "@zhuowei @m1sp tentative character design (I assume she does not ALWAYS dress like that) http://t.co/FiKgi9lFIR", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 463473840555692033, + "in_reply_to_status_id_str": "463473840555692033", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue May 06 00:29:37 +0000 2014", + "id": 463475638679375873, + "id_str": "463475638679375873", + "text": "@TakoArishi \\o/ I hope it is tragic enough", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 463475460651753472, + "in_reply_to_status_id_str": "463475460651753472", + "in_reply_to_user_id": 22107482, + "in_reply_to_user_id_str": "22107482", + "in_reply_to_screen_name": "TakoArishi", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 06 00:27:06 +0000 2014", + "id": 463475005670850561, + "id_str": "463475005670850561", + "text": "@m1sp @TakoArishi @zhuowei there's a guild in the Republic for Republicans, as it's highly regulated there.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 463474873885392896, + "in_reply_to_status_id_str": "463474873885392896", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 06 00:24:32 +0000 2014", + "id": 463474359324393472, + "id_str": "463474359324393472", + "text": "@zhuowei \\o/ ding ding. I get a lot of mileage out of nephews and nieces and cousins, don't I? / @m1sp", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 463473840555692033, + "in_reply_to_status_id_str": "463473840555692033", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 06 00:21:42 +0000 2014", + "id": 463473646116167680, + "id_str": "463473646116167680", + "text": "@zhuowei @m1sp since it *is* magic there'll still be a fair amount of hand-waving you know :p unless you have a textbook on soul mechanics", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 463473452435775488, + "in_reply_to_status_id_str": "463473452435775488", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 06 00:17:11 +0000 2014", + "id": 463472506792599552, + "id_str": "463472506792599552", + "text": "@m1sp @zhuowei definitely not writing with \"in the dark of the night\" on loop no no why would you think that", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 463471983653429249, + "in_reply_to_status_id_str": "463471983653429249", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 06 00:16:54 +0000 2014", + "id": 463472437125201920, + "id_str": "463472437125201920", + "text": "@m1sp @zhuowei ah but serious I think I will show it \"for real\" in Paironiel's Arc and make it as evil-feeling as possible", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 463471983653429249, + "in_reply_to_status_id_str": "463471983653429249", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 06 00:15:53 +0000 2014", + "id": 463472182325030912, + "id_str": "463472182325030912", + "text": "@m1sp @zhuowei artificer trade secret. Need to pay your guild membership fees", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 463471983653429249, + "in_reply_to_status_id_str": "463471983653429249", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue May 06 00:10:14 +0000 2014", + "id": 463470758606274560, + "id_str": "463470758606274560", + "text": "@zhuowei btw did you find the Murder That's Glossed Over :p", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 05 23:47:19 +0000 2014", + "id": 463464993057689600, + "id_str": "463464993057689600", + "text": "@landley I'm *moderately* famous by twitter standards; so yeah, anyone Famous Famous just can't actually use twitter", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 463462412478599169, + "in_reply_to_status_id_str": "463462412478599169", + "in_reply_to_user_id": 14326287, + "in_reply_to_user_id_str": "14326287", + "in_reply_to_screen_name": "landley", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 05 22:55:47 +0000 2014", + "id": 463452022520700929, + "id_str": "463452022520700929", + "text": "@mralext20 @Talen_Lee FULL DISCLOSURE OR GO HOME", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 463451908485574656, + "in_reply_to_status_id_str": "463451908485574656", + "in_reply_to_user_id": 905041434, + "in_reply_to_user_id_str": "905041434", + "in_reply_to_screen_name": "mralext20", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 05 22:54:44 +0000 2014", + "id": 463451758706950145, + "id_str": "463451758706950145", + "text": "SEE LOOK http://t.co/xeRDK3zCEz", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 6, + "favorite_count": 16, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon May 05 22:53:41 +0000 2014", + "id": 463451494248099840, + "id_str": "463451494248099840", + "text": "I don't like this new Twitter Web thing where it pops up DMs over the main page with no interaction. Embarrassment waiting to happen", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 5, + "favorite_count": 6, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 05 22:20:52 +0000 2014", + "id": 463443234635530240, + "id_str": "463443234635530240", + "text": "@_wirepair @rantyben @chriseng I FEEL LIKE I MISSED SOMETHING", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 463443028058058752, + "in_reply_to_status_id_str": "463443028058058752", + "in_reply_to_user_id": 253384212, + "in_reply_to_user_id_str": "253384212", + "in_reply_to_screen_name": "_wirepair", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 05 22:20:35 +0000 2014", + "id": 463443162787086336, + "id_str": "463443162787086336", + "text": "@mister_borogove ah gotcha 👍", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 463442988991913984, + "in_reply_to_status_id_str": "463442988991913984", + "in_reply_to_user_id": 16798412, + "in_reply_to_user_id_str": "16798412", + "in_reply_to_screen_name": "mister_borogove", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "in" + }, + { + "created_at": "Mon May 05 22:16:21 +0000 2014", + "id": 463442098667003905, + "id_str": "463442098667003905", + "text": "@rantyben @_wirepair I'm going to go with... yes.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 463441651914919937, + "in_reply_to_status_id_str": "463441651914919937", + "in_reply_to_user_id": 977910404, + "in_reply_to_user_id_str": "977910404", + "in_reply_to_screen_name": "rantyben", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 05 22:15:25 +0000 2014", + "id": 463441865678028800, + "id_str": "463441865678028800", + "text": "@blueg3 @mister_borogove not to imply there aren't in fact people who have been putting in the work to make this Just Work", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 463441463851106304, + "in_reply_to_status_id_str": "463441463851106304", + "in_reply_to_user_id": 14859830, + "in_reply_to_user_id_str": "14859830", + "in_reply_to_screen_name": "blueg3", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 05 22:13:11 +0000 2014", + "id": 463441303527645185, + "id_str": "463441303527645185", + "text": "@_wirepair I woulda said hi but you were in the middle of talking to someone", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 463440885720809472, + "in_reply_to_status_id_str": "463440885720809472", + "in_reply_to_user_id": 253384212, + "in_reply_to_user_id_str": "253384212", + "in_reply_to_screen_name": "_wirepair", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 05 22:12:20 +0000 2014", + "id": 463441089685233664, + "id_str": "463441089685233664", + "text": "@JohnRHeaton it's been sealed like that, but the headaches are always coincident with the smell of tobacco smoke.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 463440906432290816, + "in_reply_to_status_id_str": "463440906432290816", + "in_reply_to_user_id": 21025644, + "in_reply_to_user_id_str": "21025644", + "in_reply_to_screen_name": "JohnRHeaton", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 05 22:11:08 +0000 2014", + "id": 463440786990694400, + "id_str": "463440786990694400", + "text": "@_wirepair btw was I hallucinating you in the office today??", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 463440591649775617, + "in_reply_to_status_id_str": "463440591649775617", + "in_reply_to_user_id": 253384212, + "in_reply_to_user_id_str": "253384212", + "in_reply_to_screen_name": "_wirepair", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 05 22:09:09 +0000 2014", + "id": 463440288581947392, + "id_str": "463440288581947392", + "text": "@tgouverneur @sxpert1 @miaubiz I figured, from how it was all equals signs, but really that's kinda pathetic, only so many edge cases", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 463439606076432384, + "in_reply_to_status_id_str": "463439606076432384", + "in_reply_to_user_id": 42930831, + "in_reply_to_user_id_str": "42930831", + "in_reply_to_screen_name": "tgouverneur", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 05 22:09:09 +0000 2014", + "id": 463440288581947392, + "id_str": "463440288581947392", + "text": "@tgouverneur @sxpert1 @miaubiz I figured, from how it was all equals signs, but really that's kinda pathetic, only so many edge cases", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 463439606076432384, + "in_reply_to_status_id_str": "463439606076432384", + "in_reply_to_user_id": 42930831, + "in_reply_to_user_id_str": "42930831", + "in_reply_to_screen_name": "tgouverneur", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 05 22:08:38 +0000 2014", + "id": 463440159204077569, + "id_str": "463440159204077569", + "text": "Windows shut. Plastic tarp over the air conditioner. Still get a massive headache when someone smokes outside. #rage", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 05 22:05:16 +0000 2014", + "id": 463439309966544896, + "id_str": "463439309966544896", + "text": "Adding \"Harry Potter apologist\" to the list of reasons I might be detained in an airport", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 12, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 05 22:04:00 +0000 2014", + "id": 463438992721989632, + "id_str": "463438992721989632", + "text": "RT @boltcity: It was Harry Potter he hated. Said it ruined fantasy. He also told me about his many long boxes of comics. Other security jus…", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Mon May 05 21:44:21 +0000 2014", + "id": 463434045880160256, + "id_str": "463434045880160256", + "text": "It was Harry Potter he hated. Said it ruined fantasy. He also told me about his many long boxes of comics. Other security just let me thru.", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 47841677, + "id_str": "47841677" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 46, + "favorite_count": 41, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 46, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 05 21:56:29 +0000 2014", + "id": 463437099182874624, + "id_str": "463437099182874624", + "text": "@mister_borogove whether or not it \"works on one's machine\" is still pretty arbitrary and subject to surprises", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 463436523870760960, + "in_reply_to_status_id_str": "463436523870760960", + "in_reply_to_user_id": 16798412, + "in_reply_to_user_id_str": "16798412", + "in_reply_to_screen_name": "mister_borogove", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 05 21:46:14 +0000 2014", + "id": 463434521581334528, + "id_str": "463434521581334528", + "text": "@KristinPaget this looks like a more sophisticated second attempt at the Obvious Scam from last week.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 463433671823745024, + "in_reply_to_status_id_str": "463433671823745024", + "in_reply_to_user_id": 19363078, + "in_reply_to_user_id_str": "19363078", + "in_reply_to_screen_name": "KristinPaget", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 05 21:42:09 +0000 2014", + "id": 463433494518329345, + "id_str": "463433494518329345", + "text": "@kelseyinnis oh! Apparently said @ra follows me. Hello o/", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 463432347359006720, + "in_reply_to_status_id_str": "463432347359006720", + "in_reply_to_user_id": 435236587, + "in_reply_to_user_id_str": "435236587", + "in_reply_to_screen_name": "kelseyinnis", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 05 21:40:37 +0000 2014", + "id": 463433107765346305, + "id_str": "463433107765346305", + "text": "Consider also what HTML has done to vertically oriented right to left languages (hint: lol I hope you like horizontal)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 8, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 05 21:34:56 +0000 2014", + "id": 463431676233023488, + "id_str": "463431676233023488", + "text": "Basically it’s been decades and we’ve just gotten to the point where most but not all tools can handle áccented Latin vôwels", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 5, + "favorite_count": 9, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 05 21:33:15 +0000 2014", + "id": 463431253468123136, + "id_str": "463431253468123136", + "text": "On the essential impossibility of using Arabic as a first-class language in current computer science http://t.co/9X3f9icmy6", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 43, + "favorite_count": 21, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon May 05 21:23:31 +0000 2014", + "id": 463428805160624130, + "id_str": "463428805160624130", + "text": "RT @boltcity: In Vancouver customs, officer asks what I do, says he hates the books I've worked on, sends me into security. Waiting for scr…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Mon May 05 20:35:45 +0000 2014", + "id": 463416780720189440, + "id_str": "463416780720189440", + "text": "In Vancouver customs, officer asks what I do, says he hates the books I've worked on, sends me into security. Waiting for screening. Unreal.", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 47841677, + "id_str": "47841677" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 192, + "favorite_count": 67, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 192, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 05 20:51:37 +0000 2014", + "id": 463420774414811136, + "id_str": "463420774414811136", + "text": "@tgouverneur @miaubiz I think it's local-only, but that doesn't excuse the fundamental code quality problem.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 463420405790044161, + "in_reply_to_status_id_str": "463420405790044161", + "in_reply_to_user_id": 42930831, + "in_reply_to_user_id_str": "42930831", + "in_reply_to_screen_name": "tgouverneur", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 05 20:47:28 +0000 2014", + "id": 463419733266956289, + "id_str": "463419733266956289", + "text": "@_yossi_ it bothers me extremely; not *presuming* no-one will be bothered is rather the point", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 463419457831202816, + "in_reply_to_status_id_str": "463419457831202816", + "in_reply_to_user_id": 14330235, + "in_reply_to_user_id_str": "14330235", + "in_reply_to_screen_name": "_yossi_", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 05 20:36:55 +0000 2014", + "id": 463417077454635008, + "id_str": "463417077454635008", + "text": "@samuelpepys I kind of get the feeling you’re an idiot when it comes to dealing with the women in your life", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 463411161137172482, + "in_reply_to_status_id_str": "463411161137172482", + "in_reply_to_user_id": 14475268, + "in_reply_to_user_id_str": "14475268", + "in_reply_to_screen_name": "samuelpepys", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 05 20:35:47 +0000 2014", + "id": 463416788957790208, + "id_str": "463416788957790208", + "text": "So basically I just blew all my emotional capacity on being upset about religions and there’s none left for the police state, they’re clever", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 14, + "favorite_count": 12, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 05 20:33:23 +0000 2014", + "id": 463416185770762240, + "id_str": "463416185770762240", + "text": "Sometimes I don’t retweet important but angering news solely because I feel at my emotional capacity already and I’m afraid of breaking", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 11, + "favorite_count": 22, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 05 20:25:45 +0000 2014", + "id": 463414264007753728, + "id_str": "463414264007753728", + "text": "Grahh. “Diversity is HARD! It’s easier to make all the minority religions just have to endure the majority one!” http://t.co/MNsNULDI2l", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 4, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon May 05 20:18:01 +0000 2014", + "id": 463412318471479297, + "id_str": "463412318471479297", + "text": "@TweetsofOld boyfriends come and go, but a good pony is a commitment", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 463397223665893377, + "in_reply_to_status_id_str": "463397223665893377", + "in_reply_to_user_id": 66666549, + "in_reply_to_user_id_str": "66666549", + "in_reply_to_screen_name": "TweetsofOld", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 05 18:53:20 +0000 2014", + "id": 463391007426764802, + "id_str": "463391007426764802", + "text": ".@miaubiz repro'd, btw \n\nOpenSSL> version\nOpenSSL 1.0.1e 11 Feb 2013\n\nUhhh... hang on. brb.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 463386691190153216, + "in_reply_to_status_id_str": "463386691190153216", + "in_reply_to_user_id": 30510723, + "in_reply_to_user_id_str": "30510723", + "in_reply_to_screen_name": "miaubiz", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 13, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 05 18:49:36 +0000 2014", + "id": 463390067088965632, + "id_str": "463390067088965632", + "text": "@codeferret_ @demize95 did you JUST.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 463389778910523392, + "in_reply_to_status_id_str": "463389778910523392", + "in_reply_to_user_id": 486784516, + "in_reply_to_user_id_str": "486784516", + "in_reply_to_screen_name": "codeferret_", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 05 18:49:16 +0000 2014", + "id": 463389985430069248, + "id_str": "463389985430069248", + "text": "RT @miaubiz: $ xxd lol\n0000000: 3d3d 0a3d 3d0a 2d0a ==.==.-.\n$ openssl asn1parse -in lol \nzsh: segmentation fault", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Mon May 05 18:36:11 +0000 2014", + "id": 463386691190153216, + "id_str": "463386691190153216", + "text": "$ xxd lol\n0000000: 3d3d 0a3d 3d0a 2d0a ==.==.-.\n$ openssl asn1parse -in lol \nzsh: segmentation fault", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 30510723, + "id_str": "30510723" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 58, + "favorite_count": 31, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "pl" + }, + "retweet_count": 58, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "pl" + }, + { + "created_at": "Mon May 05 18:41:33 +0000 2014", + "id": 463388043102400514, + "id_str": "463388043102400514", + "text": "@ChiptunesWIN @ChiptuneFacts @PresidentHoodie this is offensive to my 6502 religion", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 463386065651654656, + "in_reply_to_status_id_str": "463386065651654656", + "in_reply_to_user_id": 799747874, + "in_reply_to_user_id_str": "799747874", + "in_reply_to_screen_name": "ChiptunesWIN", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 05 18:28:19 +0000 2014", + "id": 463384711080198144, + "id_str": "463384711080198144", + "text": "@hackerfantastic \\o/", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 463376826573029376, + "in_reply_to_status_id_str": "463376826573029376", + "in_reply_to_user_id": 19026149, + "in_reply_to_user_id_str": "19026149", + "in_reply_to_screen_name": "hackerfantastic", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Mon May 05 18:24:36 +0000 2014", + "id": 463383779529461760, + "id_str": "463383779529461760", + "text": "@chort0 aw yeah I’m tacky enough to retweet someone quoting me", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 463383487324512256, + "in_reply_to_status_id_str": "463383487324512256", + "in_reply_to_user_id": 25519088, + "in_reply_to_user_id_str": "25519088", + "in_reply_to_screen_name": "chort0", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 5, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 05 18:24:14 +0000 2014", + "id": 463383684071301120, + "id_str": "463383684071301120", + "text": "RT @chort0: \"Hacking is just adversarial debugging.\" @0xabad1dea, 2014", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Mon May 05 18:23:27 +0000 2014", + "id": 463383487324512256, + "id_str": "463383487324512256", + "text": "\"Hacking is just adversarial debugging.\" @0xabad1dea, 2014", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 25519088, + "id_str": "25519088" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 86, + "favorite_count": 75, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "0xabad1dea", + "name": "Melissa", + "id": 126030998, + "id_str": "126030998", + "indices": [ + 41, + 52 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 86, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 05 18:13:16 +0000 2014", + "id": 463380925704056832, + "id_str": "463380925704056832", + "text": "@demize95 whoa whoa whoa I said it was slang, not that it was *wrong*, they're two different questions.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 463380814240428032, + "in_reply_to_status_id_str": "463380814240428032", + "in_reply_to_user_id": 137133048, + "in_reply_to_user_id_str": "137133048", + "in_reply_to_screen_name": "demize95", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 05 18:11:24 +0000 2014", + "id": 463380457108037633, + "id_str": "463380457108037633", + "text": "@demize95 I'm not sure what else you would call a spelling variant of only recent popularity which almost all grammar guides agree to avoid", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 463379091291267072, + "in_reply_to_status_id_str": "463379091291267072", + "in_reply_to_user_id": 137133048, + "in_reply_to_user_id_str": "137133048", + "in_reply_to_screen_name": "demize95", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 05 18:03:48 +0000 2014", + "id": 463378541124403200, + "id_str": "463378541124403200", + "text": "@zhuowei @m1sp start here http://t.co/NIUU4N60KJ", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 463378217173143552, + "in_reply_to_status_id_str": "463378217173143552", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon May 05 18:01:51 +0000 2014", + "id": 463378052563877888, + "id_str": "463378052563877888", + "text": "@zhuowei @m1sp heheh. I suspect it has something to do with the murder of Vahagn's given the least amount of attention (easily missed!)", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 463377714703921152, + "in_reply_to_status_id_str": "463377714703921152", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 05 17:59:54 +0000 2014", + "id": 463377560425205762, + "id_str": "463377560425205762", + "text": "@aredridel no, I am not serious that you have outed me as a weird machine.\n\nOr am I...", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 463377303163400192, + "in_reply_to_status_id_str": "463377303163400192", + "in_reply_to_user_id": 17950990, + "in_reply_to_user_id_str": "17950990", + "in_reply_to_screen_name": "aredridel", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 05 17:58:47 +0000 2014", + "id": 463377281306472448, + "id_str": "463377281306472448", + "text": "@zhuowei @m1sp in the long run, Kapriel turns out to have the same basic personality type as his *forger* rather than his \"father.\"", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 463376457339641856, + "in_reply_to_status_id_str": "463376457339641856", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 05 17:57:59 +0000 2014", + "id": 463377080533913600, + "id_str": "463377080533913600", + "text": "@zhuowei @m1sp (he technically wasn't GoS yet when she told him that; rather, she is burdened by a desire to be honest with everyone)", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 463376457339641856, + "in_reply_to_status_id_str": "463376457339641856", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 05 17:57:06 +0000 2014", + "id": 463376854976851969, + "id_str": "463376854976851969", + "text": "@zhuowei @m1sp sociopaths are generally pretty smooth. But he's still too young to be really overtly, deliberately evil...", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 463376457339641856, + "in_reply_to_status_id_str": "463376457339641856", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 05 17:53:08 +0000 2014", + "id": 463375860360568832, + "id_str": "463375860360568832", + "text": "@aredridel @maradydd @Harbinger617 outing without consent!! outing without consent!!!!", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 463375474706894849, + "in_reply_to_status_id_str": "463375474706894849", + "in_reply_to_user_id": 17950990, + "in_reply_to_user_id_str": "17950990", + "in_reply_to_screen_name": "aredridel", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 05 17:48:53 +0000 2014", + "id": 463374787109060608, + "id_str": "463374787109060608", + "text": "Google, I can introduce quite enough slang usage in my writing without your crowd-sourced grammatical \"help\" http://t.co/WEZvaXM4E2", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 9, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon May 05 17:36:46 +0000 2014", + "id": 463371738131476481, + "id_str": "463371738131476481", + "text": "@kherge yes good. @eevee", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 463371541208506368, + "in_reply_to_status_id_str": "463371541208506368", + "in_reply_to_user_id": 389676688, + "in_reply_to_user_id_str": "389676688", + "in_reply_to_screen_name": "kherge", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 05 17:21:49 +0000 2014", + "id": 463367979019685888, + "id_str": "463367979019685888", + "text": "@m1sp my anxiety disorder is really all just method acting for researching how to write Erasmin http://t.co/znR4dAoF19", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon May 05 16:37:22 +0000 2014", + "id": 463356790768668672, + "id_str": "463356790768668672", + "text": "@zhuowei @aspects_ebooks I was actually thinking specifically of the giant glass ruby our local Ruby programmer keeps on his desk :D", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 463356528532017152, + "in_reply_to_status_id_str": "463356528532017152", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 05 16:25:44 +0000 2014", + "id": 463353864243384320, + "id_str": "463353864243384320", + "text": "@TheWAAnderson this is my moment!!! LET ME BE EVIL", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 463353700581662720, + "in_reply_to_status_id_str": "463353700581662720", + "in_reply_to_user_id": 138623931, + "in_reply_to_user_id_str": "138623931", + "in_reply_to_screen_name": "TheWAAnderson", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 05 16:14:25 +0000 2014", + "id": 463351016680095744, + "id_str": "463351016680095744", + "text": "@PrestonSmith__ @Hamcha @oleg_dbooks my bot has the latitude to make her own life decisions", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 463350571140153345, + "in_reply_to_status_id_str": "463350571140153345", + "in_reply_to_user_id": 272731831, + "in_reply_to_user_id_str": "272731831", + "in_reply_to_screen_name": "PrestonSmith__", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 05 16:00:59 +0000 2014", + "id": 463347634837921792, + "id_str": "463347634837921792", + "text": ".@Supermathie I have the power to destroy economic activity! Yay I’m finally a supervillain!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 463347122063294465, + "in_reply_to_status_id_str": "463347122063294465", + "in_reply_to_user_id": 17052596, + "in_reply_to_user_id_str": "17052596", + "in_reply_to_screen_name": "Supermathie", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 5, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 05 16:00:47 +0000 2014", + "id": 463347584388833281, + "id_str": "463347584388833281", + "text": "RT @Supermathie: @0xabad1dea Let's say 1M views, two seconds per view… you just wasted 23 days of the world's productive time you awful per…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Mon May 05 15:58:57 +0000 2014", + "id": 463347122063294465, + "id_str": "463347122063294465", + "text": "@0xabad1dea Let's say 1M views, two seconds per view… you just wasted 23 days of the world's productive time you awful person.", + "source": "Blaq for BlackBerry® 10", + "truncated": false, + "in_reply_to_status_id": 463338053084676096, + "in_reply_to_status_id_str": "463338053084676096", + "in_reply_to_user_id": 126030998, + "in_reply_to_user_id_str": "126030998", + "in_reply_to_screen_name": "0xabad1dea", + "user": { + "id": 17052596, + "id_str": "17052596" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 4, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "0xabad1dea", + "name": "Melissa", + "id": 126030998, + "id_str": "126030998", + "indices": [ + 0, + 11 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 1, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 05 15:51:16 +0000 2014", + "id": 463345189843918848, + "id_str": "463345189843918848", + "text": "I must have missed the lecture about Nietzsche and giant laser robots during sophomore year http://t.co/v3470sOTuO", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 7, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon May 05 15:43:10 +0000 2014", + "id": 463343151378624512, + "id_str": "463343151378624512", + "text": "@aspects_ebooks give me a big enough ruby…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 463336265170300928, + "in_reply_to_status_id_str": "463336265170300928", + "in_reply_to_user_id": 2345404375, + "in_reply_to_user_id_str": "2345404375", + "in_reply_to_screen_name": "aspects_ebooks", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 05 15:39:50 +0000 2014", + "id": 463342312853348352, + "id_str": "463342312853348352", + "text": "@thegrugq @m1sp another success story on your quest to obsolete humanity", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 463329142809718784, + "in_reply_to_status_id_str": "463329142809718784", + "in_reply_to_user_id": 18983429, + "in_reply_to_user_id_str": "18983429", + "in_reply_to_screen_name": "thegrugq", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 05 15:39:10 +0000 2014", + "id": 463342144384946176, + "id_str": "463342144384946176", + "text": "RT @thegrugq: In another week @opsec_ebooks will be able to take over my account completely. I've been replaced by \"a small shell script\" #…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Mon May 05 14:47:30 +0000 2014", + "id": 463329142809718784, + "id_str": "463329142809718784", + "text": "In another week @opsec_ebooks will be able to take over my account completely. I've been replaced by \"a small shell script\" #automation", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 18983429, + "id_str": "18983429" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 8, + "favorite_count": 7, + "entities": { + "hashtags": [ + { + "text": "automation", + "indices": [ + 124, + 135 + ] + } + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 8, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 05 15:38:59 +0000 2014", + "id": 463342099816271872, + "id_str": "463342099816271872", + "text": "@Hamcha the first one was probably its random selection, the second because you said The Word (bots)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 463341793854369792, + "in_reply_to_status_id_str": "463341793854369792", + "in_reply_to_user_id": 544033, + "in_reply_to_user_id_str": "544033", + "in_reply_to_screen_name": "Hamcha", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 05 15:22:54 +0000 2014", + "id": 463338053084676096, + "id_str": "463338053084676096", + "text": "\"Viewcount guilt\" is that feeling you get that the kitten photo you posted is directly responsible for fewer views on serious matters.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 7, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 05 15:20:39 +0000 2014", + "id": 463337484936806400, + "id_str": "463337484936806400", + "text": "I propose a new syndrome for the internet age which is a milder cousin of survivor's guilt: \"viewcount guilt\"", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 5, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 05 15:18:13 +0000 2014", + "id": 463336873466015744, + "id_str": "463336873466015744", + "text": "@jurph don't you derogate or deride", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 463336292148060160, + "in_reply_to_status_id_str": "463336292148060160", + "in_reply_to_user_id": 16708179, + "in_reply_to_user_id_str": "16708179", + "in_reply_to_screen_name": "jurph", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 05 14:53:51 +0000 2014", + "id": 463330741137702912, + "id_str": "463330741137702912", + "text": "You might gather that I'm really keen on Villain Songs. #OminousChanting", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 05 14:50:27 +0000 2014", + "id": 463329883821973504, + "id_str": "463329883821973504", + "text": "Now I've got \"friends on the other side\" stuck in my head which means I might finally have to watch the princess and the frog.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 6, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 05 14:46:58 +0000 2014", + "id": 463329007946457088, + "id_str": "463329007946457088", + "text": "@Talen_Lee um um um um um um I'm sorry!!!", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 463321746376892416, + "in_reply_to_status_id_str": "463321746376892416", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "is" + }, + { + "created_at": "Mon May 05 13:51:42 +0000 2014", + "id": 463315100594896896, + "id_str": "463315100594896896", + "text": "RT @aesmael: \"Commander Vimes didn’t like the phrase ‘The innocent have nothing to fear’, believing the innocent had...\" http://t.co/q9yZGc…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Mon May 05 13:11:44 +0000 2014", + "id": 463305040904855555, + "id_str": "463305040904855555", + "text": "\"Commander Vimes didn’t like the phrase ‘The innocent have nothing to fear’, believing the innocent had...\" http://t.co/q9yZGc8MkW", + "source": "Tumblr", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 18427820, + "id_str": "18427820" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 23, + "favorite_count": 4, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/q9yZGc8MkW", + "expanded_url": "http://tmblr.co/Z7K9Up1E-onax", + "display_url": "tmblr.co/Z7K9Up1E-onax", + "indices": [ + 108, + 130 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 23, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon May 05 13:49:45 +0000 2014", + "id": 463314608607219712, + "id_str": "463314608607219712", + "text": "RT @thegrugq: Interesting asymmetry. Trojan dev gets 100s, hackers get tens of thousands, millions ppl are jeopardized, 1 billion is lost, …", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Mon May 05 13:15:29 +0000 2014", + "id": 463305986661285888, + "id_str": "463305986661285888", + "text": "Interesting asymmetry. Trojan dev gets 100s, hackers get tens of thousands, millions ppl are jeopardized, 1 billion is lost, 1 is guy fired", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 463304854929018880, + "in_reply_to_status_id_str": "463304854929018880", + "in_reply_to_user_id": 18983429, + "in_reply_to_user_id_str": "18983429", + "in_reply_to_screen_name": "thegrugq", + "user": { + "id": 18983429, + "id_str": "18983429" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 13, + "favorite_count": 8, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 13, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 05 13:24:51 +0000 2014", + "id": 463308341473976320, + "id_str": "463308341473976320", + "text": "@m1sp yes", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 463208172992225280, + "in_reply_to_status_id_str": "463208172992225280", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Mon May 05 05:26:12 +0000 2014", + "id": 463187887518154752, + "id_str": "463187887518154752", + "text": "@zhuowei @Talen_Lee like I said, three seconds.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 463184265606205440, + "in_reply_to_status_id_str": "463184265606205440", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 05 05:03:03 +0000 2014", + "id": 463182060619067392, + "id_str": "463182060619067392", + "text": "@zhuowei did you google how long it takes to kill someone with electricity", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 463181900303974400, + "in_reply_to_status_id_str": "463181900303974400", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 05 04:40:46 +0000 2014", + "id": 463176451542761472, + "id_str": "463176451542761472", + "text": "@m1sp followed by http://t.co/VszEP25EUa", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon May 05 04:16:41 +0000 2014", + "id": 463170390899326976, + "id_str": "463170390899326976", + "text": "@miaubiz stahp.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 463170078604021760, + "in_reply_to_status_id_str": "463170078604021760", + "in_reply_to_user_id": 30510723, + "in_reply_to_user_id_str": "30510723", + "in_reply_to_screen_name": "miaubiz", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "in" + }, + { + "created_at": "Mon May 05 04:11:27 +0000 2014", + "id": 463169074265333760, + "id_str": "463169074265333760", + "text": "@m1sp *trolls readers with just a peek* http://t.co/W2w3j0kaf9", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon May 05 03:11:26 +0000 2014", + "id": 463153971239346176, + "id_str": "463153971239346176", + "text": "@zauspar it’s a cat; of COURSE it looks delighted at human misery.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 463153820416376832, + "in_reply_to_status_id_str": "463153820416376832", + "in_reply_to_user_id": 216571343, + "in_reply_to_user_id_str": "216571343", + "in_reply_to_screen_name": "zauspar", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 05 03:04:29 +0000 2014", + "id": 463152224232022016, + "id_str": "463152224232022016", + "text": "@thegrugq @chriseng yes hello my bio does not have this disclaimer and I *hate* whiskey repeat, HATE whiskey", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 463151911844073472, + "in_reply_to_status_id_str": "463151911844073472", + "in_reply_to_user_id": 18983429, + "in_reply_to_user_id_str": "18983429", + "in_reply_to_screen_name": "thegrugq", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 05 01:56:13 +0000 2014", + "id": 463135043771461632, + "id_str": "463135043771461632", + "text": "RT @Talen_Lee: Talen Reads Glory In The Thunder - Chapter 2 - http://t.co/LPaCMB57Tm Wordiness and weariness.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Mon May 05 01:34:43 +0000 2014", + "id": 463129631873175552, + "id_str": "463129631873175552", + "text": "Talen Reads Glory In The Thunder - Chapter 2 - http://t.co/LPaCMB57Tm Wordiness and weariness.", + "source": "WordPress.com", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 1626778274, + "id_str": "1626778274" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 0, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/LPaCMB57Tm", + "expanded_url": "http://wp.me/p4pPKG-Gv", + "display_url": "wp.me/p4pPKG-Gv", + "indices": [ + 47, + 69 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 1, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon May 05 01:56:03 +0000 2014", + "id": 463135000905650176, + "id_str": "463135000905650176", + "text": "I have this incredible, intoxicating ability to only retweet positive reviews of my novel. Oh I feel a bit dizzy with the evilness of that.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 6, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 05 01:34:26 +0000 2014", + "id": 463129561329590273, + "id_str": "463129561329590273", + "text": "@eridius @RSnake suppose they were doing math that involves it and the height of another airplane, it could overflow pretty easily", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 463128801862361089, + "in_reply_to_status_id_str": "463128801862361089", + "in_reply_to_user_id": 336343, + "in_reply_to_user_id_str": "336343", + "in_reply_to_screen_name": "eridius", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 05 00:58:49 +0000 2014", + "id": 463120596604583937, + "id_str": "463120596604583937", + "text": "RT @RSnake: Wait, was this a 16 bit integer overflow the U2 caused when flying at 65,535+ feet? http://t.co/LbxgG5Tsxt", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Mon May 05 00:55:26 +0000 2014", + "id": 463119746460708864, + "id_str": "463119746460708864", + "text": "Wait, was this a 16 bit integer overflow the U2 caused when flying at 65,535+ feet? http://t.co/LbxgG5Tsxt", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 15637093, + "id_str": "15637093" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 262, + "favorite_count": 99, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/LbxgG5Tsxt", + "expanded_url": "http://www.nbcnews.com/news/investigations/spy-plane-fries-air-traffic-control-computers-shuts-down-lax-n95886", + "display_url": "nbcnews.com/news/investiga…", + "indices": [ + 84, + 106 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 262, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon May 05 00:57:15 +0000 2014", + "id": 463120201232699392, + "id_str": "463120201232699392", + "text": "@Talen_Lee it’s a real Armenian name, but I’d be lying if I didn’t pick it for the harsh sounds", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 463119847795081216, + "in_reply_to_status_id_str": "463119847795081216", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon May 05 00:53:35 +0000 2014", + "id": 463119281493147649, + "id_str": "463119281493147649", + "text": "@Talen_Lee fact: I’m secretly terrified that Game of Thrones will have readers convinced there’s a sexual undertone to Vahagn and Talassen", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 463116794618589184, + "in_reply_to_status_id_str": "463116794618589184", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 04 23:55:06 +0000 2014", + "id": 463104560857612288, + "id_str": "463104560857612288", + "text": "Google Docs releases new app for iPad, receives a hundred one-star reviews asking why it is unaware of folders. 📂❓", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 6, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 04 23:41:54 +0000 2014", + "id": 463101239501524992, + "id_str": "463101239501524992", + "text": "@hoodiespek @Talen_Lee his opinion!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 463100986672705536, + "in_reply_to_status_id_str": "463100986672705536", + "in_reply_to_user_id": 2361598756, + "in_reply_to_user_id_str": "2361598756", + "in_reply_to_screen_name": "hoodiespek", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 04 23:39:41 +0000 2014", + "id": 463100683324227584, + "id_str": "463100683324227584", + "text": "@Talen_Lee *frets uselessly*", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 04 23:30:06 +0000 2014", + "id": 463098272597696512, + "id_str": "463098272597696512", + "text": "@zhuowei @mralext20 @m1sp that'd be *just like* google docs to think that obviously the period is part of the token, wouldn't it", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 463098129391169537, + "in_reply_to_status_id_str": "463098129391169537", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 04 23:28:35 +0000 2014", + "id": 463097889808736256, + "id_str": "463097889808736256", + "text": "@mralext20 @m1sp It already is\n\nNotice that the exact same word is not highlighted in the other instance", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 463097455374909442, + "in_reply_to_status_id_str": "463097455374909442", + "in_reply_to_user_id": 905041434, + "in_reply_to_user_id_str": "905041434", + "in_reply_to_screen_name": "mralext20", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 04 23:26:27 +0000 2014", + "id": 463097352564117504, + "id_str": "463097352564117504", + "text": "@m1sp inside the strange mind of google docs spellcheck http://t.co/ZfUJUMFtm5", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sun May 04 21:52:06 +0000 2014", + "id": 463073607976226816, + "id_str": "463073607976226816", + "text": "@grumpybozo given the *sheer amount* of errors I have experienced re: my address, I'm totes willing to believe the error is on state's end", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 463072692699017216, + "in_reply_to_status_id_str": "463072692699017216", + "in_reply_to_user_id": 317126349, + "in_reply_to_user_id_str": "317126349", + "in_reply_to_screen_name": "grumpybozo", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 04 19:59:35 +0000 2014", + "id": 463045294658449409, + "id_str": "463045294658449409", + "text": "RT @Eleni_dW: A sign of our times. Makes me sad! http://t.co/PoEnwFSHgE", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sun May 04 06:00:14 +0000 2014", + "id": 462834064987549696, + "id_str": "462834064987549696", + "text": "A sign of our times. Makes me sad! http://t.co/PoEnwFSHgE", + "source": "Twitter for Android", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 155629540, + "id_str": "155629540" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1385, + "favorite_count": 496, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ], + "media": [ + { + "id": 462834064819757056, + "id_str": "462834064819757056", + "indices": [ + 35, + 57 + ], + "media_url": "http://pbs.twimg.com/media/BmxRITeIIAABHU-.jpg", + "media_url_https": "https://pbs.twimg.com/media/BmxRITeIIAABHU-.jpg", + "url": "http://t.co/PoEnwFSHgE", + "display_url": "pic.twitter.com/PoEnwFSHgE", + "expanded_url": "http://twitter.com/Eleni_dW/status/462834064987549696/photo/1", + "type": "photo", + "sizes": { + "medium": { + "w": 600, + "h": 450, + "resize": "fit" + }, + "large": { + "w": 1024, + "h": 768, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 255, + "resize": "fit" + } + } + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 1385, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sun May 04 19:51:37 +0000 2014", + "id": 463043290053767168, + "id_str": "463043290053767168", + "text": "RT @veltman: Programming is basically figuring out how to phrase your three wishes to an evil genie. \"ALL the rows? As you wish, master... …", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sat May 03 14:45:33 +0000 2014", + "id": 462603874566942720, + "id_str": "462603874566942720", + "text": "Programming is basically figuring out how to phrase your three wishes to an evil genie. \"ALL the rows? As you wish, master... mwahahaha!\"", + "source": "Twitter for Android", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 17673012, + "id_str": "17673012" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 954, + "favorite_count": 661, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 954, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 04 19:32:33 +0000 2014", + "id": 463038488263528449, + "id_str": "463038488263528449", + "text": "@Xaosopher I don't have the wallet. The man who brought it said he'd take it to the police. Seems to have worked last time.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 463038021034471425, + "in_reply_to_status_id_str": "463038021034471425", + "in_reply_to_user_id": 68878049, + "in_reply_to_user_id_str": "68878049", + "in_reply_to_screen_name": "Xaosopher", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 04 19:13:37 +0000 2014", + "id": 463033726587666432, + "id_str": "463033726587666432", + "text": "@jwisser lol hi", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 463032856399581184, + "in_reply_to_status_id_str": "463032856399581184", + "in_reply_to_user_id": 665833, + "in_reply_to_user_id_str": "665833", + "in_reply_to_screen_name": "jwisser", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "tl" + }, + { + "created_at": "Sun May 04 18:52:30 +0000 2014", + "id": 463028409078386691, + "id_str": "463028409078386691", + "text": "RT @ThePokeBot: Got a run going, just beat Misty 0:40:41 in! http://t.co/HduZQJWsve", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sun May 04 18:51:07 +0000 2014", + "id": 463028063790301184, + "id_str": "463028063790301184", + "text": "Got a run going, just beat Misty 0:40:41 in! http://t.co/HduZQJWsve", + "source": "asdgasegfdgfas", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2436473940, + "id_str": "2436473940" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 0, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/HduZQJWsve", + "expanded_url": "http://www.twitch.tv/thepokebot", + "display_url": "twitch.tv/thepokebot", + "indices": [ + 45, + 67 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 3, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sun May 04 17:27:44 +0000 2014", + "id": 463007077653577729, + "id_str": "463007077653577729", + "text": "@sarahxgilbert I will try to mind if I see anything similar happen...", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 463006760383815680, + "in_reply_to_status_id_str": "463006760383815680", + "in_reply_to_user_id": 166158413, + "in_reply_to_user_id_str": "166158413", + "in_reply_to_screen_name": "sarahxgilbert", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 04 17:27:33 +0000 2014", + "id": 463007033034543105, + "id_str": "463007033034543105", + "text": "@sarahxgilbert it is odd, but it'd probably be extremely difficult to triangulate the problem unless it keeps happening", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 463006760383815680, + "in_reply_to_status_id_str": "463006760383815680", + "in_reply_to_user_id": 166158413, + "in_reply_to_user_id_str": "166158413", + "in_reply_to_screen_name": "sarahxgilbert", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 04 17:03:58 +0000 2014", + "id": 463001095963680768, + "id_str": "463001095963680768", + "text": "@zauspar caused by the sheer numbers of large white commercial vehicles", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 462999391062986753, + "in_reply_to_status_id_str": "462999391062986753", + "in_reply_to_user_id": 216571343, + "in_reply_to_user_id_str": "216571343", + "in_reply_to_screen_name": "zauspar", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 04 17:03:44 +0000 2014", + "id": 463001041060265984, + "id_str": "463001041060265984", + "text": "@zauspar the “best” part was when every single large white commercial vehicle was under suspicion, which was a false lead", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 462999391062986753, + "in_reply_to_status_id_str": "462999391062986753", + "in_reply_to_user_id": 216571343, + "in_reply_to_user_id_str": "216571343", + "in_reply_to_screen_name": "zauspar", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 04 16:58:50 +0000 2014", + "id": 462999806919852032, + "id_str": "462999806919852032", + "text": "@vogon I’d guess it’s the source map data that’s wrong.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 462999444888121344, + "in_reply_to_status_id_str": "462999444888121344", + "in_reply_to_user_id": 6326912, + "in_reply_to_user_id_str": "6326912", + "in_reply_to_screen_name": "vogon", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 04 16:56:49 +0000 2014", + "id": 462999297907523585, + "id_str": "462999297907523585", + "text": "@zauspar oh wow. I actually lived through that. As in, local gas station, local mall, cops guarding the school", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 462998860214702081, + "in_reply_to_status_id_str": "462998860214702081", + "in_reply_to_user_id": 216571343, + "in_reply_to_user_id_str": "216571343", + "in_reply_to_screen_name": "zauspar", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 04 16:55:03 +0000 2014", + "id": 462998853353209856, + "id_str": "462998853353209856", + "text": "RT @NewBlackWoman: Why do we commend male parents who use guns to say their daughters are their patriarchal property???", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sun May 04 16:36:20 +0000 2014", + "id": 462994144861114368, + "id_str": "462994144861114368", + "text": "Why do we commend male parents who use guns to say their daughters are their patriarchal property???", + "source": "TweetDeck", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 24072938, + "id_str": "24072938" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 15, + "favorite_count": 18, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 15, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 04 16:48:57 +0000 2014", + "id": 462997320381251585, + "id_str": "462997320381251585", + "text": "@_jdpage @m1sp I suppose the traditional fiction I have read does skew disproportionately British, for being American rabble.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 462854719648825344, + "in_reply_to_status_id_str": "462854719648825344", + "in_reply_to_user_id": 233252431, + "in_reply_to_user_id_str": "233252431", + "in_reply_to_screen_name": "_jdpage", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 04 16:44:26 +0000 2014", + "id": 462996181753532416, + "id_str": "462996181753532416", + "text": "@m1sp @chriseng_ebooks sounds like him so far, conventions conventions conventions", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 462995905075879936, + "in_reply_to_status_id_str": "462995905075879936", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 04 16:42:49 +0000 2014", + "id": 462995776223059968, + "id_str": "462995776223059968", + "text": "@m1sp my boss is running your code now…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 4, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 04 16:38:22 +0000 2014", + "id": 462994656687820803, + "id_str": "462994656687820803", + "text": "@DrPizza the first coverage I saw was days after it happened; the first really mainstream coverage, after I saw the protesting about silence", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 462976860868329472, + "in_reply_to_status_id_str": "462976860868329472", + "in_reply_to_user_id": 11375732, + "in_reply_to_user_id_str": "11375732", + "in_reply_to_screen_name": "DrPizza", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 04 16:30:06 +0000 2014", + "id": 462992573418975232, + "id_str": "462992573418975232", + "text": "@savagejen the rest aren’t federally accredited.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 462965756947206144, + "in_reply_to_status_id_str": "462965756947206144", + "in_reply_to_user_id": 11324652, + "in_reply_to_user_id_str": "11324652", + "in_reply_to_screen_name": "savagejen", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 04 16:25:08 +0000 2014", + "id": 462991324866940928, + "id_str": "462991324866940928", + "text": "RT @PicPedant: Turns out \"fire hose on railway tracks\" was a joke pic: http://t.co/FySCEMKfoE (via @sirryanr, @thestalwart) http://t.co/EPO…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sun May 04 13:34:12 +0000 2014", + "id": 462948309821554688, + "id_str": "462948309821554688", + "text": "Turns out \"fire hose on railway tracks\" was a joke pic: http://t.co/FySCEMKfoE (via @sirryanr, @thestalwart) http://t.co/EPOctWeE9d", + "source": "TweetDeck", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2215067640, + "id_str": "2215067640" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 90, + "favorite_count": 24, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/FySCEMKfoE", + "expanded_url": "http://twentytwowords.com/small-town-firefighters-successfully-prank-the-whole-world-with-a-silly-pic-of-fake-stupidity/", + "display_url": "twentytwowords.com/small-town-fir…", + "indices": [ + 56, + 78 + ] + } + ], + "user_mentions": [ + { + "screen_name": "SirRyanR", + "name": "Ryan", + "id": 359770444, + "id_str": "359770444", + "indices": [ + 84, + 93 + ] + }, + { + "screen_name": "TheStalwart", + "name": "Joseph Weisenthal", + "id": 14096763, + "id_str": "14096763", + "indices": [ + 95, + 107 + ] + } + ], + "media": [ + { + "id": 462948309452464128, + "id_str": "462948309452464128", + "indices": [ + 109, + 131 + ], + "media_url": "http://pbs.twimg.com/media/Bmy5CN5IIAABgHZ.jpg", + "media_url_https": "https://pbs.twimg.com/media/Bmy5CN5IIAABgHZ.jpg", + "url": "http://t.co/EPOctWeE9d", + "display_url": "pic.twitter.com/EPOctWeE9d", + "expanded_url": "http://twitter.com/PicPedant/status/462948309821554688/photo/1", + "type": "photo", + "sizes": { + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 600, + "h": 449, + "resize": "fit" + }, + "large": { + "w": 685, + "h": 513, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 255, + "resize": "fit" + } + } + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 90, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sun May 04 16:16:01 +0000 2014", + "id": 462989031174057984, + "id_str": "462989031174057984", + "text": "Either this guy needs to get jeans with deeper pockets (and fix his ID card), or this is a Grade-A haunting story in the making", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 6, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 04 16:14:46 +0000 2014", + "id": 462988717976981506, + "id_str": "462988717976981506", + "text": "The wallet of the man with our address on his ID card was kindly returned to us for a SECOND time by a man who found it on the sidewalk, ???", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 04 15:55:19 +0000 2014", + "id": 462983819952672769, + "id_str": "462983819952672769", + "text": "@sarahxgilbert hmm, no, could have been a weird caching bug", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 462935918358564865, + "in_reply_to_status_id_str": "462935918358564865", + "in_reply_to_user_id": 166158413, + "in_reply_to_user_id_str": "166158413", + "in_reply_to_screen_name": "sarahxgilbert", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 04 15:53:31 +0000 2014", + "id": 462983368070942721, + "id_str": "462983368070942721", + "text": "@zhuowei kill me and die young, sounds about right", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 462860127976972290, + "in_reply_to_status_id_str": "462860127976972290", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 04 15:52:25 +0000 2014", + "id": 462983089611112448, + "id_str": "462983089611112448", + "text": "@zhuowei as well I *ought*", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 462826102994391042, + "in_reply_to_status_id_str": "462826102994391042", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 04 05:07:55 +0000 2014", + "id": 462820898106789888, + "id_str": "462820898106789888", + "text": "RT @zhuowei: I finally found an SSL/TLS library without ANY bugs at all! http://t.co/dVdX5kGNeR", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sun May 04 03:50:23 +0000 2014", + "id": 462801383071051776, + "id_str": "462801383071051776", + "text": "I finally found an SSL/TLS library without ANY bugs at all! http://t.co/dVdX5kGNeR", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 383083538, + "id_str": "383083538" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 119, + "favorite_count": 86, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ], + "media": [ + { + "id": 462801383079440384, + "id_str": "462801383079440384", + "indices": [ + 60, + 82 + ], + "media_url": "http://pbs.twimg.com/media/BmwzZ-gCcAAnxGL.png", + "media_url_https": "https://pbs.twimg.com/media/BmwzZ-gCcAAnxGL.png", + "url": "http://t.co/dVdX5kGNeR", + "display_url": "pic.twitter.com/dVdX5kGNeR", + "expanded_url": "http://twitter.com/zhuowei/status/462801383071051776/photo/1", + "type": "photo", + "sizes": { + "large": { + "w": 937, + "h": 684, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 438, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 248, + "resize": "fit" + } + } + } + ] + }, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 119, + "favorite_count": 0, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sun May 04 05:02:48 +0000 2014", + "id": 462819608513499137, + "id_str": "462819608513499137", + "text": "@zhuowei >.>", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 462785024924712960, + "in_reply_to_status_id_str": "462785024924712960", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "vi" + }, + { + "created_at": "Sun May 04 03:18:39 +0000 2014", + "id": 462793398832099328, + "id_str": "462793398832099328", + "text": "@Iskaros93 I prefer zero-day", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 462791118166306816, + "in_reply_to_status_id_str": "462791118166306816", + "in_reply_to_user_id": 173636707, + "in_reply_to_user_id_str": "173636707", + "in_reply_to_screen_name": "Iskaros93", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "sl" + }, + { + "created_at": "Sun May 04 01:36:02 +0000 2014", + "id": 462767574150053888, + "id_str": "462767574150053888", + "text": "@aspects_ebooks #tsovinar", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 462763008901783552, + "in_reply_to_status_id_str": "462763008901783552", + "in_reply_to_user_id": 2345404375, + "in_reply_to_user_id_str": "2345404375", + "in_reply_to_screen_name": "aspects_ebooks", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": true, + "retweeted": false, + "lang": "sl" + }, + { + "created_at": "Sun May 04 01:27:30 +0000 2014", + "id": 462765427102609408, + "id_str": "462765427102609408", + "text": "@winocm oh btw plot hole. I don’t have a driver’s license", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 462708552440627201, + "in_reply_to_status_id_str": "462708552440627201", + "in_reply_to_user_id": 428413732, + "in_reply_to_user_id_str": "428413732", + "in_reply_to_screen_name": "winocm", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 5, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 04 01:21:47 +0000 2014", + "id": 462763988699607040, + "id_str": "462763988699607040", + "text": "@Kytri what even.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 462718622428045314, + "in_reply_to_status_id_str": "462718622428045314", + "in_reply_to_user_id": 18954686, + "in_reply_to_user_id_str": "18954686", + "in_reply_to_screen_name": "Kytri", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun May 04 01:04:26 +0000 2014", + "id": 462759623884156929, + "id_str": "462759623884156929", + "text": "Another favorite from Bot World http://t.co/4IZo6zSP3c", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 9, + "favorite_count": 26, + "favorited": true, + "retweeted": true, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sun May 04 00:17:53 +0000 2014", + "id": 462747910258827264, + "id_str": "462747910258827264", + "text": "In which we learn \"in the dark of the night\" is, OF COURSE, even scarier in Russian https://t.co/Ozq5bENkov", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sat May 03 23:30:53 +0000 2014", + "id": 462736081939488768, + "id_str": "462736081939488768", + "text": "@m1sp Rosi very definitely has a British accent http://t.co/xDBLcj6Hnm", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sat May 03 23:17:04 +0000 2014", + "id": 462732603096072192, + "id_str": "462732603096072192", + "text": "RT @xa329: @0xabad1dea @m1sp It is a pretty sassy answer from Abby_ebooks, but the icing on the cake is it favorited my question!", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sat May 03 23:16:42 +0000 2014", + "id": 462732512192897025, + "id_str": "462732512192897025", + "text": "@0xabad1dea @m1sp It is a pretty sassy answer from Abby_ebooks, but the icing on the cake is it favorited my question!", + "source": "Twitter for Android Tablets", + "truncated": false, + "in_reply_to_status_id": 462731660488744960, + "in_reply_to_status_id_str": "462731660488744960", + "in_reply_to_user_id": 126030998, + "in_reply_to_user_id_str": "126030998", + "in_reply_to_screen_name": "0xabad1dea", + "user": { + "id": 96867459, + "id_str": "96867459" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 2, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "0xabad1dea", + "name": "Melissa", + "id": 126030998, + "id_str": "126030998", + "indices": [ + 0, + 11 + ] + }, + { + "screen_name": "m1sp", + "name": "Mispy ☀", + "id": 1007638597, + "id_str": "1007638597", + "indices": [ + 12, + 17 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 1, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 03 23:13:19 +0000 2014", + "id": 462731660488744960, + "id_str": "462731660488744960", + "text": "The bot sentience feedback loop in effect // @m1sp @xa329 http://t.co/gZiGsYPkzo", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 14, + "favorite_count": 33, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sat May 03 22:40:59 +0000 2014", + "id": 462723522541142016, + "id_str": "462723522541142016", + "text": "@WhiteMageSlave http://t.co/cVuTbtGQqy", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 90791634, + "in_reply_to_user_id_str": "90791634", + "in_reply_to_screen_name": "WhiteMageSlave", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Sat May 03 22:39:52 +0000 2014", + "id": 462723243036909568, + "id_str": "462723243036909568", + "text": "@m1sp @gotyaoi n-n-now kiss", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 462692777935900672, + "in_reply_to_status_id_str": "462692777935900672", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 03 22:12:11 +0000 2014", + "id": 462716275962413057, + "id_str": "462716275962413057", + "text": "RT @zhuowei: A rolling CSS stylesheet gathers no moz-.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sat May 03 21:57:11 +0000 2014", + "id": 462712498185986048, + "id_str": "462712498185986048", + "text": "A rolling CSS stylesheet gathers no moz-.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 383083538, + "id_str": "383083538" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 25, + "favorite_count": 19, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 25, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 03 21:52:51 +0000 2014", + "id": 462711410200674304, + "id_str": "462711410200674304", + "text": "@Tuplet Embrace Avian Truth 🐣", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 462703260638248960, + "in_reply_to_status_id_str": "462703260638248960", + "in_reply_to_user_id": 34310651, + "in_reply_to_user_id_str": "34310651", + "in_reply_to_screen_name": "Tuplet", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "et" + }, + { + "created_at": "Sat May 03 21:50:01 +0000 2014", + "id": 462710697403883522, + "id_str": "462710697403883522", + "text": "@winocm you’re a shrine maiden…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 462710434798137344, + "in_reply_to_status_id_str": "462710434798137344", + "in_reply_to_user_id": 428413732, + "in_reply_to_user_id_str": "428413732", + "in_reply_to_screen_name": "winocm", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 03 21:48:28 +0000 2014", + "id": 462710305140015104, + "id_str": "462710305140015104", + "text": ".@winocm says I’m a princess 👸💾", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 12, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 03 21:47:34 +0000 2014", + "id": 462710081831063552, + "id_str": "462710081831063552", + "text": "RT @winocm: EXPLOIT WARS, EPISODE IV: A NEW 0DAY.\n\nComing soon to a theatre near you.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sat May 03 21:42:22 +0000 2014", + "id": 462708770775121920, + "id_str": "462708770775121920", + "text": "EXPLOIT WARS, EPISODE IV: A NEW 0DAY.\n\nComing soon to a theatre near you.", + "source": "YoruFukurou", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 428413732, + "id_str": "428413732" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 48, + "favorite_count": 70, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 48, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 03 21:47:28 +0000 2014", + "id": 462710055989944320, + "id_str": "462710055989944320", + "text": "RT @winocm: Pursued by the Empire’s sinister agents, Princess Melissa races home in her car, custodian of the stolen plans that can save th…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sat May 03 21:41:30 +0000 2014", + "id": 462708552440627201, + "id_str": "462708552440627201", + "text": "Pursued by the Empire’s sinister agents, Princess Melissa races home in her car, custodian of the stolen plans that can save the industry.", + "source": "YoruFukurou", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 428413732, + "id_str": "428413732" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 20, + "favorite_count": 28, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 20, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 03 21:47:23 +0000 2014", + "id": 462710035601031169, + "id_str": "462710035601031169", + "text": "RT @winocm: During the battle, Rebel hackers managed to steal secret plans to the Empire’s ultimate weapon, Kernel ASLR, an armoured protec…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sat May 03 21:40:13 +0000 2014", + "id": 462708230703964161, + "id_str": "462708230703964161", + "text": "During the battle, Rebel hackers managed to steal secret plans to the Empire’s ultimate weapon, Kernel ASLR, an armoured protection scheme.", + "source": "YoruFukurou", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 428413732, + "id_str": "428413732" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 23, + "favorite_count": 33, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 23, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 03 21:47:18 +0000 2014", + "id": 462710011941388289, + "id_str": "462710011941388289", + "text": "RT @winocm: It is a period of information war. Rebel hackers, striking from the depths, have won their first victory against EMET.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sat May 03 21:38:58 +0000 2014", + "id": 462707916311519232, + "id_str": "462707916311519232", + "text": "It is a period of information war. Rebel hackers, striking from the depths, have won their first victory against EMET.", + "source": "YoruFukurou", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 428413732, + "id_str": "428413732" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 27, + "favorite_count": 33, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 27, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 03 21:41:53 +0000 2014", + "id": 462708650239606786, + "id_str": "462708650239606786", + "text": "@garblefart @Shufflejoy they have a weird implementation where they want you to be able to clear your inbox but not maintain both sides", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 462699654392868864, + "in_reply_to_status_id_str": "462699654392868864", + "in_reply_to_user_id": 737104831, + "in_reply_to_user_id_str": "737104831", + "in_reply_to_screen_name": "garblefart", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 03 21:40:55 +0000 2014", + "id": 462708407548780544, + "id_str": "462708407548780544", + "text": "RT @Shufflejoy: So there are normal Spiderman toys at McDonald's and... Pink ones. Seriously?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sat May 03 21:05:15 +0000 2014", + "id": 462699432706711553, + "id_str": "462699432706711553", + "text": "So there are normal Spiderman toys at McDonald's and... Pink ones. Seriously?", + "source": "Twitter for Android", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 1567524811, + "id_str": "1567524811" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 8, + "favorite_count": 0, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 8, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 03 21:39:24 +0000 2014", + "id": 462708024529154049, + "id_str": "462708024529154049", + "text": "@Shufflejoy :| !", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 462699432706711553, + "in_reply_to_status_id_str": "462699432706711553", + "in_reply_to_user_id": 1567524811, + "in_reply_to_user_id_str": "1567524811", + "in_reply_to_screen_name": "Shufflejoy", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Sat May 03 21:37:24 +0000 2014", + "id": 462707520973598720, + "id_str": "462707520973598720", + "text": "@ghostqueer so, a good thing about Boston is that if they’re not queer-friendly, most places are at least queer-agnostic", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 462695792948416512, + "in_reply_to_status_id_str": "462695792948416512", + "in_reply_to_user_id": 2337742344, + "in_reply_to_user_id_str": "2337742344", + "in_reply_to_screen_name": "ghostqueer", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 03 21:35:12 +0000 2014", + "id": 462706968592142336, + "id_str": "462706968592142336", + "text": "@vaktpost @hinanawi_chan don’t let him know your shrine runs OSX…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 462692995436118016, + "in_reply_to_status_id_str": "462692995436118016", + "in_reply_to_user_id": 2361658938, + "in_reply_to_user_id_str": "2361658938", + "in_reply_to_screen_name": "vaktpost", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 03 21:14:27 +0000 2014", + "id": 462701747635761152, + "id_str": "462701747635761152", + "text": "Majestic wild dinosaurs, making occasional threat displays at passing cars. http://t.co/jNkjYU6qGH", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sat May 03 20:29:26 +0000 2014", + "id": 462690418619342849, + "id_str": "462690418619342849", + "text": "@DrPizza push people to pray for everything they want no matter how trivial —> every good thing no matter how trivial came from prayer!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 462689854057218048, + "in_reply_to_status_id_str": "462689854057218048", + "in_reply_to_user_id": 11375732, + "in_reply_to_user_id_str": "11375732", + "in_reply_to_screen_name": "DrPizza", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 03 20:23:58 +0000 2014", + "id": 462689042518536192, + "id_str": "462689042518536192", + "text": "@DrPizza free training: increase your ability to load up on cognitive dissonance", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 462688220136751105, + "in_reply_to_status_id_str": "462688220136751105", + "in_reply_to_user_id": 11375732, + "in_reply_to_user_id_str": "11375732", + "in_reply_to_screen_name": "DrPizza", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 03 20:22:39 +0000 2014", + "id": 462688709402722304, + "id_str": "462688709402722304", + "text": "@DrPizza you’re conflating specific religions with “religion,” but, yes, those specific religions promote extremely unhealthy mindsets", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 462688220136751105, + "in_reply_to_status_id_str": "462688220136751105", + "in_reply_to_user_id": 11375732, + "in_reply_to_user_id_str": "11375732", + "in_reply_to_screen_name": "DrPizza", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 03 20:11:00 +0000 2014", + "id": 462685778125279232, + "id_str": "462685778125279232", + "text": "@m1sp @zhuowei * calls myself out on incorrect use of the subjunctive", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 462681505181884417, + "in_reply_to_status_id_str": "462681505181884417", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 03 20:06:35 +0000 2014", + "id": 462684667553284096, + "id_str": "462684667553284096", + "text": "@m1sp @zhuowei if Rashk was straight he totally woulda had a romance subplot with her", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 462681505181884417, + "in_reply_to_status_id_str": "462681505181884417", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 03 19:55:07 +0000 2014", + "id": 462681781511401472, + "id_str": "462681781511401472", + "text": "@m1sp @zhuowei it is! I went for the gothic lolita look. She’s in her late 20s I think", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 462681505181884417, + "in_reply_to_status_id_str": "462681505181884417", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 03 19:28:57 +0000 2014", + "id": 462675195099357185, + "id_str": "462675195099357185", + "text": "@zhuowei @m1sp on a related note, I can’t draw pterosaurs http://t.co/ATMmXOnOk2", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 462669100204826624, + "in_reply_to_status_id_str": "462669100204826624", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sat May 03 18:51:01 +0000 2014", + "id": 462665649748475904, + "id_str": "462665649748475904", + "text": "@m1sp @zhuowei but Melmoiran is pretty bog standard, he's just a fox, he does whatever it is tame foxes do", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 462664973424934912, + "in_reply_to_status_id_str": "462664973424934912", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 03 18:49:37 +0000 2014", + "id": 462665299503104000, + "id_str": "462665299503104000", + "text": "@m1sp @zhuowei I intend for Fiori Ostinatto to have a pet artifice, the species of which I have not settled on yet", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 462664973424934912, + "in_reply_to_status_id_str": "462664973424934912", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 03 18:48:43 +0000 2014", + "id": 462665071836274689, + "id_str": "462665071836274689", + "text": "@zhuowei @m1sp the birds, the fox, etc, are intelligent relative to normal animals but they don't really have a higher sense of self", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 462664549225603072, + "in_reply_to_status_id_str": "462664549225603072", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 03 18:44:34 +0000 2014", + "id": 462664026401816576, + "id_str": "462664026401816576", + "text": "@m1sp @zhuowei I suppose the number of talking artifices as characters kinda glosses over the fact that the average artifice is Pretty Dumb", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 462663168439767040, + "in_reply_to_status_id_str": "462663168439767040", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 03 18:41:05 +0000 2014", + "id": 462663148810829825, + "id_str": "462663148810829825", + "text": "@zhuowei @m1sp well they're certainly not MEANT to... he might have done too good a job on his last great experiment.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 462662495132348417, + "in_reply_to_status_id_str": "462662495132348417", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 03 18:31:54 +0000 2014", + "id": 462660837044264960, + "id_str": "462660837044264960", + "text": "@m1sp this hat makes my baby brother look weirdly like Luzcrezo or Constans http://t.co/YuSn1EWh1x", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sat May 03 18:20:16 +0000 2014", + "id": 462657911546974208, + "id_str": "462657911546974208", + "text": "@MalwareJake @chriseng no, no, they did.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 462657681434505216, + "in_reply_to_status_id_str": "462657681434505216", + "in_reply_to_user_id": 77346069, + "in_reply_to_user_id_str": "77346069", + "in_reply_to_screen_name": "MalwareJake", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 03 18:20:06 +0000 2014", + "id": 462657869134180352, + "id_str": "462657869134180352", + "text": "@m1sp @zauspar I… I am??\n\n#GreekLinguisticsJokes", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 462653622665240576, + "in_reply_to_status_id_str": "462653622665240576", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 03 18:18:02 +0000 2014", + "id": 462657347631202304, + "id_str": "462657347631202304", + "text": ".@chriseng GAHHH. http://t.co/0zvdg98rcY", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 462646780975669248, + "in_reply_to_status_id_str": "462646780975669248", + "in_reply_to_user_id": 13752192, + "in_reply_to_user_id_str": "13752192", + "in_reply_to_screen_name": "chriseng", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 45, + "favorite_count": 41, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "tl" + }, + { + "created_at": "Sat May 03 18:17:29 +0000 2014", + "id": 462657210523594752, + "id_str": "462657210523594752", + "text": "RT @chriseng: Is this a real article or meant to be a #heartbleed parody?! http://t.co/wZrNviSy8s", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sat May 03 17:36:02 +0000 2014", + "id": 462646780975669248, + "id_str": "462646780975669248", + "text": "Is this a real article or meant to be a #heartbleed parody?! http://t.co/wZrNviSy8s", + "source": "MetroTwit", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 13752192, + "id_str": "13752192" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 26, + "favorite_count": 6, + "entities": { + "hashtags": [ + { + "text": "heartbleed", + "indices": [ + 40, + 51 + ] + } + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/wZrNviSy8s", + "expanded_url": "http://abclocal.go.com/wls/story?section=news/iteam&id=9521428", + "display_url": "abclocal.go.com/wls/story?sect…", + "indices": [ + 61, + 83 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 26, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sat May 03 18:14:53 +0000 2014", + "id": 462656556124090369, + "id_str": "462656556124090369", + "text": "RT @matthew_d_green: It seems increasingly likely that -- however they're doing it -- NSA has been building a library of TLS RSA server pri…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sat May 03 16:32:55 +0000 2014", + "id": 462630894545940480, + "id_str": "462630894545940480", + "text": "It seems increasingly likely that -- however they're doing it -- NSA has been building a library of TLS RSA server private keys.", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 106234268, + "id_str": "106234268" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 134, + "favorite_count": 46, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 134, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 03 18:14:50 +0000 2014", + "id": 462656542924615681, + "id_str": "462656542924615681", + "text": "RT @matthew_d_green: In case you're missing context: the removal of RSA in the next version of TLS is a perfect example of how Snowden has …", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sat May 03 16:31:01 +0000 2014", + "id": 462630416030380033, + "id_str": "462630416030380033", + "text": "In case you're missing context: the removal of RSA in the next version of TLS is a perfect example of how Snowden has improved our privacy.", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 106234268, + "id_str": "106234268" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 352, + "favorite_count": 146, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 352, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 03 17:20:46 +0000 2014", + "id": 462642938733142016, + "id_str": "462642938733142016", + "text": "@FioraAeterna @m1sp well since we're secretly the same person, we're at a combined total of 15473 which is almost 16384", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 462642498251128832, + "in_reply_to_status_id_str": "462642498251128832", + "in_reply_to_user_id": 2468699718, + "in_reply_to_user_id_str": "2468699718", + "in_reply_to_screen_name": "FioraAeterna", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 03 17:16:37 +0000 2014", + "id": 462641894917296128, + "id_str": "462641894917296128", + "text": "@m1sp congrats on the nice round number. http://t.co/tJ8rJdG2JD", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 9, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sat May 03 17:02:23 +0000 2014", + "id": 462638310746492928, + "id_str": "462638310746492928", + "text": "Both of those automated stadium matches I've seen so far were major upsets thanks to AI stupidity of only the finest sort :]", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 03 16:49:12 +0000 2014", + "id": 462634992380563456, + "id_str": "462634992380563456", + "text": "Apparently we're playing Salty Stadium or something? http://t.co/fcySF813BK", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sat May 03 16:18:52 +0000 2014", + "id": 462627359418773505, + "id_str": "462627359418773505", + "text": "Now after a week of feeling crummy I can get back to solving our problems with another buggy and undertested TLS implementation", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 5, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 03 16:13:20 +0000 2014", + "id": 462625967618678784, + "id_str": "462625967618678784", + "text": "@bcrypt my brain actually took that sign at first glance to be in English, French, Spanish or something", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 462618611384070144, + "in_reply_to_status_id_str": "462618611384070144", + "in_reply_to_user_id": 968881477, + "in_reply_to_user_id_str": "968881477", + "in_reply_to_screen_name": "bcrypt", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 03 16:10:16 +0000 2014", + "id": 462625196378439680, + "id_str": "462625196378439680", + "text": "@webbedspace take a look at what a sweetheart Mispy is… and what an angry murderhacker I am :]", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 462624787441799168, + "in_reply_to_status_id_str": "462624787441799168", + "in_reply_to_user_id": 23720736, + "in_reply_to_user_id_str": "23720736", + "in_reply_to_screen_name": "webbedspace", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 03 16:09:02 +0000 2014", + "id": 462624886075437057, + "id_str": "462624886075437057", + "text": "@aspects_ebooks YES.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 462611999298686977, + "in_reply_to_status_id_str": "462611999298686977", + "in_reply_to_user_id": 2345404375, + "in_reply_to_user_id_str": "2345404375", + "in_reply_to_screen_name": "aspects_ebooks", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": true, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Sat May 03 15:56:16 +0000 2014", + "id": 462621674517831681, + "id_str": "462621674517831681", + "text": "Also if you were wondering, the ♦️ in my profile is the international standard friendzone symbol. And/or a Homestuck reference.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 5, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 03 15:46:06 +0000 2014", + "id": 462619112557252608, + "id_str": "462619112557252608", + "text": "@m1sp I just had a dream I was a MTF trans elf.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 03 15:44:06 +0000 2014", + "id": 462618609832165376, + "id_str": "462618609832165376", + "text": "Just to clear up any remaining confusion: @m1sp and I are definitely, absolutely NOT the same person.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 7, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 03 15:40:17 +0000 2014", + "id": 462617648975859713, + "id_str": "462617648975859713", + "text": "@m1sp I know right? “Someone” was nudging me to produce a standalone short story set in Aspects", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 462616504727371778, + "in_reply_to_status_id_str": "462616504727371778", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 03 15:39:12 +0000 2014", + "id": 462617378153443328, + "id_str": "462617378153443328", + "text": "RT @m1sp: I wrote a thing about twitterbots and the curious humans who talk to them https://t.co/AVXyz5Dwaj", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sat May 03 09:29:27 +0000 2014", + "id": 462524328156725248, + "id_str": "462524328156725248", + "text": "I wrote a thing about twitterbots and the curious humans who talk to them https://t.co/AVXyz5Dwaj", + "source": "TweetDeck", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 1007638597, + "id_str": "1007638597" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 114, + "favorite_count": 110, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "https://t.co/AVXyz5Dwaj", + "expanded_url": "https://mispy.me/2014/05/the-mysterious-nature-of-bots/", + "display_url": "mispy.me/2014/05/the-my…", + "indices": [ + 74, + 97 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 114, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sat May 03 15:30:38 +0000 2014", + "id": 462615221274947584, + "id_str": "462615221274947584", + "text": "@m1sp oh I forgot to show you this last night. http://t.co/gZ1gCU0fgE In the year 826 she’s only 28… that sounds so young…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sat May 03 15:20:24 +0000 2014", + "id": 462612648514035712, + "id_str": "462612648514035712", + "text": "@m1sp @Trif4 *yawn* g’morrrrrn—", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 462608364661243904, + "in_reply_to_status_id_str": "462608364661243904", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 03 05:54:48 +0000 2014", + "id": 462470309652992000, + "id_str": "462470309652992000", + "text": "@m1sp @zhuowei of course it ends with Shanlar being murdered by his own most favorite creation", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 462462003714347008, + "in_reply_to_status_id_str": "462462003714347008", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 03 05:47:54 +0000 2014", + "id": 462468573626372096, + "id_str": "462468573626372096", + "text": "@m1sp @zhuowei that vague yet nagging sense that something Big concerning this is just beyond his sight, and so he waits", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 462462003714347008, + "in_reply_to_status_id_str": "462462003714347008", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 03 05:46:43 +0000 2014", + "id": 462468275600130048, + "id_str": "462468275600130048", + "text": "@m1sp @zhuowei as for Rashk’s exact reaction, he tries to play it off like he doesn’t even care — but he is restrained from murder by —", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 462462003714347008, + "in_reply_to_status_id_str": "462462003714347008", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 03 05:21:21 +0000 2014", + "id": 462461889696759809, + "id_str": "462461889696759809", + "text": "@zhuowei @m1sp aww poor Salazeel isn’t taken for his gender unless he goes bare-chested\n\nAspect of Place.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 462461342033920000, + "in_reply_to_status_id_str": "462461342033920000", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 03 05:17:18 +0000 2014", + "id": 462460872917778432, + "id_str": "462460872917778432", + "text": "@m1sp Salazeel is very Lawful Evil. Full page http://t.co/RV1M4nOTHG", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 462459042346967041, + "in_reply_to_status_id_str": "462459042346967041", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sat May 03 05:08:45 +0000 2014", + "id": 462458718706487296, + "id_str": "462458718706487296", + "text": "@m1sp also lol are they enough of a parallel to Rashk and Solornel https://t.co/8Nhkr8AwfG", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 462456308201836544, + "in_reply_to_status_id_str": "462456308201836544", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "quoted_status_id": 462392235653607424, + "quoted_status_id_str": "462392235653607424", + "quoted_status": { + "created_at": "Sat May 03 00:44:34 +0000 2014", + "id": 462392235653607424, + "id_str": "462392235653607424", + "text": "@m1sp villains dot jpeg http://t.co/lKtV4QWFGo", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "m1sp", + "name": "Mispy ☀", + "id": 1007638597, + "id_str": "1007638597", + "indices": [ + 0, + 5 + ] + } + ], + "media": [ + { + "id": 462392235188056064, + "id_str": "462392235188056064", + "indices": [ + 24, + 46 + ], + "media_url": "http://pbs.twimg.com/media/Bmq_Sb1IcAAX63T.jpg", + "media_url_https": "https://pbs.twimg.com/media/Bmq_Sb1IcAAX63T.jpg", + "url": "http://t.co/lKtV4QWFGo", + "display_url": "pic.twitter.com/lKtV4QWFGo", + "expanded_url": "http://twitter.com/0xabad1dea/status/462392235653607424/photo/1", + "type": "photo", + "sizes": { + "large": { + "w": 1024, + "h": 765, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 254, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 600, + "h": 448, + "resize": "fit" + } + } + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "hu" + }, + "retweet_count": 0, + "favorite_count": 1, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sat May 03 05:02:21 +0000 2014", + "id": 462457108227977217, + "id_str": "462457108227977217", + "text": "@m1sp there’d be a span of years between poor Pairo dying and Varodahn being forged though", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 462456308201836544, + "in_reply_to_status_id_str": "462456308201836544", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 03 05:01:28 +0000 2014", + "id": 462456886433185792, + "id_str": "462456886433185792", + "text": "@m1sp well in rits ch4 he says she is long dead so I’m pretty sure Shanlar straight up sent him a letter", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 462456308201836544, + "in_reply_to_status_id_str": "462456308201836544", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 03 04:56:51 +0000 2014", + "id": 462455723398819840, + "id_str": "462455723398819840", + "text": "@m1sp @antumbral it might just be as Pairo, but, I probably would have called her “Rashk’s sister”", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 462455571321335808, + "in_reply_to_status_id_str": "462455571321335808", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 03 04:54:17 +0000 2014", + "id": 462455078558105600, + "id_str": "462455078558105600", + "text": "@m1sp @antumbral HAHA I DIDN’T TELL YOU??", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 462454977776988161, + "in_reply_to_status_id_str": "462454977776988161", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 03 04:33:52 +0000 2014", + "id": 462449939667492864, + "id_str": "462449939667492864", + "text": ".@dakami macro virus?? plz. Was written by a fan.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 462449490775900160, + "in_reply_to_status_id_str": "462449490775900160", + "in_reply_to_user_id": 8917142, + "in_reply_to_user_id_str": "8917142", + "in_reply_to_screen_name": "dakami", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 7, + "favorited": false, + "retweeted": false, + "lang": "ht" + }, + { + "created_at": "Sat May 03 04:32:23 +0000 2014", + "id": 462449566198296576, + "id_str": "462449566198296576", + "text": "RT @dakami: I'm just saying someday we're going to find out the Melissa virus was written by @0xabad1dea.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sat May 03 04:32:05 +0000 2014", + "id": 462449490775900160, + "id_str": "462449490775900160", + "text": "I'm just saying someday we're going to find out the Melissa virus was written by @0xabad1dea.", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 8917142, + "id_str": "8917142" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 5, + "favorite_count": 15, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "0xabad1dea", + "name": "Melissa", + "id": 126030998, + "id_str": "126030998", + "indices": [ + 81, + 92 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 5, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 03 04:21:27 +0000 2014", + "id": 462446816983011328, + "id_str": "462446816983011328", + "text": "@Myriachan send me enough deets to repro. Forget it ever happened.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 462446705691332608, + "in_reply_to_status_id_str": "462446705691332608", + "in_reply_to_user_id": 1556497868, + "in_reply_to_user_id_str": "1556497868", + "in_reply_to_screen_name": "Myriachan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 03 04:20:34 +0000 2014", + "id": 462446593523081216, + "id_str": "462446593523081216", + "text": "Anyway I get the feeling from twitter that Someone said Something about weaponized 0day but heck if I know who or what this time around", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 03 04:17:31 +0000 2014", + "id": 462445824489058304, + "id_str": "462445824489058304", + "text": "Announcing Abadidea’s Safe and Sanitary 0day Disposal Service. Like a good friend with a shovel, Abadidea is there.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 4, + "favorite_count": 15, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 03 04:12:44 +0000 2014", + "id": 462444624544821248, + "id_str": "462444624544821248", + "text": "RT @thegrugq: @marshray @dakami @McGrewSecurity sorry, we somehow reached consensus on disclosure... I don't know what's left now.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sat May 03 03:51:25 +0000 2014", + "id": 462439258943275009, + "id_str": "462439258943275009", + "text": "@marshray @dakami @McGrewSecurity sorry, we somehow reached consensus on disclosure... I don't know what's left now.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 462439056085766145, + "in_reply_to_status_id_str": "462439056085766145", + "in_reply_to_user_id": 88223099, + "in_reply_to_user_id_str": "88223099", + "in_reply_to_screen_name": "marshray", + "user": { + "id": 18983429, + "id_str": "18983429" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 4, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "marshray", + "name": "Marsh Ray", + "id": 88223099, + "id_str": "88223099", + "indices": [ + 0, + 9 + ] + }, + { + "screen_name": "dakami", + "name": "Dan Kaminsky", + "id": 8917142, + "id_str": "8917142", + "indices": [ + 10, + 17 + ] + }, + { + "screen_name": "McGrewSecurity", + "name": "Wesley McGrew", + "id": 13275122, + "id_str": "13275122", + "indices": [ + 18, + 33 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 3, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 03 04:11:25 +0000 2014", + "id": 462444291865214976, + "id_str": "462444291865214976", + "text": "@aspects_ebooks Helian is definitely not an angel", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 462439294737842176, + "in_reply_to_status_id_str": "462439294737842176", + "in_reply_to_user_id": 2345404375, + "in_reply_to_user_id_str": "2345404375", + "in_reply_to_screen_name": "aspects_ebooks", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 03 03:19:43 +0000 2014", + "id": 462431281582972929, + "id_str": "462431281582972929", + "text": "@m1sp yissss I have more characters than this http://t.co/SiXPvX0xN1", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sat May 03 02:45:22 +0000 2014", + "id": 462422636963049472, + "id_str": "462422636963049472", + "text": "@jduck 🎉👶🎉", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 462422358511198208, + "in_reply_to_status_id_str": "462422358511198208", + "in_reply_to_user_id": 100564168, + "in_reply_to_user_id_str": "100564168", + "in_reply_to_screen_name": "jduck", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Sat May 03 01:57:22 +0000 2014", + "id": 462410556725805056, + "id_str": "462410556725805056", + "text": "@zauspar glory in the tsundere, tear the world a-tsundere, my hit books", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 462405516518359041, + "in_reply_to_status_id_str": "462405516518359041", + "in_reply_to_user_id": 216571343, + "in_reply_to_user_id_str": "216571343", + "in_reply_to_screen_name": "zauspar", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 4, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat May 03 00:44:34 +0000 2014", + "id": 462392235653607424, + "id_str": "462392235653607424", + "text": "@m1sp villains dot jpeg http://t.co/lKtV4QWFGo", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "hu" + }, + { + "created_at": "Sat May 03 00:15:43 +0000 2014", + "id": 462384974856192001, + "id_str": "462384974856192001", + "text": "@eevee I don’t know any of these words. Am I a bad programmer ??", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 462383959465136128, + "in_reply_to_status_id_str": "462383959465136128", + "in_reply_to_user_id": 14412937, + "in_reply_to_user_id_str": "14412937", + "in_reply_to_screen_name": "eevee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 02 23:43:12 +0000 2014", + "id": 462376791571976193, + "id_str": "462376791571976193", + "text": "@longlongjump @Hest_ebooks :[", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 462376256118730752, + "in_reply_to_status_id_str": "462376256118730752", + "in_reply_to_user_id": 369470469, + "in_reply_to_user_id_str": "369470469", + "in_reply_to_screen_name": "longlongjump", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Fri May 02 23:28:24 +0000 2014", + "id": 462373068573523968, + "id_str": "462373068573523968", + "text": "RT @Hest_ebooks: Ukraine clashes: dozens dead after Odessa building fire http://t.co/38vmvs2Ore", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Fri May 02 23:11:47 +0000 2014", + "id": 462368888022630400, + "id_str": "462368888022630400", + "text": "Ukraine clashes: dozens dead after Odessa building fire http://t.co/38vmvs2Ore", + "source": "Twitter for Mac", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 1581484548, + "id_str": "1581484548" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 5, + "favorite_count": 1, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/38vmvs2Ore", + "expanded_url": "http://www.theguardian.com/world/2014/may/02/ukraine-dead-odessa-building-fire", + "display_url": "theguardian.com/world/2014/may…", + "indices": [ + 56, + 78 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 5, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri May 02 23:24:20 +0000 2014", + "id": 462372043892465664, + "id_str": "462372043892465664", + "text": "@FioraAeterna ding ding.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 462371625174712320, + "in_reply_to_status_id_str": "462371625174712320", + "in_reply_to_user_id": 2468699718, + "in_reply_to_user_id_str": "2468699718", + "in_reply_to_screen_name": "FioraAeterna", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 02 23:17:04 +0000 2014", + "id": 462370217428254720, + "id_str": "462370217428254720", + "text": "@puellavulnerata but I realize that may be a big… ask :]", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 462369458149806080, + "in_reply_to_status_id_str": "462369458149806080", + "in_reply_to_user_id": 54666727, + "in_reply_to_user_id_str": "54666727", + "in_reply_to_screen_name": "puellavulnerata", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 02 23:16:32 +0000 2014", + "id": 462370082426224640, + "id_str": "462370082426224640", + "text": "@puellavulnerata if you’re willing to believe Apple first party software is never malware, then using Safari has a very solid trust chain", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 462369458149806080, + "in_reply_to_status_id_str": "462369458149806080", + "in_reply_to_user_id": 54666727, + "in_reply_to_user_id_str": "54666727", + "in_reply_to_screen_name": "puellavulnerata", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 02 23:13:18 +0000 2014", + "id": 462369266982199296, + "id_str": "462369266982199296", + "text": "@puellavulnerata I have such a means, but I suspect you wouldn’t be caught dead using an iPad", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 462365446679703552, + "in_reply_to_status_id_str": "462365446679703552", + "in_reply_to_user_id": 54666727, + "in_reply_to_user_id_str": "54666727", + "in_reply_to_screen_name": "puellavulnerata", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 02 23:10:21 +0000 2014", + "id": 462368526515593216, + "id_str": "462368526515593216", + "text": "@geekable someone linked me this before, but I find it garrulous even by my standards", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 462365163048280064, + "in_reply_to_status_id_str": "462365163048280064", + "in_reply_to_user_id": 755035, + "in_reply_to_user_id_str": "755035", + "in_reply_to_screen_name": "geekable", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 02 23:06:32 +0000 2014", + "id": 462367563536928768, + "id_str": "462367563536928768", + "text": "@frkbmb we live in different filter bubbles. Where I come from, “rabid free speech” is a Conservative thing and the Liberals want to censor", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 462366684183924736, + "in_reply_to_status_id_str": "462366684183924736", + "in_reply_to_user_id": 540721095, + "in_reply_to_user_id_str": "540721095", + "in_reply_to_screen_name": "frkbmb", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 02 23:02:52 +0000 2014", + "id": 462366644158087169, + "id_str": "462366644158087169", + "text": "@ELLIOTTCABLE but “offensive jokes” are generally offensive because they maltreat something that *is* scary in the real world.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 462366019743277056, + "in_reply_to_status_id_str": "462366019743277056", + "in_reply_to_user_id": 771681, + "in_reply_to_user_id_str": "771681", + "in_reply_to_screen_name": "ELLIOTTCABLE", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 02 23:02:18 +0000 2014", + "id": 462366499270057984, + "id_str": "462366499270057984", + "text": "@ELLIOTTCABLE the particular context doesn’t really matter. I just can’t see engaging in criticism of taste as particularly frightening.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 462366019743277056, + "in_reply_to_status_id_str": "462366019743277056", + "in_reply_to_user_id": 771681, + "in_reply_to_user_id_str": "771681", + "in_reply_to_screen_name": "ELLIOTTCABLE", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 02 23:01:34 +0000 2014", + "id": 462366312908742656, + "id_str": "462366312908742656", + "text": "To be clear, I am NOT talking about censorship, I’m talking about: “I think that’s offensive.” “Hmm, I agree.” “HOW DARE U”", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 02 22:59:56 +0000 2014", + "id": 462365905327226880, + "id_str": "462365905327226880", + "text": "@ELLIOTTCABLE people complaining about the taste of other people does not rank highly on “scary” for me\n\nGetting raped on the other hand…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 462364869405048832, + "in_reply_to_status_id_str": "462364869405048832", + "in_reply_to_user_id": 771681, + "in_reply_to_user_id_str": "771681", + "in_reply_to_screen_name": "ELLIOTTCABLE", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 02 22:54:55 +0000 2014", + "id": 462364640924925952, + "id_str": "462364640924925952", + "text": "The vigor with which people will defend other people’s offensive jokes, as if free speech is at risk if we agree it’s offensive, puzzles me", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 5, + "favorite_count": 6, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 02 22:18:05 +0000 2014", + "id": 462355373341831169, + "id_str": "462355373341831169", + "text": "@DelilahSDawson @Xaosopher and relates it back to the original fairy tale with the mirror that only reflects ugliness", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 462341084320768000, + "in_reply_to_status_id_str": "462341084320768000", + "in_reply_to_user_id": 20994006, + "in_reply_to_user_id_str": "20994006", + "in_reply_to_screen_name": "DelilahSDawson", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 02 22:17:36 +0000 2014", + "id": 462355252088672256, + "id_str": "462355252088672256", + "text": "@DelilahSDawson @Xaosopher there’s an interesting post on tumblr about how he uses personality mirroring as a tactic", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 462341084320768000, + "in_reply_to_status_id_str": "462341084320768000", + "in_reply_to_user_id": 20994006, + "in_reply_to_user_id_str": "20994006", + "in_reply_to_screen_name": "DelilahSDawson", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 02 21:23:44 +0000 2014", + "id": 462341694659518464, + "id_str": "462341694659518464", + "text": "RT @thezeist: Is it Pokémon or #bigdata technology? https://t.co/AXdazzUuhm", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Fri May 02 20:26:54 +0000 2014", + "id": 462327392330334208, + "id_str": "462327392330334208", + "text": "Is it Pokémon or #bigdata technology? https://t.co/AXdazzUuhm", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 100964199, + "id_str": "100964199" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 45, + "favorite_count": 25, + "entities": { + "hashtags": [ + { + "text": "bigdata", + "indices": [ + 17, + 25 + ] + } + ], + "symbols": [ + + ], + "urls": [ + { + "url": "https://t.co/AXdazzUuhm", + "expanded_url": "https://docs.google.com/forms/d/1kckcq_uv8dk9-W5rIdtqRwCHN4Uh209ELPUjTEZJDxc/viewform", + "display_url": "docs.google.com/forms/d/1kckcq…", + "indices": [ + 38, + 61 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "hu" + }, + "retweet_count": 45, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "hu" + }, + { + "created_at": "Fri May 02 21:20:36 +0000 2014", + "id": 462340907015348224, + "id_str": "462340907015348224", + "text": "@m1sp getting more mileage out of Salazeel http://t.co/bDqgJzsf3h cc @antumbral", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri May 02 20:53:24 +0000 2014", + "id": 462334058757107712, + "id_str": "462334058757107712", + "text": "@antumbral @m1sp haha zomg you have no idea", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 462333897900965888, + "in_reply_to_status_id_str": "462333897900965888", + "in_reply_to_user_id": 19837512, + "in_reply_to_user_id_str": "19837512", + "in_reply_to_screen_name": "antumbral", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 02 20:53:24 +0000 2014", + "id": 462334058757107712, + "id_str": "462334058757107712", + "text": "@antumbral @m1sp haha zomg you have no idea", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 462333897900965888, + "in_reply_to_status_id_str": "462333897900965888", + "in_reply_to_user_id": 19837512, + "in_reply_to_user_id_str": "19837512", + "in_reply_to_screen_name": "antumbral", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 02 20:52:04 +0000 2014", + "id": 462333724844367872, + "id_str": "462333724844367872", + "text": "@antumbral @m1sp (I *promise* I do not kill this one off at age six! PROMISE!)", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 462332210830249984, + "in_reply_to_status_id_str": "462332210830249984", + "in_reply_to_user_id": 19837512, + "in_reply_to_user_id_str": "19837512", + "in_reply_to_screen_name": "antumbral", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 02 20:50:32 +0000 2014", + "id": 462333338460909570, + "id_str": "462333338460909570", + "text": "@antumbral @m1sp Good. That will make it hurt more", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 462332210830249984, + "in_reply_to_status_id_str": "462332210830249984", + "in_reply_to_user_id": 19837512, + "in_reply_to_user_id_str": "19837512", + "in_reply_to_screen_name": "antumbral", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 02 20:43:49 +0000 2014", + "id": 462331647300747264, + "id_str": "462331647300747264", + "text": "@antumbral @m1sp (I kinda messed up in pen, her name is Paironiel)", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 462330374958223360, + "in_reply_to_status_id_str": "462330374958223360", + "in_reply_to_user_id": 19837512, + "in_reply_to_user_id_str": "19837512", + "in_reply_to_screen_name": "antumbral", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 02 20:41:01 +0000 2014", + "id": 462330945019060224, + "id_str": "462330945019060224", + "text": "@antumbral @m1sp heheh, this portrays pretty much *immediately* before he ragequits society's expectations. The lil one is his sister.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 462330374958223360, + "in_reply_to_status_id_str": "462330374958223360", + "in_reply_to_user_id": 19837512, + "in_reply_to_user_id_str": "19837512", + "in_reply_to_screen_name": "antumbral", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 02 20:39:55 +0000 2014", + "id": 462330669537185792, + "id_str": "462330669537185792", + "text": "@AggeKA @bakkegaard aww shucks well now I better go find a bug to complain about", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 462330051602968577, + "in_reply_to_status_id_str": "462330051602968577", + "in_reply_to_user_id": 419773303, + "in_reply_to_user_id_str": "419773303", + "in_reply_to_screen_name": "AggeKA", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 02 20:35:55 +0000 2014", + "id": 462329661457186816, + "id_str": "462329661457186816", + "text": "@m1sp oh noes http://t.co/o1uKzdLhiH", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "nl" + }, + { + "created_at": "Fri May 02 20:20:00 +0000 2014", + "id": 462325654554689536, + "id_str": "462325654554689536", + "text": "@Jon889 @michaeljhudson sweet innocent, do not trouble yourself. It’s just beads. Ssh.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 462325409867395072, + "in_reply_to_status_id_str": "462325409867395072", + "in_reply_to_user_id": 154182985, + "in_reply_to_user_id_str": "154182985", + "in_reply_to_screen_name": "Jon889", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 02 20:17:11 +0000 2014", + "id": 462324948561043456, + "id_str": "462324948561043456", + "text": "RT @evacide: Fake PGP keys discovered for TAILs developers, created at the same time as fake Tor dev keys: https://t.co/LC736nAGOk via @run…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Fri May 02 20:16:27 +0000 2014", + "id": 462324762643922944, + "id_str": "462324762643922944", + "text": "Fake PGP keys discovered for TAILs developers, created at the same time as fake Tor dev keys: https://t.co/LC736nAGOk via @runasand", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 14707266, + "id_str": "14707266" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 210, + "favorite_count": 71, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "https://t.co/LC736nAGOk", + "expanded_url": "https://lists.torproject.org/pipermail/tor-talk/2014-May/032838.html", + "display_url": "lists.torproject.org/pipermail/tor-…", + "indices": [ + 94, + 117 + ] + } + ], + "user_mentions": [ + { + "screen_name": "runasand", + "name": "Runa A. Sandvik", + "id": 19959946, + "id_str": "19959946", + "indices": [ + 122, + 131 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 210, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri May 02 20:15:49 +0000 2014", + "id": 462324601323003904, + "id_str": "462324601323003904", + "text": "@gotyaoi @m1sp http://t.co/Bwk05MDQ4Q", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 462321050756599809, + "in_reply_to_status_id_str": "462321050756599809", + "in_reply_to_user_id": 393022772, + "in_reply_to_user_id_str": "393022772", + "in_reply_to_screen_name": "gotyaoi", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Fri May 02 20:05:55 +0000 2014", + "id": 462322111110209536, + "id_str": "462322111110209536", + "text": "@gotyaoi @m1sp funny enough for most characters I know where I got the idea for their name but I’m drawing a total blank on him", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 462321050756599809, + "in_reply_to_status_id_str": "462321050756599809", + "in_reply_to_user_id": 393022772, + "in_reply_to_user_id_str": "393022772", + "in_reply_to_screen_name": "gotyaoi", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 02 20:02:34 +0000 2014", + "id": 462321268885557248, + "id_str": "462321268885557248", + "text": "@m1sp Dzovin-nar. Tsovinar? Tsubinaaru. She’d lose her mind", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 462320531316817920, + "in_reply_to_status_id_str": "462320531316817920", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "hr" + }, + { + "created_at": "Fri May 02 19:57:51 +0000 2014", + "id": 462320080626679808, + "id_str": "462320080626679808", + "text": "@_larry0 🎉", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 462319099688009728, + "in_reply_to_status_id_str": "462319099688009728", + "in_reply_to_user_id": 17055552, + "in_reply_to_user_id_str": "17055552", + "in_reply_to_screen_name": "_larry0", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Fri May 02 19:57:22 +0000 2014", + "id": 462319958840868864, + "id_str": "462319958840868864", + "text": "@m1sp @zhuowei http://t.co/lEhNPoejjz", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Fri May 02 19:50:31 +0000 2014", + "id": 462318234499571712, + "id_str": "462318234499571712", + "text": "@m1sp have I ever mentioned that I want Aspects to be an anime just because I think the slaughtered pronunciations would be cute", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 02 19:45:46 +0000 2014", + "id": 462317040691589120, + "id_str": "462317040691589120", + "text": "@uroboro845 @m1sp also I was referring to the kind where you have the original comic in .jp and the .en is a metadata layer managed by app", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 462316641003773952, + "in_reply_to_status_id_str": "462316641003773952", + "in_reply_to_user_id": 325053904, + "in_reply_to_user_id_str": "325053904", + "in_reply_to_screen_name": "uroboro845", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 02 19:43:21 +0000 2014", + "id": 462316431993233410, + "id_str": "462316431993233410", + "text": "@zhuowei @m1sp @uroboro845 ahh Vegeta in a scientific paper", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 462316057244352512, + "in_reply_to_status_id_str": "462316057244352512", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 02 19:42:18 +0000 2014", + "id": 462316166367965184, + "id_str": "462316166367965184", + "text": "@uroboro845 @m1sp especially in manga they can literally be part of the artwork itself", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 462315892798685184, + "in_reply_to_status_id_str": "462315892798685184", + "in_reply_to_user_id": 325053904, + "in_reply_to_user_id_str": "325053904", + "in_reply_to_screen_name": "uroboro845", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 02 19:41:56 +0000 2014", + "id": 462316075376705538, + "id_str": "462316075376705538", + "text": "@uroboro845 @m1sp even if you do the text boxes are not necessarily some sort of unique queryable structure", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 462315892798685184, + "in_reply_to_status_id_str": "462315892798685184", + "in_reply_to_user_id": 325053904, + "in_reply_to_user_id_str": "325053904", + "in_reply_to_screen_name": "uroboro845", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 02 19:38:49 +0000 2014", + "id": 462315290177851392, + "id_str": "462315290177851392", + "text": "@m1sp @uroboro845 with such a setup you would be able to get the stats for several hundred unique pages fairly quickly", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 462313893641990144, + "in_reply_to_status_id_str": "462313893641990144", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 02 19:38:09 +0000 2014", + "id": 462315125559791617, + "id_str": "462315125559791617", + "text": "@m1sp @uroboro845 I’m pretty sure distributors of digital comics with translations just have someone manually clickdrag bounding boxes", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 462313893641990144, + "in_reply_to_status_id_str": "462313893641990144", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 02 19:22:55 +0000 2014", + "id": 462311289449381891, + "id_str": "462311289449381891", + "text": "@Shufflejoy not that I’m recommending this, but I’ve known multiple pairs of young people who solved this by getting married", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 462303101106397184, + "in_reply_to_status_id_str": "462303101106397184", + "in_reply_to_user_id": 1567524811, + "in_reply_to_user_id_str": "1567524811", + "in_reply_to_screen_name": "Shufflejoy", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 02 19:20:52 +0000 2014", + "id": 462310772203593729, + "id_str": "462310772203593729", + "text": "@DarrenPMeyer iOS and OSX have some protocol for detecting this automatically, but I’m pretty sure that only works “in the family”", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 462299676990263296, + "in_reply_to_status_id_str": "462299676990263296", + "in_reply_to_user_id": 468928589, + "in_reply_to_user_id_str": "468928589", + "in_reply_to_screen_name": "DarrenPMeyer", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 02 19:15:41 +0000 2014", + "id": 462309467548573696, + "id_str": "462309467548573696", + "text": "@mhorsfall \\o/ haha I don’t have a proof copy of the revised upload, hope it doesn’t come out as 441 pages of solid black or something ;)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 462309268138754048, + "in_reply_to_status_id_str": "462309268138754048", + "in_reply_to_user_id": 167973305, + "in_reply_to_user_id_str": "167973305", + "in_reply_to_screen_name": "mhorsfall", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 02 19:12:51 +0000 2014", + "id": 462308755217330180, + "id_str": "462308755217330180", + "text": "RT @michaeljhudson: a team of designers at Microsoft are realizing their mistake too late http://t.co/7sFTBQ9q3L", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Fri May 02 05:35:17 +0000 2014", + "id": 462103006410858496, + "id_str": "462103006410858496", + "text": "a team of designers at Microsoft are realizing their mistake too late http://t.co/7sFTBQ9q3L", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 35050151, + "id_str": "35050151" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1684, + "favorite_count": 1348, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ], + "media": [ + { + "id": 462103006415052800, + "id_str": "462103006415052800", + "indices": [ + 70, + 92 + ], + "media_url": "http://pbs.twimg.com/media/Bmm4PGsCYAAyzCm.jpg", + "media_url_https": "https://pbs.twimg.com/media/Bmm4PGsCYAAyzCm.jpg", + "url": "http://t.co/7sFTBQ9q3L", + "display_url": "pic.twitter.com/7sFTBQ9q3L", + "expanded_url": "http://twitter.com/michaeljhudson/status/462103006410858496/photo/1", + "type": "photo", + "sizes": { + "medium": { + "w": 600, + "h": 450, + "resize": "fit" + }, + "large": { + "w": 1024, + "h": 768, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 255, + "resize": "fit" + } + } + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 1684, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri May 02 19:11:45 +0000 2014", + "id": 462308481111187456, + "id_str": "462308481111187456", + "text": "@m1sp of course ONCE that was over with I went from poverty to upper middle class in a matter of months but the upfront barrier is very real", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 462282147970023424, + "in_reply_to_status_id_str": "462282147970023424", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 02 19:10:30 +0000 2014", + "id": 462308163510091776, + "id_str": "462308163510091776", + "text": "@ClausHoumann @SwiftOnSecurity I’m taking this as a confession", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 462307870047223811, + "in_reply_to_status_id_str": "462307870047223811", + "in_reply_to_user_id": 91087039, + "in_reply_to_user_id_str": "91087039", + "in_reply_to_screen_name": "ClausHoumann", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 02 19:06:42 +0000 2014", + "id": 462307209377251329, + "id_str": "462307209377251329", + "text": "@m1sp “moving to an area of higher employment” cost me several thousand dollars up front. My father paid for most of it.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 462282147970023424, + "in_reply_to_status_id_str": "462282147970023424", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 2, + "favorited": true, + "retweeted": true, + "lang": "en" + }, + { + "created_at": "Fri May 02 19:02:05 +0000 2014", + "id": 462306048008024065, + "id_str": "462306048008024065", + "text": "@SwiftOnSecurity this stuff about JP Morgan is valid and interesting tho. I assume you have a “real” account somewhere", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 462305482653192192, + "in_reply_to_status_id_str": "462305482653192192", + "in_reply_to_user_id": 2436389418, + "in_reply_to_user_id_str": "2436389418", + "in_reply_to_screen_name": "SwiftOnSecurity", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 02 18:53:01 +0000 2014", + "id": 462303764423409664, + "id_str": "462303764423409664", + "text": "@SwiftOnSecurity you make some good standalone tweets but they don’t really fit the parody theme of the account and it’s jarring", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 462253547078164481, + "in_reply_to_status_id_str": "462253547078164481", + "in_reply_to_user_id": 2436389418, + "in_reply_to_user_id_str": "2436389418", + "in_reply_to_screen_name": "SwiftOnSecurity", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 02 18:46:56 +0000 2014", + "id": 462302234660052992, + "id_str": "462302234660052992", + "text": "@comex it wasn’t intended to, I threw adjectives together as they occurred to me", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 462302042699345920, + "in_reply_to_status_id_str": "462302042699345920", + "in_reply_to_user_id": 14550962, + "in_reply_to_user_id_str": "14550962", + "in_reply_to_screen_name": "comex", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 02 18:46:19 +0000 2014", + "id": 462302079743447040, + "id_str": "462302079743447040", + "text": "@DrPizza there definitely are native-born Americans with two middle names. America definitely doesn’t know what to do about them either.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 462250320584642560, + "in_reply_to_status_id_str": "462250320584642560", + "in_reply_to_user_id": 11375732, + "in_reply_to_user_id_str": "11375732", + "in_reply_to_screen_name": "DrPizza", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 02 18:44:46 +0000 2014", + "id": 462301690298114048, + "id_str": "462301690298114048", + "text": "Big data reveals the scandalous truth of my exciting life http://t.co/Tc7RchGIQX", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 8, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri May 02 18:39:42 +0000 2014", + "id": 462300415124848641, + "id_str": "462300415124848641", + "text": "@comex https://t.co/4ZdMO8C4hh", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 462300230541930496, + "in_reply_to_status_id_str": "462300230541930496", + "in_reply_to_user_id": 14550962, + "in_reply_to_user_id_str": "14550962", + "in_reply_to_screen_name": "comex", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "quoted_status_id": 462096782974263296, + "quoted_status_id_str": "462096782974263296", + "quoted_status": { + "created_at": "Fri May 02 05:10:33 +0000 2014", + "id": 462096782974263296, + "id_str": "462096782974263296", + "text": "@joshuajuran lawyering the meaning of free as an adjective is a major pet peeve of mine", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 462096148145008641, + "in_reply_to_status_id_str": "462096148145008641", + "in_reply_to_user_id": 312204532, + "in_reply_to_user_id_str": "312204532", + "in_reply_to_screen_name": "joshuajuran", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "joshuajuran", + "name": "Josh Juran", + "id": 312204532, + "id_str": "312204532", + "indices": [ + 0, + 12 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Fri May 02 18:36:24 +0000 2014", + "id": 462299582962343936, + "id_str": "462299582962343936", + "text": "@jalevijo infosec is the b e s t and definitely not driving me to an early grave of stress", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 462299359384985601, + "in_reply_to_status_id_str": "462299359384985601", + "in_reply_to_user_id": 1188257988, + "in_reply_to_user_id_str": "1188257988", + "in_reply_to_screen_name": "jalevijo", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 02 18:29:33 +0000 2014", + "id": 462297859535425536, + "id_str": "462297859535425536", + "text": "How to cosplay as infosec:\n\n1) Wear RSA tokens around your neck \n\n2) No, more\n\n3) There you go. Now door surf your way in.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 18, + "favorite_count": 25, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 02 18:20:47 +0000 2014", + "id": 462295655122501633, + "id_str": "462295655122501633", + "text": "@matt_merkle I defer your question to @focalintent", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 462295537857744898, + "in_reply_to_status_id_str": "462295537857744898", + "in_reply_to_user_id": 16512543, + "in_reply_to_user_id_str": "16512543", + "in_reply_to_screen_name": "matt_merkle", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 02 18:08:52 +0000 2014", + "id": 462292654005682176, + "id_str": "462292654005682176", + "text": "Police pointing radar guns look a little too much like police pointing real guns", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 5, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 02 16:04:52 +0000 2014", + "id": 462261450493657090, + "id_str": "462261450493657090", + "text": "@grp ... it's not terribly helpful that it completely omits the header showing that's a reader-submitted question", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 462260951526289408, + "in_reply_to_status_id_str": "462260951526289408", + "in_reply_to_user_id": 69459178, + "in_reply_to_user_id_str": "69459178", + "in_reply_to_screen_name": "grp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 02 15:58:07 +0000 2014", + "id": 462259749330096128, + "id_str": "462259749330096128", + "text": "@m1sp I spent all the healing points on reincarnation, and it's too expensive a buff to cast on every character.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 462259539048288256, + "in_reply_to_status_id_str": "462259539048288256", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 02 15:54:41 +0000 2014", + "id": 462258884359757824, + "id_str": "462258884359757824", + "text": "@m1sp as promised http://t.co/oDn4Dr8Uvf", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "et" + }, + { + "created_at": "Fri May 02 15:44:12 +0000 2014", + "id": 462256249468620800, + "id_str": "462256249468620800", + "text": "I look up and there are rainbow lights that weren't there before. They spontaneously form in the Veracode environment http://t.co/WzgUEwNBXx", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 13, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri May 02 15:19:22 +0000 2014", + "id": 462249999397449729, + "id_str": "462249999397449729", + "text": ".@kherge I don't see any way for the 1.6 million number to be right, it should be more like 14k. No idea if mail.app or Exchange is at fault", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 462249653350584320, + "in_reply_to_status_id_str": "462249653350584320", + "in_reply_to_user_id": 389676688, + "in_reply_to_user_id_str": "389676688", + "in_reply_to_screen_name": "kherge", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 02 15:17:35 +0000 2014", + "id": 462249548724043776, + "id_str": "462249548724043776", + "text": "@Tzeejay checking my mail...?", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 462249481321611264, + "in_reply_to_status_id_str": "462249481321611264", + "in_reply_to_user_id": 1696729956, + "in_reply_to_user_id_str": "1696729956", + "in_reply_to_screen_name": "Tzeejay", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 02 15:15:13 +0000 2014", + "id": 462248952445009920, + "id_str": "462248952445009920", + "text": "@ELLIOTTCABLE @Kufat Exchange. Have you seen the Exchange webmail. For a nontrivial number of mails it's pretty terrible.", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 462248675935129601, + "in_reply_to_status_id_str": "462248675935129601", + "in_reply_to_user_id": 771681, + "in_reply_to_user_id_str": "771681", + "in_reply_to_screen_name": "ELLIOTTCABLE", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 02 15:13:54 +0000 2014", + "id": 462248621761888256, + "id_str": "462248621761888256", + "text": "@ELLIOTTCABLE @Kufat mail dot app", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 462248553549529088, + "in_reply_to_status_id_str": "462248553549529088", + "in_reply_to_user_id": 771681, + "in_reply_to_user_id_str": "771681", + "in_reply_to_screen_name": "ELLIOTTCABLE", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "lv" + }, + { + "created_at": "Fri May 02 15:08:35 +0000 2014", + "id": 462247284915179520, + "id_str": "462247284915179520", + "text": "... help http://t.co/VH4ZmmkVJx", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 6, + "favorite_count": 15, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri May 02 14:38:19 +0000 2014", + "id": 462239666763481088, + "id_str": "462239666763481088", + "text": "@alt_m1sp she was born with freckles, but that's probably how my red spots form\n\nThis gives me an idea", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 462238968784752640, + "in_reply_to_status_id_str": "462238968784752640", + "in_reply_to_user_id": 2401670173, + "in_reply_to_user_id_str": "2401670173", + "in_reply_to_screen_name": "alt_m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 02 14:34:24 +0000 2014", + "id": 462238681542455296, + "id_str": "462238681542455296", + "text": "@alt_m1sp worse I’m secretly Clarion. My cute freckles are actually just burst capillaries", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 462238367610961920, + "in_reply_to_status_id_str": "462238367610961920", + "in_reply_to_user_id": 2401670173, + "in_reply_to_user_id_str": "2401670173", + "in_reply_to_screen_name": "alt_m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 02 14:32:44 +0000 2014", + "id": 462238262170746880, + "id_str": "462238262170746880", + "text": "@alt_m1sp I assume for unrelated reasons…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 462238121073991680, + "in_reply_to_status_id_str": "462238121073991680", + "in_reply_to_user_id": 2401670173, + "in_reply_to_user_id_str": "2401670173", + "in_reply_to_screen_name": "alt_m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 02 14:30:33 +0000 2014", + "id": 462237711563489280, + "id_str": "462237711563489280", + "text": "@alt_m1sp I need to get an alt account just so I can tweet things like ugh cismen don’t even know my struggle #bloodeverywhere", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 2401670173, + "in_reply_to_user_id_str": "2401670173", + "in_reply_to_screen_name": "alt_m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 02 14:15:30 +0000 2014", + "id": 462233925826662400, + "id_str": "462233925826662400", + "text": "@ELLIOTTCABLE look, that’s not TECHNICALLY an incorrect use of “erection,” but…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 462233664877641728, + "in_reply_to_status_id_str": "462233664877641728", + "in_reply_to_user_id": 771681, + "in_reply_to_user_id_str": "771681", + "in_reply_to_screen_name": "ELLIOTTCABLE", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 02 14:04:01 +0000 2014", + "id": 462231036894920705, + "id_str": "462231036894920705", + "text": "Facebook runs MITM detection on users’ connections, here is result https://t.co/ECzLXzaZhD", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 73, + "favorite_count": 71, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri May 02 13:41:03 +0000 2014", + "id": 462225255432744960, + "id_str": "462225255432744960", + "text": "RT @thegrugq: Even if you don't share your location data, if your friends do, that can be used to infer your location. \n\nhttp://t.co/HOhl9Z…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Fri May 02 07:30:28 +0000 2014", + "id": 462131996206985216, + "id_str": "462131996206985216", + "text": "Even if you don't share your location data, if your friends do, that can be used to infer your location. \n\nhttp://t.co/HOhl9ZO0qr", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 18983429, + "id_str": "18983429" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 27, + "favorite_count": 16, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/HOhl9ZO0qr", + "expanded_url": "http://arxiv.org/abs/1404.7152", + "display_url": "arxiv.org/abs/1404.7152", + "indices": [ + 107, + 129 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 27, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri May 02 05:10:33 +0000 2014", + "id": 462096782974263296, + "id_str": "462096782974263296", + "text": "@joshuajuran lawyering the meaning of free as an adjective is a major pet peeve of mine", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 462096148145008641, + "in_reply_to_status_id_str": "462096148145008641", + "in_reply_to_user_id": 312204532, + "in_reply_to_user_id_str": "312204532", + "in_reply_to_screen_name": "joshuajuran", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 02 04:59:18 +0000 2014", + "id": 462093952091709440, + "id_str": "462093952091709440", + "text": "RT @FlickrAPI: We're switching to SSL-only API access on June 27th! More info on the code blog: http://t.co/jbnZlisxRB", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Thu May 01 16:48:39 +0000 2014", + "id": 461910079688544256, + "id_str": "461910079688544256", + "text": "We're switching to SSL-only API access on June 27th! More info on the code blog: http://t.co/jbnZlisxRB", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 210936033, + "id_str": "210936033" + }, + "geo": null, + "coordinates": null, + "place": { + "id": "5a110d312052166f", + "url": "https://api.twitter.com/1.1/geo/id/5a110d312052166f.json", + "place_type": "city", + "name": "San Francisco", + "full_name": "San Francisco, CA", + "country_code": "US", + "country": "United States", + "contained_within": [ + + ], + "bounding_box": { + "type": "Polygon", + "coordinates": [ + [ + [ + -122.514926, + 37.708075 + ], + [ + -122.328001, + 37.708075 + ], + [ + -122.328001, + 37.833238 + ], + [ + -122.514926, + 37.833238 + ] + ] + ] + }, + "attributes": { + } + }, + "contributors": null, + "retweet_count": 34, + "favorite_count": 19, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/jbnZlisxRB", + "expanded_url": "http://code.flickr.net/2014/04/30/flickr-api-going-ssl-only-on-june-27th-2014/", + "display_url": "code.flickr.net/2014/04/30/fli…", + "indices": [ + 81, + 103 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 34, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri May 02 04:55:14 +0000 2014", + "id": 462092930862571520, + "id_str": "462092930862571520", + "text": "@alt_m1sp *somewhat*?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 462089568049577984, + "in_reply_to_status_id_str": "462089568049577984", + "in_reply_to_user_id": 2401670173, + "in_reply_to_user_id_str": "2401670173", + "in_reply_to_screen_name": "alt_m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 02 04:14:48 +0000 2014", + "id": 462082754910253056, + "id_str": "462082754910253056", + "text": "@0x1f604 this will probably not be terribly elucidating on its own but http://t.co/bOJWWX2JEP", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 462081763951800320, + "in_reply_to_status_id_str": "462081763951800320", + "in_reply_to_user_id": 2438935098, + "in_reply_to_user_id_str": "2438935098", + "in_reply_to_screen_name": "0x1f604", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri May 02 03:53:58 +0000 2014", + "id": 462077510055104513, + "id_str": "462077510055104513", + "text": "@MechMK1 the license for that software was no modifications allowed, looking at algorithms only", + "source": "Twitter Web Client", + "truncated": false, + "in_reply_to_status_id": 462073397271625728, + "in_reply_to_status_id_str": "462073397271625728", + "in_reply_to_user_id": 81556825, + "in_reply_to_user_id_str": "81556825", + "in_reply_to_screen_name": "MechMK1", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 02 03:36:34 +0000 2014", + "id": 462073132535517184, + "id_str": "462073132535517184", + "text": "@MechMK1 https://t.co/zPojecGqn2", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 462073047680573440, + "in_reply_to_status_id_str": "462073047680573440", + "in_reply_to_user_id": 81556825, + "in_reply_to_user_id_str": "81556825", + "in_reply_to_screen_name": "MechMK1", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "quoted_status_id": 462065226125291521, + "quoted_status_id_str": "462065226125291521", + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Fri May 02 03:28:07 +0000 2014", + "id": 462071004706406400, + "id_str": "462071004706406400", + "text": "In this RT: hey if you’re violating the educational use only license of a piece of free software source code\n\nCOULD U NOT", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 5, + "favorite_count": 8, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri May 02 03:27:17 +0000 2014", + "id": 462070795473530881, + "id_str": "462070795473530881", + "text": "RT @rtlsdrblog: SDR# Website and Downloads Removed http://t.co/bJm56VojYT", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Fri May 02 03:05:09 +0000 2014", + "id": 462065226125291521, + "id_str": "462065226125291521", + "text": "SDR# Website and Downloads Removed http://t.co/bJm56VojYT", + "source": "Twitter for Websites", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 1448046859, + "id_str": "1448046859" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 14, + "favorite_count": 8, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/bJm56VojYT", + "expanded_url": "http://www.rtl-sdr.com/sdr-website-downloads-removed/", + "display_url": "rtl-sdr.com/sdr-website-do…", + "indices": [ + 35, + 57 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 14, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 25 03:57:47 +0000 2014", + "id": 459541756833726464, + "id_str": "459541756833726464", + "text": "@d6 the internet-enabled class, to be sure, but the first few pairs that come to mind are not particularly so by first world standards afaik", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459541280000065536, + "in_reply_to_status_id_str": "459541280000065536", + "in_reply_to_user_id": 8041522, + "in_reply_to_user_id_str": "8041522", + "in_reply_to_screen_name": "d6", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 25 03:56:30 +0000 2014", + "id": 459541432614002688, + "id_str": "459541432614002688", + "text": "@DisneyRicky I suspect it was a token invalidated by restoring backup to new device and it got terminally confused; other google apps worked", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459541073358884864, + "in_reply_to_status_id_str": "459541073358884864", + "in_reply_to_user_id": 760369974, + "in_reply_to_user_id_str": "760369974", + "in_reply_to_screen_name": "DisneyRicky", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 25 03:55:11 +0000 2014", + "id": 459541105068240896, + "id_str": "459541105068240896", + "text": "@Packetknife @ErrataRob you can’t buy bulk abadidea without a license.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459540836691492864, + "in_reply_to_status_id_str": "459540836691492864", + "in_reply_to_user_id": 19564254, + "in_reply_to_user_id_str": "19564254", + "in_reply_to_screen_name": "Packetknife", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 25 03:54:34 +0000 2014", + "id": 459540946838122496, + "id_str": "459540946838122496", + "text": "@DisneyRicky and then… stare at the welcome screen forever? That’s the login window. 😕\n\nComplete reinstall fixed it.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459540175303892992, + "in_reply_to_status_id_str": "459540175303892992", + "in_reply_to_user_id": 760369974, + "in_reply_to_user_id_str": "760369974", + "in_reply_to_screen_name": "DisneyRicky", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 25 03:53:53 +0000 2014", + "id": 459540774892617728, + "id_str": "459540774892617728", + "text": "I was just thinking a very high portion of people I know married across national borders. The assumption it won’t often be so is… antiquated", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 25 03:32:52 +0000 2014", + "id": 459535488303783936, + "id_str": "459535488303783936", + "text": "Welcome to Hangouts! Don’t forget, you’re here forever. #uirage http://t.co/AXCYv3vRkB", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 5, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 25 03:28:29 +0000 2014", + "id": 459534383297601537, + "id_str": "459534383297601537", + "text": "(I’ve never seen the SMB3 credits before. Because I am incredibly, atrociously bad at platformers.)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 25 03:27:08 +0000 2014", + "id": 459534045635178496, + "id_str": "459534045635178496", + "text": "Is that… is that koopa praying to a Mario Buddha? http://t.co/kbutvpeJ9P", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 9, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 25 03:25:35 +0000 2014", + "id": 459533654252081152, + "id_str": "459533654252081152", + "text": "RT @geekable: When will folks stop dropping NES 0day?!\n\nhttp://t.co/q5OLVkheeh\nhttp://t.co/xbnRPxoo6u", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Fri Apr 25 03:15:54 +0000 2014", + "id": 459531216065011712, + "id_str": "459531216065011712", + "text": "When will folks stop dropping NES 0day?!\n\nhttp://t.co/q5OLVkheeh\nhttp://t.co/xbnRPxoo6u", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 755035, + "id_str": "755035" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 16, + "favorite_count": 8, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/q5OLVkheeh", + "expanded_url": "http://tasvideos.org/4288S.html", + "display_url": "tasvideos.org/4288S.html", + "indices": [ + 42, + 64 + ] + }, + { + "url": "http://t.co/xbnRPxoo6u", + "expanded_url": "http://www.youtube.com/watch?v=PUdHMr2-U9s", + "display_url": "youtube.com/watch?v=PUdHMr…", + "indices": [ + 65, + 87 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": true, + "lang": "en" + }, + "retweet_count": 16, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 25 03:19:23 +0000 2014", + "id": 459532094507868160, + "id_str": "459532094507868160", + "text": "@m1sp_ebooks DON’T DO IT", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459530999836450816, + "in_reply_to_status_id_str": "459530999836450816", + "in_reply_to_user_id": 554331438, + "in_reply_to_user_id_str": "554331438", + "in_reply_to_screen_name": "m1sp_ebooks", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 25 03:12:44 +0000 2014", + "id": 459530418388475904, + "id_str": "459530418388475904", + "text": "@aspects_ebooks now THAT would never happen", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459529364657680385, + "in_reply_to_status_id_str": "459529364657680385", + "in_reply_to_user_id": 2345404375, + "in_reply_to_user_id_str": "2345404375", + "in_reply_to_screen_name": "aspects_ebooks", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 25 02:45:35 +0000 2014", + "id": 459523587435954176, + "id_str": "459523587435954176", + "text": "Well, glad I got THAT multi-gigabyte repo checked out! Wait… this is the wrong repo 😨", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 7, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 25 02:25:41 +0000 2014", + "id": 459518581081124864, + "id_str": "459518581081124864", + "text": "@gepeto42 good excuse!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459518406346043393, + "in_reply_to_status_id_str": "459518406346043393", + "in_reply_to_user_id": 17120390, + "in_reply_to_user_id_str": "17120390", + "in_reply_to_screen_name": "gepeto42", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 25 02:17:49 +0000 2014", + "id": 459516599876456449, + "id_str": "459516599876456449", + "text": "@zhuowei @halcy my eyes are interpreting it inverted… like a worm reaching out towards the screen", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459516052125151233, + "in_reply_to_status_id_str": "459516052125151233", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 25 02:16:13 +0000 2014", + "id": 459516196854177792, + "id_str": "459516196854177792", + "text": "@mikesacco @trap0xf I’d be more worried they might be in a sacrificial cult. They’re all wearing the same outfit.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459510186219020288, + "in_reply_to_status_id_str": "459510186219020288", + "in_reply_to_user_id": 17889697, + "in_reply_to_user_id_str": "17889697", + "in_reply_to_screen_name": "mikesacco", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 25 02:10:16 +0000 2014", + "id": 459514700972429312, + "id_str": "459514700972429312", + "text": "@aspects_ebooks snerk", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459514264836124672, + "in_reply_to_status_id_str": "459514264836124672", + "in_reply_to_user_id": 2345404375, + "in_reply_to_user_id_str": "2345404375", + "in_reply_to_screen_name": "aspects_ebooks", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "nl" + }, + { + "created_at": "Fri Apr 25 02:06:54 +0000 2014", + "id": 459513854033399808, + "id_str": "459513854033399808", + "text": "@mykola I was so psyched for my Baldur’s Gate character to turn into a zombie", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459513615599403009, + "in_reply_to_status_id_str": "459513615599403009", + "in_reply_to_user_id": 5614412, + "in_reply_to_user_id_str": "5614412", + "in_reply_to_screen_name": "mykola", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 25 02:05:03 +0000 2014", + "id": 459513388071403521, + "id_str": "459513388071403521", + "text": "@WhiteMageSlave windows control panel —> add and remove programs", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459513222224412673, + "in_reply_to_status_id_str": "459513222224412673", + "in_reply_to_user_id": 90791634, + "in_reply_to_user_id_str": "90791634", + "in_reply_to_screen_name": "WhiteMageSlave", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 25 02:03:36 +0000 2014", + "id": 459513023087259649, + "id_str": "459513023087259649", + "text": "@Myriachan this is actually my mother’s ring, long story…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459512830148886528, + "in_reply_to_status_id_str": "459512830148886528", + "in_reply_to_user_id": 1556497868, + "in_reply_to_user_id_str": "1556497868", + "in_reply_to_screen_name": "Myriachan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 25 02:02:50 +0000 2014", + "id": 459512827561410560, + "id_str": "459512827561410560", + "text": "@savagejen on the other hand, perhaps they’ve only seen me standing next to Chewie, and he’s a pretty repulsive aura all his own", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459511803639529472, + "in_reply_to_status_id_str": "459511803639529472", + "in_reply_to_user_id": 11324652, + "in_reply_to_user_id_str": "11324652", + "in_reply_to_screen_name": "savagejen", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 25 02:01:52 +0000 2014", + "id": 459512585596207104, + "id_str": "459512585596207104", + "text": "@coneslayer at least your spouse didn’t give you an amulet of strangulation as soon as they became your beneficiary", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459512053980352513, + "in_reply_to_status_id_str": "459512053980352513", + "in_reply_to_user_id": 20213606, + "in_reply_to_user_id_str": "20213606", + "in_reply_to_screen_name": "coneslayer", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 25 02:00:49 +0000 2014", + "id": 459512320994312192, + "id_str": "459512320994312192", + "text": "@Myriachan it was baldur’s gate and I thought it would turn me into a zombie", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459511881154056192, + "in_reply_to_status_id_str": "459511881154056192", + "in_reply_to_user_id": 1556497868, + "in_reply_to_user_id_str": "1556497868", + "in_reply_to_screen_name": "Myriachan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 25 02:00:01 +0000 2014", + "id": 459512121790054400, + "id_str": "459512121790054400", + "text": "@savagejen oh, I’m apparently not the right kind of attractive to attract a real PUA, the kind with a greater than 0% success rate anyway", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459511803639529472, + "in_reply_to_status_id_str": "459511803639529472", + "in_reply_to_user_id": 11324652, + "in_reply_to_user_id_str": "11324652", + "in_reply_to_screen_name": "savagejen", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 25 01:57:56 +0000 2014", + "id": 459511596696760320, + "id_str": "459511596696760320", + "text": "Actually I was very disappointed as a child to find out that the spell Turn Undead does not refer to the caster", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 7, + "favorite_count": 16, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 25 01:57:00 +0000 2014", + "id": 459511359265574912, + "id_str": "459511359265574912", + "text": "I don’t wear a diamond ring cuz I’m married (well I *am* married but), I wear it because it casts Turn Dudebro in a three meter radius 💍✨", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 6, + "favorite_count": 25, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 25 01:53:28 +0000 2014", + "id": 459510471025254401, + "id_str": "459510471025254401", + "text": "@vaurora got my magical token of Turn Dudebro +5: 💍 \n\nIt’s pretty much the only boundary they can mentally process", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459509764418854913, + "in_reply_to_status_id_str": "459509764418854913", + "in_reply_to_user_id": 30071759, + "in_reply_to_user_id_str": "30071759", + "in_reply_to_screen_name": "vaurora", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 25 01:48:18 +0000 2014", + "id": 459509173735407616, + "id_str": "459509173735407616", + "text": "I would like to welcome my distant relative Madison into the world, and wish it were under far better circumstances. #SubtweetingIRL", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 25 01:23:25 +0000 2014", + "id": 459502908024045568, + "id_str": "459502908024045568", + "text": "@Ninjifox where do you source your hardware? I’d like a referral", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459502288915406848, + "in_reply_to_status_id_str": "459502288915406848", + "in_reply_to_user_id": 119217218, + "in_reply_to_user_id_str": "119217218", + "in_reply_to_screen_name": "Ninjifox", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 25 01:12:26 +0000 2014", + "id": 459500144657190913, + "id_str": "459500144657190913", + "text": "@Talen_Lee @Shufflejoy we voted for her! At least we did if she was up for reelection last time, I can’t remember anymore.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459499805375344640, + "in_reply_to_status_id_str": "459499805375344640", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 25 01:05:15 +0000 2014", + "id": 459498339713966080, + "id_str": "459498339713966080", + "text": "@rantyben look good, chief? http://t.co/DuuvQnbFxB", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 459497953132937218, + "in_reply_to_status_id_str": "459497953132937218", + "in_reply_to_user_id": 977910404, + "in_reply_to_user_id_str": "977910404", + "in_reply_to_screen_name": "rantyben", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 25 01:02:57 +0000 2014", + "id": 459497760811909120, + "id_str": "459497760811909120", + "text": "Hmm, I *can* see the color difference between the Mini Retina and the Air, but it’s in the greens rather than the reds as I was warned", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 25 00:47:23 +0000 2014", + "id": 459493842358902784, + "id_str": "459493842358902784", + "text": "RT @Moltz: The most frightening things you can read today are @MaxTemkin’s 8 most recent Tumblr posts. http://t.co/GDyUDNuAIC", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Wed Apr 23 16:15:46 +0000 2014", + "id": 459002700374355968, + "id_str": "459002700374355968", + "text": "The most frightening things you can read today are @MaxTemkin’s 8 most recent Tumblr posts. http://t.co/GDyUDNuAIC", + "source": "Tweetbot for Mac", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 3551171, + "id_str": "3551171" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 207, + "favorite_count": 80, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/GDyUDNuAIC", + "expanded_url": "http://blog.maxistentialism.com", + "display_url": "blog.maxistentialism.com", + "indices": [ + 92, + 114 + ] + } + ], + "user_mentions": [ + { + "screen_name": "MaxTemkin", + "name": "Max Temkin", + "id": 15235235, + "id_str": "15235235", + "indices": [ + 51, + 61 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 207, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 25 00:37:02 +0000 2014", + "id": 459491238845370368, + "id_str": "459491238845370368", + "text": "@brozier I don’t mean he suddenly developed racism, I mean he suddenly introduced it to the controversy out of nowhere, wham :)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459491084981506048, + "in_reply_to_status_id_str": "459491084981506048", + "in_reply_to_user_id": 14356986, + "in_reply_to_user_id_str": "14356986", + "in_reply_to_screen_name": "brozier", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 25 00:30:26 +0000 2014", + "id": 459489577804521472, + "id_str": "459489577804521472", + "text": "@mralext20 I use rows of diamonds as the scene delimiter. They’re definitely very non-colored in the text :)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459469321815592960, + "in_reply_to_status_id_str": "459469321815592960", + "in_reply_to_user_id": 905041434, + "in_reply_to_user_id_str": "905041434", + "in_reply_to_screen_name": "mralext20", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 25 00:27:21 +0000 2014", + "id": 459488799194886144, + "id_str": "459488799194886144", + "text": "@SamusAranX after update, I assume? Thanks, figured it had to be somewhere", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459488678524760065, + "in_reply_to_status_id_str": "459488678524760065", + "in_reply_to_user_id": 37647087, + "in_reply_to_user_id_str": "37647087", + "in_reply_to_screen_name": "SamusAranX", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 25 00:26:04 +0000 2014", + "id": 459488477940563970, + "id_str": "459488477940563970", + "text": "@matthewmspace 7.0.4", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459488410650963968, + "in_reply_to_status_id_str": "459488410650963968", + "in_reply_to_user_id": 312169321, + "in_reply_to_user_id_str": "312169321", + "in_reply_to_screen_name": "matthewmspace", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "lt" + }, + { + "created_at": "Fri Apr 25 00:24:37 +0000 2014", + "id": 459488111735889920, + "id_str": "459488111735889920", + "text": "Great, the OS on this mini is way out of date and I can’t “restore” from iCloud backup", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 25 00:22:42 +0000 2014", + "id": 459487630624030720, + "id_str": "459487630624030720", + "text": "Let me try again. If this image is black then I can only conclude badbios. (Ahem. Aren’t they totes adorbs??) http://t.co/WvvsO1myDn", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 5, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 25 00:20:39 +0000 2014", + "id": 459487115974549504, + "id_str": "459487115974549504", + "text": "I uploaded an image and it turned black in an NSA conspiracy to hide from you how totally cute my iPad case is", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 5, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 23:54:26 +0000 2014", + "id": 459480516472094720, + "id_str": "459480516472094720", + "text": "@0ut51d3 CCC? Wrong continent I'm afraid :)", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 459469553761009664, + "in_reply_to_status_id_str": "459469553761009664", + "in_reply_to_user_id": 634728787, + "in_reply_to_user_id_str": "634728787", + "in_reply_to_screen_name": "0ut51d3", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 23:53:19 +0000 2014", + "id": 459480236300980224, + "id_str": "459480236300980224", + "text": "@JackLScanlan don't act like I never engage with your brand", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 459469995911553024, + "in_reply_to_status_id_str": "459469995911553024", + "in_reply_to_user_id": 10342612, + "in_reply_to_user_id_str": "10342612", + "in_reply_to_screen_name": "JackLScanlan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 23:47:31 +0000 2014", + "id": 459478775806582785, + "id_str": "459478775806582785", + "text": "\"You can't use a white iPad after Labor Day!\" - @codeferret_", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 4, + "favorite_count": 9, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 23:44:23 +0000 2014", + "id": 459477986996396033, + "id_str": "459477986996396033", + "text": "This is the fourth time I've bought an Apple thing that comes in black or white and the clerk asked if I was sure I didn't want white", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 4, + "favorite_count": 5, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 23:09:42 +0000 2014", + "id": 459469259249561600, + "id_str": "459469259249561600", + "text": "RT @thegrugq: @0xabad1dea technically an iPad is a post-computer. Doesn't count.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Thu Apr 24 23:09:18 +0000 2014", + "id": 459469157893799936, + "id_str": "459469157893799936", + "text": "@0xabad1dea technically an iPad is a post-computer. Doesn't count.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459469031431745537, + "in_reply_to_status_id_str": "459469031431745537", + "in_reply_to_user_id": 126030998, + "in_reply_to_user_id_str": "126030998", + "in_reply_to_screen_name": "0xabad1dea", + "user": { + "id": 18983429, + "id_str": "18983429" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 5, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "0xabad1dea", + "name": "Melissa", + "id": 126030998, + "id_str": "126030998", + "indices": [ + 0, + 11 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 2, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 23:09:25 +0000 2014", + "id": 459469188709752832, + "id_str": "459469188709752832", + "text": "@thegrugq @rantyben oh, so you did play it? 😇", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459469024569487361, + "in_reply_to_status_id_str": "459469024569487361", + "in_reply_to_user_id": 18983429, + "in_reply_to_user_id_str": "18983429", + "in_reply_to_screen_name": "thegrugq", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 23:08:48 +0000 2014", + "id": 459469031431745537, + "id_str": "459469031431745537", + "text": "The downside of n > 10,000 followers is you can count at least one will remember you promised not to buy any new computers for six months", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 6, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 23:06:57 +0000 2014", + "id": 459468566245687296, + "id_str": "459468566245687296", + "text": "@zhuowei until June, I think I said. It’s almost May, close enough. And I’m giving one up! #rationalize", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459468391779016706, + "in_reply_to_status_id_str": "459468391779016706", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 23:06:15 +0000 2014", + "id": 459468391125114880, + "id_str": "459468391125114880", + "text": "(We were trying out using the old iPad as a kitchen computer, but it didn’t make us have any more desire to correctly use the kitchen.)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 6, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 23:04:43 +0000 2014", + "id": 459468003676286976, + "id_str": "459468003676286976", + "text": "It turns out that trading in my mostly unused iPad 4 would largely cover the costs of a basic Retina Mini, so, I’m caving. Apple store ahoy", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 22:59:08 +0000 2014", + "id": 459466599897235456, + "id_str": "459466599897235456", + "text": "@chronic well, I have seen skiddies join stolen amazon instances to pools, despite it being “infeasible”", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459465959745802241, + "in_reply_to_status_id_str": "459465959745802241", + "in_reply_to_user_id": 86315276, + "in_reply_to_user_id_str": "86315276", + "in_reply_to_screen_name": "chronic", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 22:58:33 +0000 2014", + "id": 459466452505223168, + "id_str": "459466452505223168", + "text": "@chronic I don’t think that’s inherently true, as when it’s someone else’s stolen CPU, and you join them to a mining pool…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459465959745802241, + "in_reply_to_status_id_str": "459465959745802241", + "in_reply_to_user_id": 86315276, + "in_reply_to_user_id_str": "86315276", + "in_reply_to_screen_name": "chronic", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 22:45:26 +0000 2014", + "id": 459463153525751809, + "id_str": "459463153525751809", + "text": "@TheTweetOfGod @hemantmehta this is true, but in my defense, they’re not the ones who dominate the discourse of any community I belong to", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459459125873614848, + "in_reply_to_status_id_str": "459459125873614848", + "in_reply_to_user_id": 204832963, + "in_reply_to_user_id_str": "204832963", + "in_reply_to_screen_name": "TheTweetOfGod", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 22:42:51 +0000 2014", + "id": 459462499767967744, + "id_str": "459462499767967744", + "text": "RT @mikko: The NSA has 646 pages of classified information on Windows Vista. #FOIA\nhttp://t.co/s96HW7U2OJ http://t.co/uirIHqwess", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Thu Apr 24 13:33:33 +0000 2014", + "id": 459324266987528192, + "id_str": "459324266987528192", + "text": "The NSA has 646 pages of classified information on Windows Vista. #FOIA\nhttp://t.co/s96HW7U2OJ http://t.co/uirIHqwess", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 23566038, + "id_str": "23566038" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 188, + "favorite_count": 72, + "entities": { + "hashtags": [ + { + "text": "FOIA", + "indices": [ + 66, + 71 + ] + } + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/s96HW7U2OJ", + "expanded_url": "http://cryptome.org/2014/04/nsa-ms-vista.pdf", + "display_url": "cryptome.org/2014/04/nsa-ms…", + "indices": [ + 72, + 94 + ] + } + ], + "user_mentions": [ + + ], + "media": [ + { + "id": 459324266995916801, + "id_str": "459324266995916801", + "indices": [ + 95, + 117 + ], + "media_url": "http://pbs.twimg.com/media/Bl_Y_LsCIAE3gRH.png", + "media_url_https": "https://pbs.twimg.com/media/Bl_Y_LsCIAE3gRH.png", + "url": "http://t.co/uirIHqwess", + "display_url": "pic.twitter.com/uirIHqwess", + "expanded_url": "http://twitter.com/mikko/status/459324266987528192/photo/1", + "type": "photo", + "sizes": { + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 600, + "h": 324, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 184, + "resize": "fit" + }, + "large": { + "w": 704, + "h": 380, + "resize": "fit" + } + } + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 188, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 22:41:56 +0000 2014", + "id": 459462270318571520, + "id_str": "459462270318571520", + "text": "@ckindel @DrPizza they just move traditional google functionality into G+ and count that as usage", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459459669967138818, + "in_reply_to_status_id_str": "459459669967138818", + "in_reply_to_user_id": 15416485, + "in_reply_to_user_id_str": "15416485", + "in_reply_to_screen_name": "ckindel", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 22:40:43 +0000 2014", + "id": 459461965791121408, + "id_str": "459461965791121408", + "text": "@ZJemptv @Shufflejoy well, mother did say that university made me this way", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459458895233425408, + "in_reply_to_status_id_str": "459458895233425408", + "in_reply_to_user_id": 5780032, + "in_reply_to_user_id_str": "5780032", + "in_reply_to_screen_name": "ZJemptv", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 22:38:13 +0000 2014", + "id": 459461336989446144, + "id_str": "459461336989446144", + "text": "@Packetknife military time, or very slow troubleshooting of centuries past?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459456703529234433, + "in_reply_to_status_id_str": "459456703529234433", + "in_reply_to_user_id": 19564254, + "in_reply_to_user_id_str": "19564254", + "in_reply_to_screen_name": "Packetknife", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 22:36:52 +0000 2014", + "id": 459460994927185920, + "id_str": "459460994927185920", + "text": "Hang on. I should write my toy TLS implementation in PHP. 😁", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 15, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 22:32:03 +0000 2014", + "id": 459459784123879424, + "id_str": "459459784123879424", + "text": "@CommonGayTweets @eevee what? I totally joined the gay conspiracy at bisexual rank after being given a pamphlet with *really* good design", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459427058956124160, + "in_reply_to_status_id_str": "459427058956124160", + "in_reply_to_user_id": 1942819082, + "in_reply_to_user_id_str": "1942819082", + "in_reply_to_screen_name": "CommonGayTweets", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 22:30:29 +0000 2014", + "id": 459459388160610304, + "id_str": "459459388160610304", + "text": "@zauspar I believe anyone you directly work for, it’s expected they will occasionally get calls about former employees as a matter of course", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459449129559527424, + "in_reply_to_status_id_str": "459449129559527424", + "in_reply_to_user_id": 216571343, + "in_reply_to_user_id_str": "216571343", + "in_reply_to_screen_name": "zauspar", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 21:56:57 +0000 2014", + "id": 459450948721856512, + "id_str": "459450948721856512", + "text": "@JackLScanlan are they even aware of the “slippery slope fallacy”", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459446978695270400, + "in_reply_to_status_id_str": "459446978695270400", + "in_reply_to_user_id": 10342612, + "in_reply_to_user_id_str": "10342612", + "in_reply_to_screen_name": "JackLScanlan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 21:54:59 +0000 2014", + "id": 459450456377683968, + "id_str": "459450456377683968", + "text": "@dridus starred, thanks", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459447458683420672, + "in_reply_to_status_id_str": "459447458683420672", + "in_reply_to_user_id": 117250626, + "in_reply_to_user_id_str": "117250626", + "in_reply_to_screen_name": "dridus", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 21:32:54 +0000 2014", + "id": 459444899541446657, + "id_str": "459444899541446657", + "text": "@Tuplet by suddenly I mean this was suddenly thrown into a completely unrelated controversy for seemingly no reason than to be an idiot :)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459444577405915136, + "in_reply_to_status_id_str": "459444577405915136", + "in_reply_to_user_id": 34310651, + "in_reply_to_user_id_str": "34310651", + "in_reply_to_screen_name": "Tuplet", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 21:20:30 +0000 2014", + "id": 459441777779302400, + "id_str": "459441777779302400", + "text": "@Shufflejoy as far as people I actually talk to goes, pretty much same", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459433296942747648, + "in_reply_to_status_id_str": "459433296942747648", + "in_reply_to_user_id": 1567524811, + "in_reply_to_user_id_str": "1567524811", + "in_reply_to_screen_name": "Shufflejoy", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 20:40:05 +0000 2014", + "id": 459431605699088387, + "id_str": "459431605699088387", + "text": "@joernchen but I guess, as long as you make it clear I was complaining about PHP :p", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 459431538636378113, + "in_reply_to_status_id_str": "459431538636378113", + "in_reply_to_user_id": 19395266, + "in_reply_to_user_id_str": "19395266", + "in_reply_to_screen_name": "joernchen", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 20:38:43 +0000 2014", + "id": 459431262911213568, + "id_str": "459431262911213568", + "text": "@joernchen aww, Ruby's child-safe scissors labeled as soft foam :p", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 459430946832646145, + "in_reply_to_status_id_str": "459430946832646145", + "in_reply_to_user_id": 19395266, + "in_reply_to_user_id_str": "19395266", + "in_reply_to_screen_name": "joernchen", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 20:27:09 +0000 2014", + "id": 459428351284084736, + "id_str": "459428351284084736", + "text": "@bmenrigh by the time I see these threads someone has always linked that and someone has always replied “yes but”", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459428140226338816, + "in_reply_to_status_id_str": "459428140226338816", + "in_reply_to_user_id": 171348397, + "in_reply_to_user_id_str": "171348397", + "in_reply_to_screen_name": "bmenrigh", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 20:26:44 +0000 2014", + "id": 459428247714160640, + "id_str": "459428247714160640", + "text": "@dakami my opinion on this matter is: PHP is a knife labeled as child-safe scissors. C is a rifle with bayonet labeled as a knife :)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459427901675282432, + "in_reply_to_status_id_str": "459427901675282432", + "in_reply_to_user_id": 8917142, + "in_reply_to_user_id_str": "8917142", + "in_reply_to_screen_name": "dakami", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 37, + "favorite_count": 46, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 20:25:18 +0000 2014", + "id": 459427885154308096, + "id_str": "459427885154308096", + "text": "Their values of this and that tend to work out to “being a highly experienced programmer already,” the opposite of the target audience", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 20:22:45 +0000 2014", + "id": 459427243857825792, + "id_str": "459427243857825792", + "text": "Very common reddit comment: \"there's nothing wrong with PHP, so long as you [this], [that], [the other] and [invocation of elder evils]\"", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 38, + "favorite_count": 43, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 20:13:57 +0000 2014", + "id": 459425028678094848, + "id_str": "459425028678094848", + "text": "@ErrataRob @tqbf @dakami please forgive me Mr. Kaminsky but I had a stylus in my hand", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459424913972277248, + "in_reply_to_status_id_str": "459424913972277248", + "in_reply_to_user_id": 15300995, + "in_reply_to_user_id_str": "15300995", + "in_reply_to_screen_name": "ErrataRob", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 20:11:13 +0000 2014", + "id": 459424340573163520, + "id_str": "459424340573163520", + "text": "@tqbf http://t.co/DUNlz36zsp", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459423464995037185, + "in_reply_to_status_id_str": "459423464995037185", + "in_reply_to_user_id": 9395312, + "in_reply_to_user_id_str": "9395312", + "in_reply_to_screen_name": "tqbf", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Thu Apr 24 20:03:23 +0000 2014", + "id": 459422368738586624, + "id_str": "459422368738586624", + "text": "@hinanawi_chan what everyone else said", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459419048153870337, + "in_reply_to_status_id_str": "459419048153870337", + "in_reply_to_user_id": 2336014178, + "in_reply_to_user_id_str": "2336014178", + "in_reply_to_screen_name": "hinanawi_chan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 19:42:15 +0000 2014", + "id": 459417051564892161, + "id_str": "459417051564892161", + "text": "@thegrugq @chriseng an engineer claimed they could only repro it in the cracked version", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459416748316319744, + "in_reply_to_status_id_str": "459416748316319744", + "in_reply_to_user_id": 18983429, + "in_reply_to_user_id_str": "18983429", + "in_reply_to_screen_name": "thegrugq", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 19:40:36 +0000 2014", + "id": 459416636177805313, + "id_str": "459416636177805313", + "text": "@landley I didn’t want to name them and start pointless drama about the hows and whys, it’s one of the AdjectiveSSLs.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459416272095412224, + "in_reply_to_status_id_str": "459416272095412224", + "in_reply_to_user_id": 14326287, + "in_reply_to_user_id_str": "14326287", + "in_reply_to_screen_name": "landley", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 19:36:22 +0000 2014", + "id": 459415569922793474, + "id_str": "459415569922793474", + "text": "@CyborgCode the scene described above is all I remember about the movie aside from an offhand remark about the radio's vacuum tubes", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 459415178019622912, + "in_reply_to_status_id_str": "459415178019622912", + "in_reply_to_user_id": 130034459, + "in_reply_to_user_id_str": "130034459", + "in_reply_to_screen_name": "CyborgCode", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 19:35:47 +0000 2014", + "id": 459415425475153920, + "id_str": "459415425475153920", + "text": "Like a muffler from a destroyed talking car lands on the little toaster's head and think about it, for a machine that's some R-rated gore", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 6, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 19:21:56 +0000 2014", + "id": 459411937772994560, + "id_str": "459411937772994560", + "text": "I was traumatized by the scene in Brave Little Toaster where the cars are crushed to death, on camera, while singing. Like seriously.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 6, + "favorite_count": 7, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 18:51:54 +0000 2014", + "id": 459404381595914240, + "id_str": "459404381595914240", + "text": "@thegrugq between \"I should get to use this land for free\" and \"they should go back to slavery,\" detecting the slightest tint of privilege", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 459403026965352449, + "in_reply_to_status_id_str": "459403026965352449", + "in_reply_to_user_id": 18983429, + "in_reply_to_user_id_str": "18983429", + "in_reply_to_screen_name": "thegrugq", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 18:26:41 +0000 2014", + "id": 459398037341995008, + "id_str": "459398037341995008", + "text": "I can’t distinguish between Eve Online screenshots and real life. https://t.co/TcDsq2xAA2", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 6, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 18:25:22 +0000 2014", + "id": 459397702288412672, + "id_str": "459397702288412672", + "text": "@comex wisdom would be to put two and two together and not ever give them a patch, but I think it’s yucky in the first place.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459396998953959425, + "in_reply_to_status_id_str": "459396998953959425", + "in_reply_to_user_id": 14550962, + "in_reply_to_user_id_str": "14550962", + "in_reply_to_screen_name": "comex", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 18:23:47 +0000 2014", + "id": 459397305272393728, + "id_str": "459397305272393728", + "text": "@comex The instance that prompted my remark doesn’t seem to have any policy in place, just a “submit pull requests here” sign.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459396998953959425, + "in_reply_to_status_id_str": "459396998953959425", + "in_reply_to_user_id": 14550962, + "in_reply_to_user_id_str": "14550962", + "in_reply_to_screen_name": "comex", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 18:07:35 +0000 2014", + "id": 459393229151293441, + "id_str": "459393229151293441", + "text": "@zauspar @alt_m1sp and how basically it was just an infinite “but he’s socially disabled! Look, it won’t happen again..,”", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459392417746014208, + "in_reply_to_status_id_str": "459392417746014208", + "in_reply_to_user_id": 216571343, + "in_reply_to_user_id_str": "216571343", + "in_reply_to_screen_name": "zauspar", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 18:06:57 +0000 2014", + "id": 459393069532872704, + "id_str": "459393069532872704", + "text": "@zauspar @alt_m1sp dunno if you followed me last time I told the story of my stalker who was racking up complaints from girls at my school", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459392417746014208, + "in_reply_to_status_id_str": "459392417746014208", + "in_reply_to_user_id": 216571343, + "in_reply_to_user_id_str": "216571343", + "in_reply_to_screen_name": "zauspar", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 18:02:35 +0000 2014", + "id": 459391970868494336, + "id_str": "459391970868494336", + "text": "@docsmooth @wwahammy I don’t think “pay your way out of GPL” is “open core” to begin with and I don’t really know anyway 😕", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459391432646615040, + "in_reply_to_status_id_str": "459391432646615040", + "in_reply_to_user_id": 16577725, + "in_reply_to_user_id_str": "16577725", + "in_reply_to_screen_name": "docsmooth", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 17:58:59 +0000 2014", + "id": 459391065657966592, + "id_str": "459391065657966592", + "text": "@docsmooth @wwahammy well, yes.\n\nMy complaint is that it’s ethically dubious to even ask.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459390923864932352, + "in_reply_to_status_id_str": "459390923864932352", + "in_reply_to_user_id": 16577725, + "in_reply_to_user_id_str": "16577725", + "in_reply_to_screen_name": "docsmooth", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 17:57:57 +0000 2014", + "id": 459390803996340224, + "id_str": "459390803996340224", + "text": "@docsmooth @wwahammy by riding on the back of open source charitable spirit but directly profiting off the result", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459390201832275968, + "in_reply_to_status_id_str": "459390201832275968", + "in_reply_to_user_id": 16577725, + "in_reply_to_user_id_str": "16577725", + "in_reply_to_screen_name": "docsmooth", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 17:57:20 +0000 2014", + "id": 459390650593857536, + "id_str": "459390650593857536", + "text": "@docsmooth @wwahammy but if they welcome contributions to their code that they then *sell*, they’re exploiting free labor", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459390201832275968, + "in_reply_to_status_id_str": "459390201832275968", + "in_reply_to_user_id": 16577725, + "in_reply_to_user_id_str": "16577725", + "in_reply_to_screen_name": "docsmooth", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 17:48:53 +0000 2014", + "id": 459388522416603136, + "id_str": "459388522416603136", + "text": "RT @BenLaurie: How to help OpenSSL: http://t.co/MinXkAOHRk", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Thu Apr 24 17:38:43 +0000 2014", + "id": 459385963878580225, + "id_str": "459385963878580225", + "text": "How to help OpenSSL: http://t.co/MinXkAOHRk", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 16947553, + "id_str": "16947553" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 33, + "favorite_count": 12, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/MinXkAOHRk", + "expanded_url": "http://marc.info/?l=openssl-dev&m=139836074612467&w=2", + "display_url": "marc.info/?l=openssl-dev…", + "indices": [ + 21, + 43 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 33, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 17:45:01 +0000 2014", + "id": 459387548809560064, + "id_str": "459387548809560064", + "text": "@keytothefields us hoping that everyone would see they’re being exploited does not excuse “feel free to sign up for exploitation” IMO", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459387250338299904, + "in_reply_to_status_id_str": "459387250338299904", + "in_reply_to_user_id": 216837782, + "in_reply_to_user_id_str": "216837782", + "in_reply_to_screen_name": "keytothefields", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 17:43:54 +0000 2014", + "id": 459387267430494208, + "id_str": "459387267430494208", + "text": "@docsmooth @wwahammy but it’s made by a company that subsists on commercially licensing it as non-GPL.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459386848310087680, + "in_reply_to_status_id_str": "459386848310087680", + "in_reply_to_user_id": 16577725, + "in_reply_to_user_id_str": "16577725", + "in_reply_to_screen_name": "docsmooth", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 17:43:15 +0000 2014", + "id": 459387105018658816, + "id_str": "459387105018658816", + "text": "@docsmooth @wwahammy in the thing that prompted my remark, 100% of everything needed to use it is available under GPL", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459386848310087680, + "in_reply_to_status_id_str": "459386848310087680", + "in_reply_to_user_id": 16577725, + "in_reply_to_user_id_str": "16577725", + "in_reply_to_screen_name": "docsmooth", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 17:38:44 +0000 2014", + "id": 459385966307078144, + "id_str": "459385966307078144", + "text": "I think it’s pretty dubious to run a dual GPL/commercial codebase, and “welcome contributions” without any mention of compensation.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 12, + "favorite_count": 10, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 17:25:39 +0000 2014", + "id": 459382675632320512, + "id_str": "459382675632320512", + "text": "RT @matthew_d_green: New blog: Attack of the week - Triple Handshakes (3Shake). http://t.co/gHRAnlWAAX", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Thu Apr 24 16:49:24 +0000 2014", + "id": 459373553553776640, + "id_str": "459373553553776640", + "text": "New blog: Attack of the week - Triple Handshakes (3Shake). http://t.co/gHRAnlWAAX", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 106234268, + "id_str": "106234268" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 53, + "favorite_count": 39, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/gHRAnlWAAX", + "expanded_url": "http://blog.cryptographyengineering.com/2014/04/attack-of-week-triple-handshakes-3shake.html", + "display_url": "blog.cryptographyengineering.com/2014/04/attack…", + "indices": [ + 59, + 81 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 53, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 17:13:37 +0000 2014", + "id": 459379646875070464, + "id_str": "459379646875070464", + "text": "@aspects_ebooks that’s a good one", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459378354832293888, + "in_reply_to_status_id_str": "459378354832293888", + "in_reply_to_user_id": 2345404375, + "in_reply_to_user_id_str": "2345404375", + "in_reply_to_screen_name": "aspects_ebooks", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 17:11:29 +0000 2014", + "id": 459379108850704384, + "id_str": "459379108850704384", + "text": "RT @lizzwinstead: When God closes a Fred Phelps, he opens a Cliven Bundy.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Thu Apr 24 16:15:41 +0000 2014", + "id": 459365066748350464, + "id_str": "459365066748350464", + "text": "When God closes a Fred Phelps, he opens a Cliven Bundy.", + "source": "TweetDeck", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 57917441, + "id_str": "57917441" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1345, + "favorite_count": 1324, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 1345, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 17:06:15 +0000 2014", + "id": 459377795207266304, + "id_str": "459377795207266304", + "text": "I had a dream about a roughly 870MB JavaScript framework for webpages, and I didn’t even blink. Pre-minimization, to be fair.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 4, + "favorite_count": 26, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 16:52:12 +0000 2014", + "id": 459374257647394816, + "id_str": "459374257647394816", + "text": "@blazingcrimson where I lived, said heavily armed and easily irritated locals mostly just shot each other over disputes about fences", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459373910736113664, + "in_reply_to_status_id_str": "459373910736113664", + "in_reply_to_user_id": 1531220689, + "in_reply_to_user_id_str": "1531220689", + "in_reply_to_screen_name": "blazingcrimson", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 16:48:37 +0000 2014", + "id": 459373354781507584, + "id_str": "459373354781507584", + "text": "@blazingcrimson encountering random heavily armed and easily irritated locals is kinda bog standard in most of rural America", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459372666773045249, + "in_reply_to_status_id_str": "459372666773045249", + "in_reply_to_user_id": 1531220689, + "in_reply_to_user_id_str": "1531220689", + "in_reply_to_screen_name": "blazingcrimson", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 16:47:40 +0000 2014", + "id": 459373117060947969, + "id_str": "459373117060947969", + "text": "@blazingcrimson while I’m not a fan of such things, the people attending his rallies with giant guns would probably be an answer", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459372666773045249, + "in_reply_to_status_id_str": "459372666773045249", + "in_reply_to_user_id": 1531220689, + "in_reply_to_user_id_str": "1531220689", + "in_reply_to_screen_name": "blazingcrimson", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 16:44:11 +0000 2014", + "id": 459372238731751424, + "id_str": "459372238731751424", + "text": "@blazingcrimson I’m not saying “just sell some land to him” wouldn’t be a reasonable solution, it’s more the whole faux libertarian aura", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459371450487427072, + "in_reply_to_status_id_str": "459371450487427072", + "in_reply_to_user_id": 1531220689, + "in_reply_to_user_id_str": "1531220689", + "in_reply_to_screen_name": "blazingcrimson", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 16:43:12 +0000 2014", + "id": 459371992849072128, + "id_str": "459371992849072128", + "text": "@blazingcrimson do they not get licenses of some sort…?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459371450487427072, + "in_reply_to_status_id_str": "459371450487427072", + "in_reply_to_user_id": 1531220689, + "in_reply_to_user_id_str": "1531220689", + "in_reply_to_screen_name": "blazingcrimson", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 16:37:25 +0000 2014", + "id": 459370537433567232, + "id_str": "459370537433567232", + "text": "@blazingcrimson I am also aware of disputes in forested public land over who gets to pick mushrooms and how much and for what fee", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459370227805863936, + "in_reply_to_status_id_str": "459370227805863936", + "in_reply_to_user_id": 1531220689, + "in_reply_to_user_id_str": "1531220689", + "in_reply_to_screen_name": "blazingcrimson", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 16:27:10 +0000 2014", + "id": 459367959715401728, + "id_str": "459367959715401728", + "text": "@zhuowei just wait until we drag Rashk's mysteriously unseen little sister into the plot", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 459365765867925505, + "in_reply_to_status_id_str": "459365765867925505", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 16:18:58 +0000 2014", + "id": 459365894029049856, + "id_str": "459365894029049856", + "text": "@zhuowei this is what got him in front of High Judge Melmoiran in the first place, and it was all downhill from there", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 459365765867925505, + "in_reply_to_status_id_str": "459365765867925505", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 16:17:28 +0000 2014", + "id": 459365516801744897, + "id_str": "459365516801744897", + "text": "@zhuowei the implication is indeed murder", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 459365189285339136, + "in_reply_to_status_id_str": "459365189285339136", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 16:17:14 +0000 2014", + "id": 459365458056314880, + "id_str": "459365458056314880", + "text": "@zhuowei according to my notes, which sometimes I have to change, a boy from Rashk's school who bullied his little sister.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 459365189285339136, + "in_reply_to_status_id_str": "459365189285339136", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 16:13:27 +0000 2014", + "id": 459364505596993536, + "id_str": "459364505596993536", + "text": "@zhuowei Ziazan manages to threaten a girl with getting Keromeir to eat her before the end of book 2 chapter 2...", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 459363383725535232, + "in_reply_to_status_id_str": "459363383725535232", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 16:11:35 +0000 2014", + "id": 459364038385082368, + "id_str": "459364038385082368", + "text": "@zhuowei yes actually. Remarkably hard to kill Rashk's monsters.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 459363383725535232, + "in_reply_to_status_id_str": "459363383725535232", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 16:11:02 +0000 2014", + "id": 459363899780136960, + "id_str": "459363899780136960", + "text": "@GivMeUrIndieLit Hmm. I would like to Give You My Indie Lit, but it goes a little over the 100,000 limit (115k). But it's queer. Is that ok?", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 614812040, + "in_reply_to_user_id_str": "614812040", + "in_reply_to_screen_name": "GivMeUrIndieLit", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 15:48:40 +0000 2014", + "id": 459358270994784256, + "id_str": "459358270994784256", + "text": "@ProfNintendo the bits I've heard so far tuning into TPP all sound so... whiney.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 459357629014605824, + "in_reply_to_status_id_str": "459357629014605824", + "in_reply_to_user_id": 2223970250, + "in_reply_to_user_id_str": "2223970250", + "in_reply_to_screen_name": "ProfNintendo", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 15:40:32 +0000 2014", + "id": 459356224392531968, + "id_str": "459356224392531968", + "text": "@blazingcrimson and not like, once, but like, for twenty straight years. I don't *think* I am mistaken in this details.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 459354662060060672, + "in_reply_to_status_id_str": "459354662060060672", + "in_reply_to_user_id": 1531220689, + "in_reply_to_user_id_str": "1531220689", + "in_reply_to_screen_name": "blazingcrimson", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 15:39:35 +0000 2014", + "id": 459355981940817920, + "id_str": "459355981940817920", + "text": "@blazingcrimson I have. Govt tried to take his cows. I can see why he'd be upset. But... he wouldn't pay to use land that wasn't his.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 459354662060060672, + "in_reply_to_status_id_str": "459354662060060672", + "in_reply_to_user_id": 1531220689, + "in_reply_to_user_id_str": "1531220689", + "in_reply_to_screen_name": "blazingcrimson", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 15:34:41 +0000 2014", + "id": 459354751491403777, + "id_str": "459354751491403777", + "text": "@0wasp yeaaaah I'm not sure what exactly these folk think they're taking America back *from*.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 459354438990561280, + "in_reply_to_status_id_str": "459354438990561280", + "in_reply_to_user_id": 140016388, + "in_reply_to_user_id_str": "140016388", + "in_reply_to_screen_name": "0wasp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 15:31:59 +0000 2014", + "id": 459354069036175361, + "id_str": "459354069036175361", + "text": "@rattis @drb0n3z http://t.co/WkIJR5MnC5 this has been percolating in the news for a while", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 459353883941171200, + "in_reply_to_status_id_str": "459353883941171200", + "in_reply_to_user_id": 17803380, + "in_reply_to_user_id_str": "17803380", + "in_reply_to_screen_name": "rattis", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 15:31:18 +0000 2014", + "id": 459353897149403136, + "id_str": "459353897149403136", + "text": "@Talen_Lee @Jennimason0990 that does not contradict my assertion that he's dumb", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 459353782720417792, + "in_reply_to_status_id_str": "459353782720417792", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 15:29:53 +0000 2014", + "id": 459353541166243842, + "id_str": "459353541166243842", + "text": "@Talen_Lee @Jennimason0990 by Suddenly Racist I mean he suddenly threw that into the mix of an unrelated issue for no reason, because dumb", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 459353291587977216, + "in_reply_to_status_id_str": "459353291587977216", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 15:25:25 +0000 2014", + "id": 459352417445109760, + "id_str": "459352417445109760", + "text": "My understanding: 1) Guy won't pay fee to use land that isn't his. 2) People with guns are there to \"Take Back America.\" 3) Suddenly racist?", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 15:22:48 +0000 2014", + "id": 459351759732113408, + "id_str": "459351759732113408", + "text": "@acfrazier ... answer the one sent to Administrator ...", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 459351084864397314, + "in_reply_to_status_id_str": "459351084864397314", + "in_reply_to_user_id": 214222992, + "in_reply_to_user_id_str": "214222992", + "in_reply_to_screen_name": "acfrazier", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 15:20:14 +0000 2014", + "id": 459351115470221312, + "id_str": "459351115470221312", + "text": "Geez, the Fire Red/Leaf Green port of the original Pokemon Red/Blue soundtrack is just... not very good.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 14:46:32 +0000 2014", + "id": 459342634453319680, + "id_str": "459342634453319680", + "text": "@Kufat @m1sp Gahh. Just found out it wasn't rendering the sparkle in chrome. So nix that idea.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 459340074547970050, + "in_reply_to_status_id_str": "459340074547970050", + "in_reply_to_user_id": 207691003, + "in_reply_to_user_id_str": "207691003", + "in_reply_to_screen_name": "Kufat", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 14:44:53 +0000 2014", + "id": 459342216482549760, + "id_str": "459342216482549760", + "text": "@Kufat @m1sp granted, I have no idea why sparkle is apparently basic multilingual.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459340074547970050, + "in_reply_to_status_id_str": "459340074547970050", + "in_reply_to_user_id": 207691003, + "in_reply_to_user_id_str": "207691003", + "in_reply_to_screen_name": "Kufat", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 14:44:33 +0000 2014", + "id": 459342133531783168, + "id_str": "459342133531783168", + "text": "@Kufat @m1sp sorry. Not basic multilingual.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459340074547970050, + "in_reply_to_status_id_str": "459340074547970050", + "in_reply_to_user_id": 207691003, + "in_reply_to_user_id_str": "207691003", + "in_reply_to_screen_name": "Kufat", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 14:33:44 +0000 2014", + "id": 459339409952083969, + "id_str": "459339409952083969", + "text": "Hey remember the time the FBI kicked back and let Stratfor get totally owned? http://t.co/RfqHkA16SL", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 7, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 14:32:47 +0000 2014", + "id": 459339172344778752, + "id_str": "459339172344778752", + "text": "@aspects_ebooks huh. You’ve constructed a semantically correct section header that never happened. Good job.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459338677966352384, + "in_reply_to_status_id_str": "459338677966352384", + "in_reply_to_user_id": 2345404375, + "in_reply_to_user_id_str": "2345404375", + "in_reply_to_screen_name": "aspects_ebooks", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 14:30:18 +0000 2014", + "id": 459338549578702848, + "id_str": "459338549578702848", + "text": "@arstechnica @thepacketrat “golobal” is a cute typo, you should keep it :)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459337274979663872, + "in_reply_to_status_id_str": "459337274979663872", + "in_reply_to_user_id": 717313, + "in_reply_to_user_id_str": "717313", + "in_reply_to_screen_name": "arstechnica", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 14:26:58 +0000 2014", + "id": 459337710332030976, + "id_str": "459337710332030976", + "text": "RT @dveditz: Mozilla is offering $10,000 bounties for security bugs in our new Certificate Verification library https://t.co/RpquUGTL1g …", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Thu Apr 24 14:22:09 +0000 2014", + "id": 459336496445526016, + "id_str": "459336496445526016", + "text": "Mozilla is offering $10,000 bounties for security bugs in our new Certificate Verification library https://t.co/RpquUGTL1g …", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 208275301, + "id_str": "208275301" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 110, + "favorite_count": 31, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "https://t.co/RpquUGTL1g", + "expanded_url": "https://blog.mozilla.org/security/2014/04/24/10000-security-bug-bounty-for-certificate-verification/", + "display_url": "blog.mozilla.org/security/2014/…", + "indices": [ + 99, + 122 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 110, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 14:25:55 +0000 2014", + "id": 459337443972767745, + "id_str": "459337443972767745", + "text": "@anttitikkanen @mikko oh, let me tell you how much I want to be a “cyber engineer”", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459334409628692481, + "in_reply_to_status_id_str": "459334409628692481", + "in_reply_to_user_id": 261613475, + "in_reply_to_user_id_str": "261613475", + "in_reply_to_screen_name": "anttitikkanen", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 13:47:37 +0000 2014", + "id": 459327806066147328, + "id_str": "459327806066147328", + "text": "@m1sp for some reason I find this hilarious http://t.co/b2e9PpJRlO", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 13:45:20 +0000 2014", + "id": 459327230565699584, + "id_str": "459327230565699584", + "text": "@m1sp @aspects_ebooks well, *they* would have still seen *him*", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459300088880193536, + "in_reply_to_status_id_str": "459300088880193536", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 13:25:18 +0000 2014", + "id": 459322190413197312, + "id_str": "459322190413197312", + "text": "@m1sp :3", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459226494242287616, + "in_reply_to_status_id_str": "459226494242287616", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 4, + "favorited": true, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Thu Apr 24 13:17:22 +0000 2014", + "id": 459320192355827712, + "id_str": "459320192355827712", + "text": "@Saraw0 … whoosh.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459211637900054528, + "in_reply_to_status_id_str": "459211637900054528", + "in_reply_to_user_id": 168609377, + "in_reply_to_user_id_str": "168609377", + "in_reply_to_screen_name": "Saraw0", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "tl" + }, + { + "created_at": "Thu Apr 24 04:57:23 +0000 2014", + "id": 459194366637391872, + "id_str": "459194366637391872", + "text": "@Myriachan there are one time pad encryptions you can easily do by hand, but they’re not convenient for real world communications", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459193959537844226, + "in_reply_to_status_id_str": "459193959537844226", + "in_reply_to_user_id": 1556497868, + "in_reply_to_user_id_str": "1556497868", + "in_reply_to_screen_name": "Myriachan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 04:54:26 +0000 2014", + "id": 459193626757984256, + "id_str": "459193626757984256", + "text": "@thorsheim @jimfenton @rmhrisk oh, an IBM employee assured me that documentation was for a “mid-sized” IBM offering, not a mainframe ;)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459192937382174720, + "in_reply_to_status_id_str": "459192937382174720", + "in_reply_to_user_id": 33496439, + "in_reply_to_user_id_str": "33496439", + "in_reply_to_screen_name": "thorsheim", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 04:44:01 +0000 2014", + "id": 459191004277772288, + "id_str": "459191004277772288", + "text": "@eevee I’ll just be sitting here waiting for your tweets of repentance in July ☀️", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459190729504325632, + "in_reply_to_status_id_str": "459190729504325632", + "in_reply_to_user_id": 14412937, + "in_reply_to_user_id_str": "14412937", + "in_reply_to_screen_name": "eevee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 04:29:33 +0000 2014", + "id": 459187364922163200, + "id_str": "459187364922163200", + "text": "@eevee check your weather privilege", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459187023090155522, + "in_reply_to_status_id_str": "459187023090155522", + "in_reply_to_user_id": 14412937, + "in_reply_to_user_id_str": "14412937", + "in_reply_to_screen_name": "eevee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 04:27:04 +0000 2014", + "id": 459186737705938944, + "id_str": "459186737705938944", + "text": "@vogon ¯\\(º_o)/¯", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459186622337019904, + "in_reply_to_status_id_str": "459186622337019904", + "in_reply_to_user_id": 6326912, + "in_reply_to_user_id_str": "6326912", + "in_reply_to_screen_name": "vogon", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "nl" + }, + { + "created_at": "Thu Apr 24 04:25:53 +0000 2014", + "id": 459186441159852032, + "id_str": "459186441159852032", + "text": "@weetabix_su but this may answer actual questions https://t.co/qM0nnwAC0t", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459185072214532096, + "in_reply_to_status_id_str": "459185072214532096", + "in_reply_to_user_id": 65336507, + "in_reply_to_user_id_str": "65336507", + "in_reply_to_screen_name": "weetabix_su", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 04:25:12 +0000 2014", + "id": 459186269831311360, + "id_str": "459186269831311360", + "text": "This table expands upon that, but, note that TLS 1.0 was the one with 97% support in the other chart. “Depends!” http://t.co/sPNbQtqLoK", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 24, + "favorite_count": 18, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 04:19:50 +0000 2014", + "id": 459184917600272384, + "id_str": "459184917600272384", + "text": "@weetabix_su the joke!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459184841116770304, + "in_reply_to_status_id_str": "459184841116770304", + "in_reply_to_user_id": 65336507, + "in_reply_to_user_id_str": "65336507", + "in_reply_to_screen_name": "weetabix_su", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 04:19:21 +0000 2014", + "id": 459184797433495552, + "id_str": "459184797433495552", + "text": "@Talen_Lee @m1sp I had < 300 for a very long time you know.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459184421628035072, + "in_reply_to_status_id_str": "459184421628035072", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 04:17:17 +0000 2014", + "id": 459184277071331328, + "id_str": "459184277071331328", + "text": "Check this helpful table from Wikipedia for the relative security of different versions of SSL! Green is best! http://t.co/G1kYShZNet", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 49, + "favorite_count": 43, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 03:56:25 +0000 2014", + "id": 459179025907597313, + "id_str": "459179025907597313", + "text": "@m1sp well one of them is apparently swimming in 8/7 water so I wouldn’t assume things are going well", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459178808407384064, + "in_reply_to_status_id_str": "459178808407384064", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 03:52:37 +0000 2014", + "id": 459178070566797312, + "id_str": "459178070566797312", + "text": "@m1sp Bag. Mug. Rope.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459176630162714624, + "in_reply_to_status_id_str": "459176630162714624", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": true, + "retweeted": false, + "lang": "nl" + }, + { + "created_at": "Thu Apr 24 03:38:23 +0000 2014", + "id": 459174489411293184, + "id_str": "459174489411293184", + "text": "@LeafStorm your cache is stale. Twitter had a bug with the D showing as China and they fixed it yesterday-ish.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 459174320846020608, + "in_reply_to_status_id_str": "459174320846020608", + "in_reply_to_user_id": 18009780, + "in_reply_to_user_id_str": "18009780", + "in_reply_to_screen_name": "LeafStorm", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 03:35:51 +0000 2014", + "id": 459173851638018048, + "id_str": "459173851638018048", + "text": "@winocm if @miaubiz operates this account\n\nand @miaubiz is run by @snare's mom... ...", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 428413732, + "in_reply_to_user_id_str": "428413732", + "in_reply_to_screen_name": "winocm", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 02:52:35 +0000 2014", + "id": 459162963099013120, + "id_str": "459162963099013120", + "text": "@zauspar Japan. \n\nThey really are still in the 90s in that respect.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459162713726263296, + "in_reply_to_status_id_str": "459162713726263296", + "in_reply_to_user_id": 216571343, + "in_reply_to_user_id_str": "216571343", + "in_reply_to_screen_name": "zauspar", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 02:46:54 +0000 2014", + "id": 459161530790326272, + "id_str": "459161530790326272", + "text": "RT @sigfpe: A minimal FM radio demodulator in C++ to help anyone just getting into SDR https://t.co/kLjiwJTQ7b", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Thu Apr 24 02:35:07 +0000 2014", + "id": 459158565026947072, + "id_str": "459158565026947072", + "text": "A minimal FM radio demodulator in C++ to help anyone just getting into SDR https://t.co/kLjiwJTQ7b", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 16748247, + "id_str": "16748247" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 11, + "favorite_count": 56, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "https://t.co/kLjiwJTQ7b", + "expanded_url": "https://github.com/dpiponi/mini_fm/", + "display_url": "github.com/dpiponi/mini_f…", + "indices": [ + 75, + 98 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 11, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 02:45:21 +0000 2014", + "id": 459161139570806785, + "id_str": "459161139570806785", + "text": "Chelsea Manning’s name change is legally official. Transphobic reporters and politicians, you’re out of excuses. http://t.co/ePvwSa15PY", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 58, + "favorite_count": 38, + "favorited": true, + "retweeted": true, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 02:13:35 +0000 2014", + "id": 459153148205363200, + "id_str": "459153148205363200", + "text": "@ghostqueer of the last three people I knew who came out, two sets of parents took it well and one set kinda has their hands over their ears", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459140984358440960, + "in_reply_to_status_id_str": "459140984358440960", + "in_reply_to_user_id": 2337742344, + "in_reply_to_user_id_str": "2337742344", + "in_reply_to_screen_name": "ghostqueer", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 01:50:55 +0000 2014", + "id": 459147441556557824, + "id_str": "459147441556557824", + "text": "100% code coverage unit testing. http://t.co/vdNFugcZkV", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 11, + "favorite_count": 19, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 01:37:46 +0000 2014", + "id": 459144131588399105, + "id_str": "459144131588399105", + "text": "@CreepyRepRogers go home politician, you're drunk", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 459143980027232256, + "in_reply_to_status_id_str": "459143980027232256", + "in_reply_to_user_id": 2340853864, + "in_reply_to_user_id_str": "2340853864", + "in_reply_to_screen_name": "CreepyRepRogers", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 01:29:53 +0000 2014", + "id": 459142150484402177, + "id_str": "459142150484402177", + "text": "RT @ErrataRob: @thegrugq @0xabad1dea @kyhwana @rantyben only parslemouths can read OpenSSL code #trufact", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Thu Apr 24 01:24:54 +0000 2014", + "id": 459140894252228609, + "id_str": "459140894252228609", + "text": "@thegrugq @0xabad1dea @kyhwana @rantyben only parslemouths can read OpenSSL code #trufact", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 459136661415157760, + "in_reply_to_status_id_str": "459136661415157760", + "in_reply_to_user_id": 18983429, + "in_reply_to_user_id_str": "18983429", + "in_reply_to_screen_name": "thegrugq", + "user": { + "id": 15300995, + "id_str": "15300995" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 10, + "favorite_count": 6, + "entities": { + "hashtags": [ + { + "text": "trufact", + "indices": [ + 81, + 89 + ] + } + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "thegrugq", + "name": "the grugq ", + "id": 18983429, + "id_str": "18983429", + "indices": [ + 0, + 9 + ] + }, + { + "screen_name": "0xabad1dea", + "name": "Melissa", + "id": 126030998, + "id_str": "126030998", + "indices": [ + 10, + 21 + ] + }, + { + "screen_name": "kyhwana", + "name": "kyhwana", + "id": 30135560, + "id_str": "30135560", + "indices": [ + 22, + 30 + ] + }, + { + "screen_name": "rantyben", + "name": "Ben Nagy", + "id": 977910404, + "id_str": "977910404", + "indices": [ + 31, + 40 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 10, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 01:20:00 +0000 2014", + "id": 459139661559259137, + "id_str": "459139661559259137", + "text": "@m1sp @Talen_Lee @hinanawi_chan I... I AM A REAL COMPOSER ;O;", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 459139519464239104, + "in_reply_to_status_id_str": "459139519464239104", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "pt" + }, + { + "created_at": "Thu Apr 24 01:17:58 +0000 2014", + "id": 459139152010035200, + "id_str": "459139152010035200", + "text": "@zhuowei not that I have pre-existing. I consider italics and stuff a mandatory part of the text", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 459138932807311360, + "in_reply_to_status_id_str": "459138932807311360", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 01:14:11 +0000 2014", + "id": 459138199567470594, + "id_str": "459138199567470594", + "text": "Not to imply y'all need to read this, but, \"am I being creepy?\" http://t.co/E0Z3gljOkw", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 6, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 01:12:18 +0000 2014", + "id": 459137725451751424, + "id_str": "459137725451751424", + "text": "@thegrugq @rantyben @kyhwana why would you POST that? I don't want to see poor hamsters being eaten by lizards!!!!", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 459137541803737090, + "in_reply_to_status_id_str": "459137541803737090", + "in_reply_to_user_id": 18983429, + "in_reply_to_user_id_str": "18983429", + "in_reply_to_screen_name": "thegrugq", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 01:07:21 +0000 2014", + "id": 459136477591764992, + "id_str": "459136477591764992", + "text": "@kyhwana @rantyben @thegrugq doesn't matter! it's pronunciation based!\n\nUnless you're some freak who says sssssssl like a snake 8[", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 459136302450237440, + "in_reply_to_status_id_str": "459136302450237440", + "in_reply_to_user_id": 30135560, + "in_reply_to_user_id_str": "30135560", + "in_reply_to_screen_name": "kyhwana", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 01:01:29 +0000 2014", + "id": 459135000907382785, + "id_str": "459135000907382785", + "text": "@thegrugq oh my gods I said \"the stuff\" instead of \"it\" specifically so no-one could grammar lawyer", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 459134864810205185, + "in_reply_to_status_id_str": "459134864810205185", + "in_reply_to_user_id": 18983429, + "in_reply_to_user_id_str": "18983429", + "in_reply_to_screen_name": "thegrugq", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 00:50:59 +0000 2014", + "id": 459132359825444864, + "id_str": "459132359825444864", + "text": "Because everything I write gets grabbed by my datahound friends and turned into a hellish deranged artificial intelligence: @aspects_ebooks", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 3, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 00:49:07 +0000 2014", + "id": 459131890650198016, + "id_str": "459131890650198016", + "text": "@zhuowei @aspects_ebooks http://t.co/HIv60gthfB", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 459131684806729728, + "in_reply_to_status_id_str": "459131684806729728", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Thu Apr 24 00:47:12 +0000 2014", + "id": 459131409459077120, + "id_str": "459131409459077120", + "text": "If I die tonight, it's because I opened a bottle, and the safety seal had come unglued, and I **ate the stuff anyway**", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 9, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 24 00:04:12 +0000 2014", + "id": 459120588276367360, + "id_str": "459120588276367360", + "text": "@zhuowei I'm pretty sure @Talen_Lee is right and I'm just bad at this", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 459120433699520512, + "in_reply_to_status_id_str": "459120433699520512", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 23:59:38 +0000 2014", + "id": 459119436067516416, + "id_str": "459119436067516416", + "text": "@zhuowei wait... ... ... \n\n... ... ... is there a reason I don't follow *you*???", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 23:45:15 +0000 2014", + "id": 459115819478581249, + "id_str": "459115819478581249", + "text": "@emt930st @winocm let me have my fundamentally misguided western fan theories. 。・゚゚・(>д<)・゚゚・。", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 459115312940478464, + "in_reply_to_status_id_str": "459115312940478464", + "in_reply_to_user_id": 5642582, + "in_reply_to_user_id_str": "5642582", + "in_reply_to_screen_name": "emt930st", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "ja" + }, + { + "created_at": "Wed Apr 23 23:38:02 +0000 2014", + "id": 459114003135205376, + "id_str": "459114003135205376", + "text": "@blueg3 the kind you get from \"make alias\", yeah. While I haven't checked I figured they were softlinks underneath...", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 459113713912389633, + "in_reply_to_status_id_str": "459113713912389633", + "in_reply_to_user_id": 14859830, + "in_reply_to_user_id_str": "14859830", + "in_reply_to_screen_name": "blueg3", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 23:37:33 +0000 2014", + "id": 459113881005481984, + "id_str": "459113881005481984", + "text": "@chmod007 nope", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 459113723093712896, + "in_reply_to_status_id_str": "459113723093712896", + "in_reply_to_user_id": 18182313, + "in_reply_to_user_id_str": "18182313", + "in_reply_to_screen_name": "chmod007", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Wed Apr 23 23:35:35 +0000 2014", + "id": 459113383199920129, + "id_str": "459113383199920129", + "text": "Uhh, is it normal for OSX to totally lose track of link targets after a reboot? Destination very much still exists. http://t.co/YNWBMCxYdi", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 23:26:47 +0000 2014", + "id": 459111169677352960, + "id_str": "459111169677352960", + "text": "@psobot the other day I couldn’t remember the names of anyone involved in the Github thing. Googled “github drama.” Felt guilty it worked.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459110464190828544, + "in_reply_to_status_id_str": "459110464190828544", + "in_reply_to_user_id": 19135819, + "in_reply_to_user_id_str": "19135819", + "in_reply_to_screen_name": "psobot", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 23:21:14 +0000 2014", + "id": 459109772185567233, + "id_str": "459109772185567233", + "text": "@zhuowei @m1sp @aspects_ebooks oh wait that’s your bot…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459109021186654208, + "in_reply_to_status_id_str": "459109021186654208", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 23:20:55 +0000 2014", + "id": 459109691818508288, + "id_str": "459109691818508288", + "text": "@zhuowei @m1sp well one of those is taken :( but I prefer the sound of aspects eBooks. Glor-eBooks?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459109021186654208, + "in_reply_to_status_id_str": "459109021186654208", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 23:12:48 +0000 2014", + "id": 459107649557389312, + "id_str": "459107649557389312", + "text": "@rantyben 😫", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459107118994292736, + "in_reply_to_status_id_str": "459107118994292736", + "in_reply_to_user_id": 977910404, + "in_reply_to_user_id_str": "977910404", + "in_reply_to_screen_name": "rantyben", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Wed Apr 23 23:09:14 +0000 2014", + "id": 459106754845229057, + "id_str": "459106754845229057", + "text": "@rantyben for your information, I know because I engage with feminist literary criticism", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459106171983384576, + "in_reply_to_status_id_str": "459106171983384576", + "in_reply_to_user_id": 977910404, + "in_reply_to_user_id_str": "977910404", + "in_reply_to_screen_name": "rantyben", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 22:59:47 +0000 2014", + "id": 459104374707744768, + "id_str": "459104374707744768", + "text": "RT @arstechnica: Mystery attack drops avalanche of malicious messages on Twitter http://t.co/KfKcBmJQL9 by @dangoodin001", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Wed Apr 23 22:55:53 +0000 2014", + "id": 459103393064431616, + "id_str": "459103393064431616", + "text": "Mystery attack drops avalanche of malicious messages on Twitter http://t.co/KfKcBmJQL9 by @dangoodin001", + "source": "Ars tweetbot", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 717313, + "id_str": "717313" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 54, + "favorite_count": 10, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/KfKcBmJQL9", + "expanded_url": "http://ars.to/1lGu5hh", + "display_url": "ars.to/1lGu5hh", + "indices": [ + 64, + 86 + ] + } + ], + "user_mentions": [ + { + "screen_name": "dangoodin001", + "name": "Dan Goodin", + "id": 14150736, + "id_str": "14150736", + "indices": [ + 90, + 103 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 54, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 22:56:17 +0000 2014", + "id": 459103493912281088, + "id_str": "459103493912281088", + "text": "RT @mrwasteland: \"Have I told you kids the story of how I lost ten pounds with acai berry?\" \"Mooommm, grandpa's been hacked again\"", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Wed Apr 23 22:53:11 +0000 2014", + "id": 459102714551488512, + "id_str": "459102714551488512", + "text": "\"Have I told you kids the story of how I lost ten pounds with acai berry?\" \"Mooommm, grandpa's been hacked again\"", + "source": "TweetDeck", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 61336370, + "id_str": "61336370" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 87, + "favorite_count": 62, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 87, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 22:55:42 +0000 2014", + "id": 459103347560423424, + "id_str": "459103347560423424", + "text": "@zhuowei @m1sp \\o/\n\nI like the “I sent her away, and if you find the way…” one", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459102972295671809, + "in_reply_to_status_id_str": "459102972295671809", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 22:54:18 +0000 2014", + "id": 459102996966932481, + "id_str": "459102996966932481", + "text": "@brightsuzaku @Raydere it’s supposed to be crossed Japanese flags. Sounds like you might have a font which steals slots from uncommon emoji", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459102474813865984, + "in_reply_to_status_id_str": "459102474813865984", + "in_reply_to_user_id": 29545404, + "in_reply_to_user_id_str": "29545404", + "in_reply_to_screen_name": "brightsuzaku", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 22:49:02 +0000 2014", + "id": 459101671482998784, + "id_str": "459101671482998784", + "text": "@dakami @savagejen I’ve got a stake on Bellatrix.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459099427718692865, + "in_reply_to_status_id_str": "459099427718692865", + "in_reply_to_user_id": 8917142, + "in_reply_to_user_id_str": "8917142", + "in_reply_to_screen_name": "dakami", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 22:31:04 +0000 2014", + "id": 459097149188603904, + "id_str": "459097149188603904", + "text": "@dakami I know of a toddler named Ada. And you know how toddlers never run out of steam… @savagejen", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459096852437012480, + "in_reply_to_status_id_str": "459096852437012480", + "in_reply_to_user_id": 8917142, + "in_reply_to_user_id_str": "8917142", + "in_reply_to_screen_name": "dakami", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 22:23:57 +0000 2014", + "id": 459095359110008832, + "id_str": "459095359110008832", + "text": "@eevee let’s do a branding exercise http://t.co/ayEcIrgs1v", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459093484817760257, + "in_reply_to_status_id_str": "459093484817760257", + "in_reply_to_user_id": 14412937, + "in_reply_to_user_id_str": "14412937", + "in_reply_to_screen_name": "eevee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 22:17:15 +0000 2014", + "id": 459093669854076929, + "id_str": "459093669854076929", + "text": "@eevee perhaps it’s the disembodied tongue…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459093484817760257, + "in_reply_to_status_id_str": "459093484817760257", + "in_reply_to_user_id": 14412937, + "in_reply_to_user_id_str": "14412937", + "in_reply_to_screen_name": "eevee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 22:15:30 +0000 2014", + "id": 459093231326998530, + "id_str": "459093231326998530", + "text": "@eevee oh, am I 😇 I would never keep track of how much I am winning at twitter 😏", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459092932331442176, + "in_reply_to_status_id_str": "459092932331442176", + "in_reply_to_user_id": 14412937, + "in_reply_to_user_id_str": "14412937", + "in_reply_to_screen_name": "eevee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 22:11:35 +0000 2014", + "id": 459092246319861760, + "id_str": "459092246319861760", + "text": "@eevee sometimes I write a tweet and I have in mind exactly who is going to retweet it", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 14412937, + "in_reply_to_user_id_str": "14412937", + "in_reply_to_screen_name": "eevee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 5, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 22:09:26 +0000 2014", + "id": 459091705200144384, + "id_str": "459091705200144384", + "text": "@stevetendo @NaNoWriMo keep on trucking 🚚📝", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459086185739325440, + "in_reply_to_status_id_str": "459086185739325440", + "in_reply_to_user_id": 23334393, + "in_reply_to_user_id_str": "23334393", + "in_reply_to_screen_name": "stevetendo", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 22:01:40 +0000 2014", + "id": 459089751610757120, + "id_str": "459089751610757120", + "text": "Story: One time my father accidentally went to a black tie event in a polo and jeans. Everyone thought he was a tech startup millionaire", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 31, + "favorite_count": 49, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 21:56:29 +0000 2014", + "id": 459088444627894272, + "id_str": "459088444627894272", + "text": "@zhuowei @parrotgeek1 @thegrugq @winocm the grugq only thinks of a new memetic joke once every six months or so.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459088318211166208, + "in_reply_to_status_id_str": "459088318211166208", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 21:54:16 +0000 2014", + "id": 459087888689676290, + "id_str": "459087888689676290", + "text": "@eevee I see a W sitting on a sideways 3, in a box", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459078817286348800, + "in_reply_to_status_id_str": "459078817286348800", + "in_reply_to_user_id": 14412937, + "in_reply_to_user_id_str": "14412937", + "in_reply_to_screen_name": "eevee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 21:52:19 +0000 2014", + "id": 459087395787644928, + "id_str": "459087395787644928", + "text": "@Myriachan it’s a URL (well, the path component thereof). Ever see a URL longer than… about 220 characters?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459087153914331136, + "in_reply_to_status_id_str": "459087153914331136", + "in_reply_to_user_id": 1556497868, + "in_reply_to_user_id_str": "1556497868", + "in_reply_to_screen_name": "Myriachan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 21:47:29 +0000 2014", + "id": 459086182039949312, + "id_str": "459086182039949312", + "text": "@bwalter01 “my” sample? Harrumph!\n\nIt’s surely meant to be the simplest HTTP client worthy of the name, I just would like bounds checking", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459085799238418434, + "in_reply_to_status_id_str": "459085799238418434", + "in_reply_to_user_id": 2271624740, + "in_reply_to_user_id_str": "2271624740", + "in_reply_to_screen_name": "bwalter01", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 21:44:41 +0000 2014", + "id": 459085476369281024, + "id_str": "459085476369281024", + "text": "@zhuowei I’m afraid no amount of coffee can save him now.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459085223196504065, + "in_reply_to_status_id_str": "459085223196504065", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 21:32:02 +0000 2014", + "id": 459082292309540865, + "id_str": "459082292309540865", + "text": "It's so windy that birds are flying in place, and looking very confused about it", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 5, + "favorite_count": 10, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 21:12:28 +0000 2014", + "id": 459077369060687872, + "id_str": "459077369060687872", + "text": "@zhuowei it heavily depends on who/what follows you", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 459075380822159361, + "in_reply_to_status_id_str": "459075380822159361", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 21:00:35 +0000 2014", + "id": 459074377129402368, + "id_str": "459074377129402368", + "text": "@letoams but if you’ve ever used, say, strtok, and thought it was a bit magic…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459074065408327680, + "in_reply_to_status_id_str": "459074065408327680", + "in_reply_to_user_id": 15495113, + "in_reply_to_user_id_str": "15495113", + "in_reply_to_screen_name": "letoams", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 21:00:15 +0000 2014", + "id": 459074293578866688, + "id_str": "459074293578866688", + "text": "@letoams it causes persistence across invocations. You don’t see it much anymore because it’s fundamentally thread-unsafe", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459074065408327680, + "in_reply_to_status_id_str": "459074065408327680", + "in_reply_to_user_id": 15495113, + "in_reply_to_user_id_str": "15495113", + "in_reply_to_screen_name": "letoams", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 20:59:16 +0000 2014", + "id": 459074044873428993, + "id_str": "459074044873428993", + "text": "How to make yourself sad: grab a brand new malware URL off twitter, see that its bitly statistics report eight clicks already", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 4, + "favorite_count": 6, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 20:49:46 +0000 2014", + "id": 459071655739146240, + "id_str": "459071655739146240", + "text": "@letoams local static is a thing", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459070388622721024, + "in_reply_to_status_id_str": "459070388622721024", + "in_reply_to_user_id": 15495113, + "in_reply_to_user_id_str": "15495113", + "in_reply_to_screen_name": "letoams", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 20:49:07 +0000 2014", + "id": 459071493264384000, + "id_str": "459071493264384000", + "text": "@gsuberland @comex no no I meant *my* code\n\nNot the stuff in the screenshot", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459068545566253056, + "in_reply_to_status_id_str": "459068545566253056", + "in_reply_to_user_id": 432513392, + "in_reply_to_user_id_str": "432513392", + "in_reply_to_screen_name": "gsuberland", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 20:31:30 +0000 2014", + "id": 459067058932944896, + "id_str": "459067058932944896", + "text": "Bet you a dollar @weheartit just got hacked https://t.co/aRFAXugWKS\n\n(Tip via @dangoodin001)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 20:29:28 +0000 2014", + "id": 459066545864335360, + "id_str": "459066545864335360", + "text": "@dangoodin001 “via http://t.co/TOlmvFgvzE”", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459066160294543360, + "in_reply_to_status_id_str": "459066160294543360", + "in_reply_to_user_id": 14150736, + "in_reply_to_user_id_str": "14150736", + "in_reply_to_screen_name": "dangoodin001", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Wed Apr 23 20:28:59 +0000 2014", + "id": 459066424095281152, + "id_str": "459066424095281152", + "text": "@Shufflejoy is that where all those kids on xbox live go?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459066070247034880, + "in_reply_to_status_id_str": "459066070247034880", + "in_reply_to_user_id": 1567524811, + "in_reply_to_user_id_str": "1567524811", + "in_reply_to_screen_name": "Shufflejoy", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 20:19:04 +0000 2014", + "id": 459063928518361088, + "id_str": "459063928518361088", + "text": "@comex it’s currently documented as “a kit for doing SSL wrong” so if it does SSL right, that’s a bug :)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459063639149150208, + "in_reply_to_status_id_str": "459063639149150208", + "in_reply_to_user_id": 14550962, + "in_reply_to_user_id_str": "14550962", + "in_reply_to_screen_name": "comex", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 20:19:04 +0000 2014", + "id": 459063928518361088, + "id_str": "459063928518361088", + "text": "@comex it’s currently documented as “a kit for doing SSL wrong” so if it does SSL right, that’s a bug :)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459063639149150208, + "in_reply_to_status_id_str": "459063639149150208", + "in_reply_to_user_id": 14550962, + "in_reply_to_user_id_str": "14550962", + "in_reply_to_screen_name": "comex", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 19:51:31 +0000 2014", + "id": 459056997695250432, + "id_str": "459056997695250432", + "text": "@reschly :[", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459056841851666435, + "in_reply_to_status_id_str": "459056841851666435", + "in_reply_to_user_id": 120324485, + "in_reply_to_user_id_str": "120324485", + "in_reply_to_screen_name": "reschly", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Wed Apr 23 19:42:56 +0000 2014", + "id": 459054834474573824, + "id_str": "459054834474573824", + "text": "@miuaf does this imply that 100% of Haskell users are using the wrong language…?\n\n*ducks*", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459054280469520384, + "in_reply_to_status_id_str": "459054280469520384", + "in_reply_to_user_id": 1029662892, + "in_reply_to_user_id_str": "1029662892", + "in_reply_to_screen_name": "miuaf", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 19:41:23 +0000 2014", + "id": 459054444924370945, + "id_str": "459054444924370945", + "text": "@expir3dcow @zhuowei thank you ^_^", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459054309171548160, + "in_reply_to_status_id_str": "459054309171548160", + "in_reply_to_user_id": 2253276447, + "in_reply_to_user_id_str": "2253276447", + "in_reply_to_screen_name": "expir3dcow", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "vi" + }, + { + "created_at": "Wed Apr 23 19:18:44 +0000 2014", + "id": 459048745574088704, + "id_str": "459048745574088704", + "text": "Wat. The “patch availability” link on that Oracle security page requires a login to proceed 😐", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 6, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 19:17:55 +0000 2014", + "id": 459048540367757312, + "id_str": "459048540367757312", + "text": "@gewt it’s a known problem. 💐☕️🏄☕️🎃☕️🎄☕️", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459048059746652163, + "in_reply_to_status_id_str": "459048059746652163", + "in_reply_to_user_id": 18125825, + "in_reply_to_user_id_str": "18125825", + "in_reply_to_screen_name": "gewt", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 19:14:20 +0000 2014", + "id": 459047639422865408, + "id_str": "459047639422865408", + "text": "Christmas comes but once a year, and Java critical security updates come but four. http://t.co/GdohOwFd8U", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 11, + "favorite_count": 7, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 19:11:42 +0000 2014", + "id": 459046977272291328, + "id_str": "459046977272291328", + "text": "@ErrataRob I assume you don’t mind if I reference it while working on my own educational experience", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459046563596500992, + "in_reply_to_status_id_str": "459046563596500992", + "in_reply_to_user_id": 15300995, + "in_reply_to_user_id_str": "15300995", + "in_reply_to_screen_name": "ErrataRob", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 19:10:30 +0000 2014", + "id": 459046674921693185, + "id_str": "459046674921693185", + "text": "@SunTsu to quote my first grade teacher, “it’s not like you can wear computers around your neck.”\n\nBut good handwriting is its own reward 😎", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459046394041753600, + "in_reply_to_status_id_str": "459046394041753600", + "in_reply_to_user_id": 56721932, + "in_reply_to_user_id_str": "56721932", + "in_reply_to_screen_name": "SunTsu", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 19:09:30 +0000 2014", + "id": 459046420956577792, + "id_str": "459046420956577792", + "text": "RT @Dinosn: Oracle Java System.arraycopy() Race Condition Remote Code Execution Vulnerability http://t.co/MXEoK4Ury8", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Wed Apr 23 18:59:27 +0000 2014", + "id": 459043893296631808, + "id_str": "459043893296631808", + "text": "Oracle Java System.arraycopy() Race Condition Remote Code Execution Vulnerability http://t.co/MXEoK4Ury8", + "source": "Tweet Button", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 128484298, + "id_str": "128484298" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 47, + "favorite_count": 27, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/MXEoK4Ury8", + "expanded_url": "http://www.zerodayinitiative.com/advisories/ZDI-14-114/", + "display_url": "zerodayinitiative.com/advisories/ZDI…", + "indices": [ + 82, + 104 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 47, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 19:07:38 +0000 2014", + "id": 459045951647514625, + "id_str": "459045951647514625", + "text": "@geekable looks like some site is having a bad day…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459045614211592192, + "in_reply_to_status_id_str": "459045614211592192", + "in_reply_to_user_id": 755035, + "in_reply_to_user_id_str": "755035", + "in_reply_to_screen_name": "geekable", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 19:03:52 +0000 2014", + "id": 459045003176976384, + "id_str": "459045003176976384", + "text": "@thegrugq 😑", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459044866979147776, + "in_reply_to_status_id_str": "459044866979147776", + "in_reply_to_user_id": 18983429, + "in_reply_to_user_id_str": "18983429", + "in_reply_to_screen_name": "thegrugq", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Wed Apr 23 18:55:05 +0000 2014", + "id": 459042794301321216, + "id_str": "459042794301321216", + "text": "Everyone says I have nice handwriting but I was getting D’s in handwriting class when I was little. Yes that was its own grade at my school", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 18:45:10 +0000 2014", + "id": 459040298531049472, + "id_str": "459040298531049472", + "text": "@thegrugq http://t.co/VvnM30iVXS", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459039834988744704, + "in_reply_to_status_id_str": "459039834988744704", + "in_reply_to_user_id": 18983429, + "in_reply_to_user_id_str": "18983429", + "in_reply_to_screen_name": "thegrugq", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Wed Apr 23 18:41:16 +0000 2014", + "id": 459039318322208768, + "id_str": "459039318322208768", + "text": "I may now have to hate-read the whole thing to find any security errors in processing stuff coming off the wire", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 18:36:50 +0000 2014", + "id": 459038203291639808, + "id_str": "459038203291639808", + "text": "The best part is it isn’t even true that a valid and well-formed path will always fit. Not by an order of magnitude (in base 10 even!)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 18:33:26 +0000 2014", + "id": 459037345833291776, + "id_str": "459037345833291776", + "text": "@ibogost @antumbral “How can we solve America’s school shooting crisis?”\n\n“Make it unambiguously legal to bring guns into a school” 🇺🇸", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459035088248791040, + "in_reply_to_status_id_str": "459035088248791040", + "in_reply_to_user_id": 6825792, + "in_reply_to_user_id_str": "6825792", + "in_reply_to_screen_name": "ibogost", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 18:29:38 +0000 2014", + "id": 459036391184560128, + "id_str": "459036391184560128", + "text": "@DrewFitz Wacom bamboo app for iPad (with generic stylus)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459036159071379456, + "in_reply_to_status_id_str": "459036159071379456", + "in_reply_to_user_id": 18840781, + "in_reply_to_user_id_str": "18840781", + "in_reply_to_screen_name": "DrewFitz", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 18:27:10 +0000 2014", + "id": 459035768301035520, + "id_str": "459035768301035520", + "text": "So I was reading this book on implementing SSL I bought a long time ago on sale. See attached for opinion. http://t.co/AYa5mptsgF", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 64, + "favorite_count": 54, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 18:22:50 +0000 2014", + "id": 459034676636971008, + "id_str": "459034676636971008", + "text": "@DynamicWebPaige I am not inclined to trust people who are trying really hard to look “respectable.”", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459032980464209920, + "in_reply_to_status_id_str": "459032980464209920", + "in_reply_to_user_id": 18104734, + "in_reply_to_user_id_str": "18104734", + "in_reply_to_screen_name": "DynamicWebPaige", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 18:21:00 +0000 2014", + "id": 459034217511649280, + "id_str": "459034217511649280", + "text": "@Tzeejay work stuff. Long and uninteresting story.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459034106186461184, + "in_reply_to_status_id_str": "459034106186461184", + "in_reply_to_user_id": 1696729956, + "in_reply_to_user_id_str": "1696729956", + "in_reply_to_screen_name": "Tzeejay", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 18:19:51 +0000 2014", + "id": 459033928591212546, + "id_str": "459033928591212546", + "text": "@Tzeejay who said anything about phones? This is at work…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459032585268903936, + "in_reply_to_status_id_str": "459032585268903936", + "in_reply_to_user_id": 1696729956, + "in_reply_to_user_id_str": "1696729956", + "in_reply_to_screen_name": "Tzeejay", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 17:54:12 +0000 2014", + "id": 459027474845007872, + "id_str": "459027474845007872", + "text": "@warty9 not to be a spoil sport, but… I find it unlikely both sides of this conversation would spell compliant wrong", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459027058257965056, + "in_reply_to_status_id_str": "459027058257965056", + "in_reply_to_user_id": 33139339, + "in_reply_to_user_id_str": "33139339", + "in_reply_to_screen_name": "warty9", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 17:52:27 +0000 2014", + "id": 459027031058317312, + "id_str": "459027031058317312", + "text": "@rfc1459 @Jennimason0990 ahh, but the difference is,\n\nI won’t go to the foundational pillars of the internet and say “here, deploy this” :)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459026854490685440, + "in_reply_to_status_id_str": "459026854490685440", + "in_reply_to_user_id": 59219903, + "in_reply_to_user_id_str": "59219903", + "in_reply_to_screen_name": "rfc1459", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 17:51:13 +0000 2014", + "id": 459026722487541760, + "id_str": "459026722487541760", + "text": "@katzmandu hahaha sure they do :) there’s always SOMETHING wrong, whether it’s indentation problems or line wrap problems or…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459026282018123776, + "in_reply_to_status_id_str": "459026282018123776", + "in_reply_to_user_id": 13127002, + "in_reply_to_user_id_str": "13127002", + "in_reply_to_screen_name": "katzmandu", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 17:48:20 +0000 2014", + "id": 459025996080246784, + "id_str": "459025996080246784", + "text": "An unsolved problem in computer science is how to paste working source code into a book without it getting corrupted http://t.co/SrXtyBZtrn", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 13, + "favorite_count": 12, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 17:34:36 +0000 2014", + "id": 459022540426727424, + "id_str": "459022540426727424", + "text": "@ghostqueer pretty sure they don’t necessarily tell you why if you’re rejected", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459021733618384897, + "in_reply_to_status_id_str": "459021733618384897", + "in_reply_to_user_id": 2337742344, + "in_reply_to_user_id_str": "2337742344", + "in_reply_to_screen_name": "ghostqueer", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 17:28:41 +0000 2014", + "id": 459021050664484864, + "id_str": "459021050664484864", + "text": "@JoshuaL @FakeUnicode this is baffling me, on Chrome/OSX I don't see the flag but on Chrome/OSX someone else does !", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 459020815049437184, + "in_reply_to_status_id_str": "459020815049437184", + "in_reply_to_user_id": 16254349, + "in_reply_to_user_id_str": "16254349", + "in_reply_to_screen_name": "JoshuaL", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 17:23:39 +0000 2014", + "id": 459019782864769024, + "id_str": "459019782864769024", + "text": "Full disclosure: this is how I generate that obnoxious colored text. https://t.co/cCGJsekcJA bless @FakeUnicode", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 5, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 17:22:27 +0000 2014", + "id": 459019481088786432, + "id_str": "459019481088786432", + "text": "@matthew_d_green @tqbf but surely now that Dual EC is cancelled it’s all rainbows to omit it in any case, right? 🌈", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459018960265289728, + "in_reply_to_status_id_str": "459018960265289728", + "in_reply_to_user_id": 106234268, + "in_reply_to_user_id_str": "106234268", + "in_reply_to_screen_name": "matthew_d_green", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 17:21:44 +0000 2014", + "id": 459019301669076992, + "id_str": "459019301669076992", + "text": "@matthew_d_green @tqbf I was under the impression it would be required if you wanted to advertise you had *full* support.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459018960265289728, + "in_reply_to_status_id_str": "459018960265289728", + "in_reply_to_user_id": 106234268, + "in_reply_to_user_id_str": "106234268", + "in_reply_to_screen_name": "matthew_d_green", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 17:11:52 +0000 2014", + "id": 459016817378615296, + "id_str": "459016817378615296", + "text": "RT @MarkKriegsman: Secret underground concert hall in Boston actually exists: http://t.co/PU1EiRqbSI HT @skriegsman !", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Wed Apr 23 17:09:00 +0000 2014", + "id": 459016096033828864, + "id_str": "459016096033828864", + "text": "Secret underground concert hall in Boston actually exists: http://t.co/PU1EiRqbSI HT @skriegsman !", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2121681, + "id_str": "2121681" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 5, + "favorite_count": 5, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/PU1EiRqbSI", + "expanded_url": "http://www.messynessychic.com/2014/04/22/the-secret-symphinic-stage-forgotten-35-feet-below-a-local-piano-shop/", + "display_url": "messynessychic.com/2014/04/22/the…", + "indices": [ + 59, + 81 + ] + } + ], + "user_mentions": [ + { + "screen_name": "skriegsman", + "name": "Sue Kriegsman", + "id": 76821702, + "id_str": "76821702", + "indices": [ + 85, + 96 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 5, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 17:07:56 +0000 2014", + "id": 459015828252672000, + "id_str": "459015828252672000", + "text": "@codemastermm they’re all automatically moved to trash but I have to manually empty it ~", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459015372314648576, + "in_reply_to_status_id_str": "459015372314648576", + "in_reply_to_user_id": 15375238, + "in_reply_to_user_id_str": "15375238", + "in_reply_to_screen_name": "codemastermm", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 17:06:50 +0000 2014", + "id": 459015551202111488, + "id_str": "459015551202111488", + "text": "@codemastermm there’s this system that sends me email every time it does something and I was told I’d be removed but I never was 😓", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459015372314648576, + "in_reply_to_status_id_str": "459015372314648576", + "in_reply_to_user_id": 15375238, + "in_reply_to_user_id_str": "15375238", + "in_reply_to_screen_name": "codemastermm", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 17:05:57 +0000 2014", + "id": 459015328392298496, + "id_str": "459015328392298496", + "text": "I did not make up the number 12809 new emails, by the way. It’s since gone up to 12838.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 16:58:34 +0000 2014", + "id": 459013472878354432, + "id_str": "459013472878354432", + "text": "@Talen_Lee \\o/ glory", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458998952822444032, + "in_reply_to_status_id_str": "458998952822444032", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "fr" + }, + { + "created_at": "Wed Apr 23 16:58:10 +0000 2014", + "id": 459013370973536256, + "id_str": "459013370973536256", + "text": ".@marginoferror my stupid cutesy emoji tweets shall flush out ALL the client render errors! 🆒", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459012792880594944, + "in_reply_to_status_id_str": "459012792880594944", + "in_reply_to_user_id": 22039951, + "in_reply_to_user_id_str": "22039951", + "in_reply_to_screen_name": "marginoferror", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 5, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 16:53:09 +0000 2014", + "id": 459012108718731264, + "id_str": "459012108718731264", + "text": "@MaruZenunim but I think “Symbola” would be the font you’re looking for as I think you’re on Linux?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459011551861551104, + "in_reply_to_status_id_str": "459011551861551104", + "in_reply_to_user_id": 628721558, + "in_reply_to_user_id_str": "628721558", + "in_reply_to_screen_name": "MaruZenunim", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 16:51:45 +0000 2014", + "id": 459011757638688769, + "id_str": "459011757638688769", + "text": "@MaruZenunim if you look at Web Twitter it will substitute in images if you don’t have the font. They’re standard emoji", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 459011551861551104, + "in_reply_to_status_id_str": "459011551861551104", + "in_reply_to_user_id": 628721558, + "in_reply_to_user_id_str": "628721558", + "in_reply_to_screen_name": "MaruZenunim", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 16:48:35 +0000 2014", + "id": 459010958711877632, + "id_str": "459010958711877632", + "text": "📭0⃣ No email today. Ahh, blissful silence.\n\nWait, a server communication error? Reconnect…\n\n📬1⃣2⃣8⃣0⃣9⃣", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 8, + "favorite_count": 14, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 16:26:59 +0000 2014", + "id": 459005523703390208, + "id_str": "459005523703390208", + "text": "@FakeUnicode @SamusAranX doesn't seem to fix it. It is a mystery 👻", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 459004921321226240, + "in_reply_to_status_id_str": "459004921321226240", + "in_reply_to_user_id": 2183231114, + "in_reply_to_user_id_str": "2183231114", + "in_reply_to_screen_name": "FakeUnicode", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 16:19:57 +0000 2014", + "id": 459003755451936771, + "id_str": "459003755451936771", + "text": "@FakeUnicode @SamusAranX (\"select all\" seems to be a no-op for me)", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 459003270787108864, + "in_reply_to_status_id_str": "459003270787108864", + "in_reply_to_user_id": 2183231114, + "in_reply_to_user_id_str": "2183231114", + "in_reply_to_screen_name": "FakeUnicode", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 16:19:30 +0000 2014", + "id": 459003641148764160, + "id_str": "459003641148764160", + "text": "@FakeUnicode @SamusAranX that tweet would have had more text after it, saying that the pop-out one works for me, but more textbox weirdness", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 459003270787108864, + "in_reply_to_status_id_str": "459003270787108864", + "in_reply_to_user_id": 2183231114, + "in_reply_to_user_id_str": "2183231114", + "in_reply_to_screen_name": "FakeUnicode", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 16:18:57 +0000 2014", + "id": 459003500958347264, + "id_str": "459003500958347264", + "text": "@FakeUnicode @SamusAranX 🇬🇱🇴🇷🇾", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 459003270787108864, + "in_reply_to_status_id_str": "459003270787108864", + "in_reply_to_user_id": 2183231114, + "in_reply_to_user_id_str": "2183231114", + "in_reply_to_screen_name": "FakeUnicode", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Wed Apr 23 16:15:39 +0000 2014", + "id": 459002671434039296, + "id_str": "459002671434039296", + "text": "@Eldritchreality with this amount of ironic drama? yeah probs.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 459001564674670592, + "in_reply_to_status_id_str": "459001564674670592", + "in_reply_to_user_id": 106061815, + "in_reply_to_user_id_str": "106061815", + "in_reply_to_screen_name": "Eldritchreality", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 16:07:51 +0000 2014", + "id": 459000707249889281, + "id_str": "459000707249889281", + "text": "@SamusAranX @FakeUnicode weird because it's happening no matter what I enter (and I refreshed to be sure it wasn't some residual breakage)", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 459000219762704384, + "in_reply_to_status_id_str": "459000219762704384", + "in_reply_to_user_id": 37647087, + "in_reply_to_user_id_str": "37647087", + "in_reply_to_screen_name": "SamusAranX", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 16:04:33 +0000 2014", + "id": 458999877176152064, + "id_str": "458999877176152064", + "text": "@FakeUnicode cmd-a fails to select all of it, triple click fails to select all of it", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 458999597973516288, + "in_reply_to_status_id_str": "458999597973516288", + "in_reply_to_user_id": 2183231114, + "in_reply_to_user_id_str": "2183231114", + "in_reply_to_screen_name": "FakeUnicode", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 16:02:57 +0000 2014", + "id": 458999476578164736, + "id_str": "458999476578164736", + "text": "@Taiki__San ... can't reproduce? .... \n\nThe 'D' was being China for everyone before, but reckoned we had that sorted out", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 458999151200829440, + "in_reply_to_status_id_str": "458999151200829440", + "in_reply_to_user_id": 188407454, + "in_reply_to_user_id_str": "188407454", + "in_reply_to_screen_name": "Taiki__San", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 16:01:27 +0000 2014", + "id": 458999098654220288, + "id_str": "458999098654220288", + "text": "@Taiki__San gahh oh no! what browser? http://t.co/54sCotAlBl", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 458998632923295745, + "in_reply_to_status_id_str": "458998632923295745", + "in_reply_to_user_id": 188407454, + "in_reply_to_user_id_str": "188407454", + "in_reply_to_screen_name": "Taiki__San", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 15:59:23 +0000 2014", + "id": 458998579487854592, + "id_str": "458998579487854592", + "text": "@FakeUnicode I worked around by using the dev console to copy the HTML of the entire element", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 458998094269394944, + "in_reply_to_status_id_str": "458998094269394944", + "in_reply_to_user_id": 2183231114, + "in_reply_to_user_id_str": "2183231114", + "in_reply_to_screen_name": "FakeUnicode", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 15:59:11 +0000 2014", + "id": 458998526262132736, + "id_str": "458998526262132736", + "text": "@FakeUnicode maybe a button to copy the whole contents of the textbox to clipboard would help?", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 458998094269394944, + "in_reply_to_status_id_str": "458998094269394944", + "in_reply_to_user_id": 2183231114, + "in_reply_to_user_id_str": "2183231114", + "in_reply_to_screen_name": "FakeUnicode", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 15:58:30 +0000 2014", + "id": 458998354161463296, + "id_str": "458998354161463296", + "text": "🇷🇪🇦🇩 🇲🇾 🇳🇴🇻🇪🇱 http://t.co/SBazY7Al13 Glory in the Thunder: an open-access fantasy adventure with cute gay teens! by me!", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 13, + "favorite_count": 18, + "favorited": true, + "retweeted": true, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 15:54:58 +0000 2014", + "id": 458997465619136512, + "id_str": "458997465619136512", + "text": "My next tweet is for pinning to the top in New Profile, please excuse me promoting my work so soon again, I'll try to refrain for a while", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 15:51:57 +0000 2014", + "id": 458996706538164224, + "id_str": "458996706538164224", + "text": "@SHREK_FLEX not to go off on you but EVERY time I mention a bug on ANY platform, Windows Linux OSX, SOMEONE tells me to just stop using it.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 458996262507794433, + "in_reply_to_status_id_str": "458996262507794433", + "in_reply_to_user_id": 27184100, + "in_reply_to_user_id_str": "27184100", + "in_reply_to_screen_name": "SHREK_FLEX", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 15:51:30 +0000 2014", + "id": 458996592914464768, + "id_str": "458996592914464768", + "text": "@SHREK_FLEX right, because every single OS has exactly ZERO bugs in ALL software. It's only OSX that has ever had a bug ever in anything.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 458996262507794433, + "in_reply_to_status_id_str": "458996262507794433", + "in_reply_to_user_id": 27184100, + "in_reply_to_user_id_str": "27184100", + "in_reply_to_screen_name": "SHREK_FLEX", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 15:48:38 +0000 2014", + "id": 458995871351582720, + "id_str": "458995871351582720", + "text": "@SHREK_FLEX @FakeUnicode do I need to dig out that tweet about how this is the most annoying and least helpful reply in the world? :\\", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 458995689796956160, + "in_reply_to_status_id_str": "458995689796956160", + "in_reply_to_user_id": 27184100, + "in_reply_to_user_id_str": "27184100", + "in_reply_to_screen_name": "SHREK_FLEX", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 15:47:08 +0000 2014", + "id": 458995494958956545, + "id_str": "458995494958956545", + "text": "@FakeUnicode on Chrome/OSX I am having this problem where I can't select the entire text in the output box. Last few letters get truncated", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 458721879012827136, + "in_reply_to_status_id_str": "458721879012827136", + "in_reply_to_user_id": 2183231114, + "in_reply_to_user_id_str": "2183231114", + "in_reply_to_screen_name": "FakeUnicode", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 15:41:17 +0000 2014", + "id": 458994024649859074, + "id_str": "458994024649859074", + "text": "@landley 🇳🇴🇵🇪❗", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458993007015235584, + "in_reply_to_status_id_str": "458993007015235584", + "in_reply_to_user_id": 14326287, + "in_reply_to_user_id_str": "14326287", + "in_reply_to_screen_name": "landley", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Wed Apr 23 15:39:11 +0000 2014", + "id": 458993492925374464, + "id_str": "458993492925374464", + "text": "Emoji are a Japanese plot to get English-speaking programmers to finally see value in universal Unicode support 🎌", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 109, + "favorite_count": 75, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 15:35:24 +0000 2014", + "id": 458992542877765632, + "id_str": "458992542877765632", + "text": "@mikko I would love to go from http://t.co/B1Pvo62Xq4 to http://t.co/pevqlmwKTK", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458991959756271617, + "in_reply_to_status_id_str": "458991959756271617", + "in_reply_to_user_id": 23566038, + "in_reply_to_user_id_str": "23566038", + "in_reply_to_screen_name": "mikko", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 15:29:49 +0000 2014", + "id": 458991138087923712, + "id_str": "458991138087923712", + "text": "@Shufflejoy @Talen_Lee … yes.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458991087235784704, + "in_reply_to_status_id_str": "458991087235784704", + "in_reply_to_user_id": 1567524811, + "in_reply_to_user_id_str": "1567524811", + "in_reply_to_screen_name": "Shufflejoy", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 4, + "favorited": true, + "retweeted": false, + "lang": "lt" + }, + { + "created_at": "Wed Apr 23 15:28:35 +0000 2014", + "id": 458990829152239616, + "id_str": "458990829152239616", + "text": "@Talen_Lee I wonder if it says anything that I portrayed myself as cleric…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458990713196146688, + "in_reply_to_status_id_str": "458990713196146688", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 15:27:38 +0000 2014", + "id": 458990589477134336, + "id_str": "458990589477134336", + "text": "@Talen_Lee http://t.co/gy76No6Ry3", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458988885301678080, + "in_reply_to_status_id_str": "458988885301678080", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Wed Apr 23 15:27:16 +0000 2014", + "id": 458990497051455488, + "id_str": "458990497051455488", + "text": "@pchengi https://t.co/5L2WWnP3ie", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458990298543431680, + "in_reply_to_status_id_str": "458990298543431680", + "in_reply_to_user_id": 22619802, + "in_reply_to_user_id_str": "22619802", + "in_reply_to_screen_name": "pchengi", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Wed Apr 23 15:18:26 +0000 2014", + "id": 458988271545372673, + "id_str": "458988271545372673", + "text": "@pchengi if you know what you’re looking for I might be able to find it XD", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458986538828054529, + "in_reply_to_status_id_str": "458986538828054529", + "in_reply_to_user_id": 22619802, + "in_reply_to_user_id_str": "22619802", + "in_reply_to_screen_name": "pchengi", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 15:17:45 +0000 2014", + "id": 458988102091288576, + "id_str": "458988102091288576", + "text": "@darkuncle @USSJoin and an entirely foreseeable consequence of the government depriving people of the right to travel with no oversight", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458987371376029696, + "in_reply_to_status_id_str": "458987371376029696", + "in_reply_to_user_id": 7082212, + "in_reply_to_user_id_str": "7082212", + "in_reply_to_screen_name": "darkuncle", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 15:02:48 +0000 2014", + "id": 458984337401446400, + "id_str": "458984337401446400", + "text": "@puellavulnerata does cyber Caligula come with the little cyber-booties", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458932257059639298, + "in_reply_to_status_id_str": "458932257059639298", + "in_reply_to_user_id": 54666727, + "in_reply_to_user_id_str": "54666727", + "in_reply_to_screen_name": "puellavulnerata", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 14:52:26 +0000 2014", + "id": 458981729144152064, + "id_str": "458981729144152064", + "text": "Better Disney songs: \n\n🎵 Our mental synchronization \nCan have but one explanation\nOur villainy was just meant to beeee~ 🎵", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 14:48:18 +0000 2014", + "id": 458980690428985344, + "id_str": "458980690428985344", + "text": "@heathborders @Dirk_Gently in my case I am doing it for signage reasons, to enforce not making things accidentally signed", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 458977733960167425, + "in_reply_to_status_id_str": "458977733960167425", + "in_reply_to_user_id": 68435555, + "in_reply_to_user_id_str": "68435555", + "in_reply_to_screen_name": "heathborders", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 14:13:52 +0000 2014", + "id": 458972022685859840, + "id_str": "458972022685859840", + "text": "This morning we had a storm with one and only one peal of thunder, right at the start. At least it was a REALLY loud one 😀", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 14:05:41 +0000 2014", + "id": 458969966042415104, + "id_str": "458969966042415104", + "text": "@Talen_Lee that’s… that’s so… slothful… …", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458964536801116160, + "in_reply_to_status_id_str": "458964536801116160", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 13:53:27 +0000 2014", + "id": 458966888048242688, + "id_str": "458966888048242688", + "text": "@Talen_Lee oh, um…, I hate those sorts of games, I can’t focus on them 😥", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458966598015934464, + "in_reply_to_status_id_str": "458966598015934464", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 13:50:33 +0000 2014", + "id": 458966158155476994, + "id_str": "458966158155476994", + "text": "@Talen_Lee um…?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458965163995983872, + "in_reply_to_status_id_str": "458965163995983872", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Wed Apr 23 13:50:14 +0000 2014", + "id": 458966076089704448, + "id_str": "458966076089704448", + "text": "@eevee is it the anime avatar? Being publicly associated with a lot of prominent men in the industry? I don’t know…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458888455955558400, + "in_reply_to_status_id_str": "458888455955558400", + "in_reply_to_user_id": 14412937, + "in_reply_to_user_id_str": "14412937", + "in_reply_to_screen_name": "eevee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 13:48:49 +0000 2014", + "id": 458965721499070465, + "id_str": "458965721499070465", + "text": "@eevee I’ve been puzzling over why *I* attract less boy-hate when I say pretty much the same thing as other internet feminists", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458888455955558400, + "in_reply_to_status_id_str": "458888455955558400", + "in_reply_to_user_id": 14412937, + "in_reply_to_user_id_str": "14412937", + "in_reply_to_screen_name": "eevee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 13:42:50 +0000 2014", + "id": 458964213982314498, + "id_str": "458964213982314498", + "text": "@alt_m1sp for who? You? You’re definitely not ~", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458952323356569600, + "in_reply_to_status_id_str": "458952323356569600", + "in_reply_to_user_id": 2401670173, + "in_reply_to_user_id_str": "2401670173", + "in_reply_to_screen_name": "alt_m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 13:39:02 +0000 2014", + "id": 458963257974222848, + "id_str": "458963257974222848", + "text": "@alt_m1sp @antumbral I had to ask for general if I had any hope of ever getting through it", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458871122616786946, + "in_reply_to_status_id_str": "458871122616786946", + "in_reply_to_user_id": 2401670173, + "in_reply_to_user_id_str": "2401670173", + "in_reply_to_screen_name": "alt_m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 13:36:22 +0000 2014", + "id": 458962585929646080, + "id_str": "458962585929646080", + "text": "@shanley @vaurora did he delete a bunch of tweets? But I’m a super delicate flower and I would never classify this article as hostile…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458835484400037888, + "in_reply_to_status_id_str": "458835484400037888", + "in_reply_to_user_id": 50462250, + "in_reply_to_user_id_str": "50462250", + "in_reply_to_screen_name": "shanley", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 13:29:10 +0000 2014", + "id": 458960776834056192, + "id_str": "458960776834056192", + "text": "@rantyben @thegrugq Edward. Not that I’d know.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458852917655527424, + "in_reply_to_status_id_str": "458852917655527424", + "in_reply_to_user_id": 977910404, + "in_reply_to_user_id_str": "977910404", + "in_reply_to_screen_name": "rantyben", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 05:19:21 +0000 2014", + "id": 458837507397148672, + "id_str": "458837507397148672", + "text": "RT @christinelove: When she said she was into poly I assumed she meant \"loving more than one person\" not \"designing a programming language …", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Wed Apr 23 03:25:44 +0000 2014", + "id": 458808917837873152, + "id_str": "458808917837873152", + "text": "When she said she was into poly I assumed she meant \"loving more than one person\" not \"designing a programming language around polymorphism\"", + "source": "Twitter for Mac", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 14852199, + "id_str": "14852199" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 79, + "favorite_count": 95, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 79, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 05:18:26 +0000 2014", + "id": 458837276551032832, + "id_str": "458837276551032832", + "text": "FBI is accused of putting people on the no-fly list to coerce them to be informants to get back off. http://t.co/XfdGUPOGDI", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 87, + "favorite_count": 16, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 05:07:30 +0000 2014", + "id": 458834527314784257, + "id_str": "458834527314784257", + "text": "@marshray @puellavulnerata gods spare me from the scourge of neurotypicality", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458783964421828608, + "in_reply_to_status_id_str": "458783964421828608", + "in_reply_to_user_id": 88223099, + "in_reply_to_user_id_str": "88223099", + "in_reply_to_screen_name": "marshray", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 04:06:31 +0000 2014", + "id": 458819178963943425, + "id_str": "458819178963943425", + "text": "@anders_ it’s more about signage than size in this case", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458818956795842560, + "in_reply_to_status_id_str": "458818956795842560", + "in_reply_to_user_id": 10886382, + "in_reply_to_user_id_str": "10886382", + "in_reply_to_screen_name": "anders_", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 03:34:55 +0000 2014", + "id": 458811225108152320, + "id_str": "458811225108152320", + "text": "@C0deH4cker \"signed foo;\" is equivalent to \"int foo;\" conveniently. Required for the prototype of main() at the very least.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 458810817497292800, + "in_reply_to_status_id_str": "458810817497292800", + "in_reply_to_user_id": 358315020, + "in_reply_to_user_id_str": "358315020", + "in_reply_to_screen_name": "C0deH4cker", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 03:33:16 +0000 2014", + "id": 458810811428126720, + "id_str": "458810811428126720", + "text": "@protosphere_ @gewt @winocm @C0deH4cker I do too. and -Wall is the \"wall\" of errors.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 458810707350269955, + "in_reply_to_status_id_str": "458810707350269955", + "in_reply_to_user_id": 354662280, + "in_reply_to_user_id_str": "354662280", + "in_reply_to_screen_name": "protosphere_", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 7, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 03:31:13 +0000 2014", + "id": 458810297445543936, + "id_str": "458810297445543936", + "text": "@C0deH4cker BECAUSE SIGNED ARITHMETIC IS THE ENEMY.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 458809918142033921, + "in_reply_to_status_id_str": "458809918142033921", + "in_reply_to_user_id": 358315020, + "in_reply_to_user_id_str": "358315020", + "in_reply_to_screen_name": "C0deH4cker", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 5, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 03:26:53 +0000 2014", + "id": 458809205429129216, + "id_str": "458809205429129216", + "text": "@C0deH4cker my code", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 458808913044205568, + "in_reply_to_status_id_str": "458808913044205568", + "in_reply_to_user_id": 358315020, + "in_reply_to_user_id_str": "358315020", + "in_reply_to_screen_name": "C0deH4cker", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "et" + }, + { + "created_at": "Wed Apr 23 03:15:52 +0000 2014", + "id": 458806431378989056, + "id_str": "458806431378989056", + "text": "I think this is what they call type discipline http://t.co/nxW8QjYooa", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 36, + "favorite_count": 48, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 02:44:57 +0000 2014", + "id": 458798651532644352, + "id_str": "458798651532644352", + "text": "@paulcano kaching.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 458797621063086080, + "in_reply_to_status_id_str": "458797621063086080", + "in_reply_to_user_id": 15474367, + "in_reply_to_user_id_str": "15474367", + "in_reply_to_screen_name": "paulcano", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "ht" + }, + { + "created_at": "Wed Apr 23 02:18:46 +0000 2014", + "id": 458792063786811392, + "id_str": "458792063786811392", + "text": "@voodooKobra it's a rather long report about the statistics of the previous year of hacks put together by verizon", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 458791606209249281, + "in_reply_to_status_id_str": "458791606209249281", + "in_reply_to_user_id": 340518676, + "in_reply_to_user_id_str": "340518676", + "in_reply_to_screen_name": "voodooKobra", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 02:15:29 +0000 2014", + "id": 458791234664800257, + "id_str": "458791234664800257", + "text": "Excerpt from new DBIR http://t.co/vKjRrIWj89", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 9, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 01:47:39 +0000 2014", + "id": 458784232673124352, + "id_str": "458784232673124352", + "text": "@isotarge @DanielOCL @marcan42 I took the generic padlock clip-art in my image editor and pasted a heart over the keyhole.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 458783298597437440, + "in_reply_to_status_id_str": "458783298597437440", + "in_reply_to_user_id": 93617918, + "in_reply_to_user_id_str": "93617918", + "in_reply_to_screen_name": "isotarge", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 01:44:45 +0000 2014", + "id": 458783503191400448, + "id_str": "458783503191400448", + "text": "@TheDaveCA Apple did not disclose who uncovered the bug, perhaps because the uncoverer asked for them not to. So who knows.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 458783121576443904, + "in_reply_to_status_id_str": "458783121576443904", + "in_reply_to_user_id": 50187291, + "in_reply_to_user_id_str": "50187291", + "in_reply_to_screen_name": "TheDaveCA", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 01:41:30 +0000 2014", + "id": 458782683469205505, + "id_str": "458782683469205505", + "text": "@TheDaveCA I think goto fail is the main cause of the wave of SSL auditing.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 458782336289480704, + "in_reply_to_status_id_str": "458782336289480704", + "in_reply_to_user_id": 50187291, + "in_reply_to_user_id_str": "50187291", + "in_reply_to_screen_name": "TheDaveCA", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 01:40:58 +0000 2014", + "id": 458782548702023680, + "id_str": "458782548702023680", + "text": "@TheDaveCA NSA would more be the cause of people adding SSL to more websites, and to eyeing CAs warily", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 458782336289480704, + "in_reply_to_status_id_str": "458782336289480704", + "in_reply_to_user_id": 50187291, + "in_reply_to_user_id_str": "50187291", + "in_reply_to_screen_name": "TheDaveCA", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 01:39:53 +0000 2014", + "id": 458782279205421056, + "id_str": "458782279205421056", + "text": "@Jennimason0990 self-education project.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 458782221403299840, + "in_reply_to_status_id_str": "458782221403299840", + "in_reply_to_user_id": 485288297, + "in_reply_to_user_id_str": "485288297", + "in_reply_to_screen_name": "Jennimason0990", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 01:38:13 +0000 2014", + "id": 458781859795570688, + "id_str": "458781859795570688", + "text": "Logo just got 6000% percent better (thanks @marcan42 for the idea). Still no code. http://t.co/7aX5Uqx5JB", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 14, + "favorite_count": 22, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 01:22:40 +0000 2014", + "id": 458777945654325248, + "id_str": "458777945654325248", + "text": "@marcan42 AHH I SHOULD MAKE THAT CREEPY SMILEY MY LOGO.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 458777760551677954, + "in_reply_to_status_id_str": "458777760551677954", + "in_reply_to_user_id": 39394680, + "in_reply_to_user_id_str": "39394680", + "in_reply_to_screen_name": "marcan42", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 01:12:49 +0000 2014", + "id": 458775464489000960, + "id_str": "458775464489000960", + "text": "@JeffItUp why not both? I mean my purse is pretty secure", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 458775352173535232, + "in_reply_to_status_id_str": "458775352173535232", + "in_reply_to_user_id": 15174399, + "in_reply_to_user_id_str": "15174399", + "in_reply_to_screen_name": "JeffItUp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 01:07:36 +0000 2014", + "id": 458774151772532737, + "id_str": "458774151772532737", + "text": "@mtheoryx um -- I guess the idea is so generic I can't stop you -- but I better not see anyone else make heart-lock their SSL logo!!", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 458773814869233664, + "in_reply_to_status_id_str": "458773814869233664", + "in_reply_to_user_id": 1558511, + "in_reply_to_user_id_str": "1558511", + "in_reply_to_screen_name": "mtheoryx", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 01:05:39 +0000 2014", + "id": 458773662754414592, + "id_str": "458773662754414592", + "text": "@mtheoryx it's internally a vector, but I don't think pixelmator exports any non-raster formats, so I can just make huuuuge rasters", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 458773168191459328, + "in_reply_to_status_id_str": "458773168191459328", + "in_reply_to_user_id": 1558511, + "in_reply_to_user_id_str": "1558511", + "in_reply_to_screen_name": "mtheoryx", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 01:02:17 +0000 2014", + "id": 458772816616521728, + "id_str": "458772816616521728", + "text": "RT @mootcycle: @0xabad1dea I’ve got the logo for the first bug you find: http://t.co/mtWfAvLQsL", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Wed Apr 23 01:01:53 +0000 2014", + "id": 458772714044801024, + "id_str": "458772714044801024", + "text": "@0xabad1dea I’ve got the logo for the first bug you find: http://t.co/mtWfAvLQsL", + "source": "Tweetbot for Mac", + "truncated": false, + "in_reply_to_status_id": 458771148981809152, + "in_reply_to_status_id_str": "458771148981809152", + "in_reply_to_user_id": 126030998, + "in_reply_to_user_id_str": "126030998", + "in_reply_to_screen_name": "0xabad1dea", + "user": { + "id": 14504814, + "id_str": "14504814" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 8, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "0xabad1dea", + "name": "Melissa", + "id": 126030998, + "id_str": "126030998", + "indices": [ + 0, + 11 + ] + } + ], + "media": [ + { + "id": 458772713948332032, + "id_str": "458772713948332032", + "indices": [ + 58, + 80 + ], + "media_url": "http://pbs.twimg.com/media/Bl3jWkeIQAA7-_a.png", + "media_url_https": "https://pbs.twimg.com/media/Bl3jWkeIQAA7-_a.png", + "url": "http://t.co/mtWfAvLQsL", + "display_url": "pic.twitter.com/mtWfAvLQsL", + "expanded_url": "http://twitter.com/mootcycle/status/458772714044801024/photo/1", + "type": "photo", + "sizes": { + "medium": { + "w": 482, + "h": 578, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 408, + "resize": "fit" + }, + "large": { + "w": 482, + "h": 578, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + } + } + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 2, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 01:00:01 +0000 2014", + "id": 458772244731547648, + "id_str": "458772244731547648", + "text": "@anders_ I was inspired by my orange soda, in the tradition of programmers out of ideas everywhere", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 458772046332563456, + "in_reply_to_status_id_str": "458772046332563456", + "in_reply_to_user_id": 10886382, + "in_reply_to_user_id_str": "10886382", + "in_reply_to_screen_name": "anders_", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 00:59:28 +0000 2014", + "id": 458772105044451328, + "id_str": "458772105044451328", + "text": "@weskerfoot I *love* being miserable and building up an urge to destroy the world!", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 458771964849422338, + "in_reply_to_status_id_str": "458771964849422338", + "in_reply_to_user_id": 185472406, + "in_reply_to_user_id_str": "185472406", + "in_reply_to_screen_name": "weskerfoot", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 00:59:02 +0000 2014", + "id": 458771996953034752, + "id_str": "458771996953034752", + "text": "@rantyben not sure if this is a serious suggestion or not", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 458771820481507328, + "in_reply_to_status_id_str": "458771820481507328", + "in_reply_to_user_id": 977910404, + "in_reply_to_user_id_str": "977910404", + "in_reply_to_screen_name": "rantyben", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 00:57:03 +0000 2014", + "id": 458771500246781954, + "id_str": "458771500246781954", + "text": "@mtheoryx everyone thinks my favorite color is pink; everyone is wrong.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 458771412489367552, + "in_reply_to_status_id_str": "458771412489367552", + "in_reply_to_user_id": 1558511, + "in_reply_to_user_id_str": "1558511", + "in_reply_to_screen_name": "mtheoryx", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 00:55:40 +0000 2014", + "id": 458771148981809152, + "id_str": "458771148981809152", + "text": "There! Now that I have a cool logo, I can begin working on the code. Logos are mandatory. http://t.co/P7MBdolHxo", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 20, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 00:50:29 +0000 2014", + "id": 458769845304442880, + "id_str": "458769845304442880", + "text": "@raudelmil I drew two overlapping arrows, and then another giant one over them, then filled in a central arrow-head made from overlaps", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 458769540319805440, + "in_reply_to_status_id_str": "458769540319805440", + "in_reply_to_user_id": 182083978, + "in_reply_to_user_id_str": "182083978", + "in_reply_to_screen_name": "raudelmil", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 00:39:07 +0000 2014", + "id": 458766985548275713, + "id_str": "458766985548275713", + "text": "@matthew_d_green if mine isn't bloody enough for you I guess I can use it as the logo of my own toy implementation or something XD", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 106234268, + "in_reply_to_user_id_str": "106234268", + "in_reply_to_screen_name": "matthew_d_green", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 00:31:38 +0000 2014", + "id": 458765101068460032, + "id_str": "458765101068460032", + "text": "@Emu4iOS Don't.\n\nThe joke is I'm clearly going to hack you.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 458763511649140736, + "in_reply_to_status_id_str": "458763511649140736", + "in_reply_to_user_id": 1616736206, + "in_reply_to_user_id_str": "1616736206", + "in_reply_to_screen_name": "Emu4iOS", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 00:31:02 +0000 2014", + "id": 458764950610395136, + "id_str": "458764950610395136", + "text": "@matthew_d_green you can send me your Satoshi Nakamoto stash for my brilliant creative work.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 458755352591622144, + "in_reply_to_status_id_str": "458755352591622144", + "in_reply_to_user_id": 106234268, + "in_reply_to_user_id_str": "106234268", + "in_reply_to_screen_name": "matthew_d_green", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 00:30:29 +0000 2014", + "id": 458764811216891904, + "id_str": "458764811216891904", + "text": ".@matthew_d_green Here you go sir. It's a protocol diagram arrow which contains within it three other arrows. http://t.co/Y5y5VI6EmN", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 458755352591622144, + "in_reply_to_status_id_str": "458755352591622144", + "in_reply_to_user_id": 106234268, + "in_reply_to_user_id_str": "106234268", + "in_reply_to_screen_name": "matthew_d_green", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 8, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 00:10:31 +0000 2014", + "id": 458759787036278784, + "id_str": "458759787036278784", + "text": "@blaagh cool! I will check it out soon :]", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 458757634901172225, + "in_reply_to_status_id_str": "458757634901172225", + "in_reply_to_user_id": 53546844, + "in_reply_to_user_id_str": "53546844", + "in_reply_to_screen_name": "blaagh", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 23 00:09:45 +0000 2014", + "id": 458759597231472640, + "id_str": "458759597231472640", + "text": "@mcclure111 oh, TLS is on the table, but it's easier to come up with cute puns on SSL", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 458756156874186753, + "in_reply_to_status_id_str": "458756156874186753", + "in_reply_to_user_id": 312426579, + "in_reply_to_user_id_str": "312426579", + "in_reply_to_screen_name": "mcclure111", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 23:55:07 +0000 2014", + "id": 458755912539590656, + "id_str": "458755912539590656", + "text": "@tef oh, I know, but \"git\" is also very clearly named after him ;)", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 458755773292896256, + "in_reply_to_status_id_str": "458755773292896256", + "in_reply_to_user_id": 16681276, + "in_reply_to_user_id_str": "16681276", + "in_reply_to_screen_name": "tef", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 7, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 23:53:42 +0000 2014", + "id": 458755557273636864, + "id_str": "458755557273636864", + "text": "@matthew_d_green well… it’d also be actively encouraging people to call me Melissa on the internet instead of abadidea.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458755440286117888, + "in_reply_to_status_id_str": "458755440286117888", + "in_reply_to_user_id": 106234268, + "in_reply_to_user_id_str": "106234268", + "in_reply_to_screen_name": "matthew_d_green", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 23:50:56 +0000 2014", + "id": 458754858062200832, + "id_str": "458754858062200832", + "text": "As tempting as it is to name my hypothetical toy implementation MeliSSL, that’s a pretty Linus thing to do", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 7, + "favorite_count": 24, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 23:46:37 +0000 2014", + "id": 458753775248080896, + "id_str": "458753775248080896", + "text": "I thought of OrangeSSL after my favorite color, and it turns out that’s a model of paintball gun", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 5, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 23:29:28 +0000 2014", + "id": 458749458545905664, + "id_str": "458749458545905664", + "text": "Java was named after what the guy had on his desk, right? I’VE GOT IT! POLARSS — — oh come on! http://t.co/Rrp3iqHMZP", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 6, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 23:23:54 +0000 2014", + "id": 458748058290094081, + "id_str": "458748058290094081", + "text": "@maxious good job! Keep them coming!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458747944418545664, + "in_reply_to_status_id_str": "458747944418545664", + "in_reply_to_user_id": 1073761, + "in_reply_to_user_id_str": "1073761", + "in_reply_to_screen_name": "maxious", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 23:22:24 +0000 2014", + "id": 458747680119083008, + "id_str": "458747680119083008", + "text": "I suppose you all are wondering why I called this brainstorm meeting. *writes on whiteboard* “PUNNY NAMES FOR SSL/TLS LIBRARIES”", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 6, + "favorite_count": 16, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 23:14:52 +0000 2014", + "id": 458745783245099008, + "id_str": "458745783245099008", + "text": "@meatballninja not to excuse the authors for failing to clearly document the whys of their strange decisions 😎", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458745232041844736, + "in_reply_to_status_id_str": "458745232041844736", + "in_reply_to_user_id": 27951238, + "in_reply_to_user_id_str": "27951238", + "in_reply_to_screen_name": "meatballninja", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 23:08:09 +0000 2014", + "id": 458744094475681792, + "id_str": "458744094475681792", + "text": "@zauspar with some luck you can find one that doesn’t require last month’s rent", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458742632412221440, + "in_reply_to_status_id_str": "458742632412221440", + "in_reply_to_user_id": 216571343, + "in_reply_to_user_id_str": "216571343", + "in_reply_to_screen_name": "zauspar", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 23:02:26 +0000 2014", + "id": 458742653157638144, + "id_str": "458742653157638144", + "text": "@meatballninja but I’m uncertain how I can provide objective proof of “I don’t think this is particularly well-written.”", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458741953232777216, + "in_reply_to_status_id_str": "458741953232777216", + "in_reply_to_user_id": 27951238, + "in_reply_to_user_id_str": "27951238", + "in_reply_to_screen_name": "meatballninja", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 23:01:23 +0000 2014", + "id": 458742392053858304, + "id_str": "458742392053858304", + "text": "@meatballninja accusations without proof of what? As a professional auditor it hits pretty much every one of my “yuck, how nineties” points", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458741953232777216, + "in_reply_to_status_id_str": "458741953232777216", + "in_reply_to_user_id": 27951238, + "in_reply_to_user_id_str": "27951238", + "in_reply_to_screen_name": "meatballninja", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 22:49:30 +0000 2014", + "id": 458739399396950016, + "id_str": "458739399396950016", + "text": "@zauspar *snicker* don’t worry you’re in good company around here", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458738943396036608, + "in_reply_to_status_id_str": "458738943396036608", + "in_reply_to_user_id": 216571343, + "in_reply_to_user_id_str": "216571343", + "in_reply_to_screen_name": "zauspar", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 22:38:37 +0000 2014", + "id": 458736658754846720, + "id_str": "458736658754846720", + "text": "@zauspar running away to Boston was the best decision of my life", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458735344746106880, + "in_reply_to_status_id_str": "458735344746106880", + "in_reply_to_user_id": 216571343, + "in_reply_to_user_id_str": "216571343", + "in_reply_to_screen_name": "zauspar", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 22:31:56 +0000 2014", + "id": 458734979099664384, + "id_str": "458734979099664384", + "text": "Marathon bombing survivor dancing. http://t.co/0HBtb3stdv", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 5, + "favorite_count": 5, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "in" + }, + { + "created_at": "Tue Apr 22 22:10:15 +0000 2014", + "id": 458729521102200832, + "id_str": "458729521102200832", + "text": "RT @mollycrabapple: Why yes I do. @NYPDnews: Do you have a photo w/ a member of the NYPD? Tweet us & tag it #myNYPD http://t.co/aDKoZPjTro", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue Apr 22 20:32:31 +0000 2014", + "id": 458704928462995456, + "id_str": "458704928462995456", + "text": "Why yes I do. @NYPDnews: Do you have a photo w/ a member of the NYPD? Tweet us & tag it #myNYPD http://t.co/aDKoZPjTro", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 458703749037318145, + "in_reply_to_status_id_str": "458703749037318145", + "in_reply_to_user_id": 15644999, + "in_reply_to_user_id_str": "15644999", + "in_reply_to_screen_name": "mollycrabapple", + "user": { + "id": 15644999, + "id_str": "15644999" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 902, + "favorite_count": 887, + "entities": { + "hashtags": [ + { + "text": "myNYPD", + "indices": [ + 92, + 99 + ] + } + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "NYPDnews", + "name": "NYPD NEWS", + "id": 17393196, + "id_str": "17393196", + "indices": [ + 14, + 23 + ] + } + ], + "media": [ + { + "id": 458703749041512448, + "id_str": "458703749041512448", + "indices": [ + 100, + 122 + ], + "media_url": "http://pbs.twimg.com/media/Bl2koSLCYAAEJYi.jpg", + "media_url_https": "https://pbs.twimg.com/media/Bl2koSLCYAAEJYi.jpg", + "url": "http://t.co/aDKoZPjTro", + "display_url": "pic.twitter.com/aDKoZPjTro", + "expanded_url": "http://twitter.com/mollycrabapple/status/458703749037318145/photo/1", + "type": "photo", + "sizes": { + "small": { + "w": 340, + "h": 142, + "resize": "fit" + }, + "large": { + "w": 570, + "h": 238, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 570, + "h": 238, + "resize": "fit" + } + }, + "source_status_id": 458703749037318145, + "source_status_id_str": "458703749037318145" + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 902, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 21:25:36 +0000 2014", + "id": 458718284272398336, + "id_str": "458718284272398336", + "text": "@FakeUnicode from iOS 7 (different result) http://t.co/5x7fSlGTmF", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458717585035390976, + "in_reply_to_status_id_str": "458717585035390976", + "in_reply_to_user_id": 2183231114, + "in_reply_to_user_id_str": "2183231114", + "in_reply_to_screen_name": "FakeUnicode", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "da" + }, + { + "created_at": "Tue Apr 22 21:25:18 +0000 2014", + "id": 458718208388632576, + "id_str": "458718208388632576", + "text": "@FakeUnicode from Chrome / OSX http://t.co/3EzThQL3rv", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 458717585035390976, + "in_reply_to_status_id_str": "458717585035390976", + "in_reply_to_user_id": 2183231114, + "in_reply_to_user_id_str": "2183231114", + "in_reply_to_screen_name": "FakeUnicode", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 21:10:36 +0000 2014", + "id": 458714511730831360, + "id_str": "458714511730831360", + "text": "@zauspar it turns out I don’t actually know anything about you :p", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458714394164068353, + "in_reply_to_status_id_str": "458714394164068353", + "in_reply_to_user_id": 216571343, + "in_reply_to_user_id_str": "216571343", + "in_reply_to_screen_name": "zauspar", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 21:09:49 +0000 2014", + "id": 458714312019034112, + "id_str": "458714312019034112", + "text": "@zauspar congrats… k… can I call you kiddo", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458700644912619520, + "in_reply_to_status_id_str": "458700644912619520", + "in_reply_to_user_id": 216571343, + "in_reply_to_user_id_str": "216571343", + "in_reply_to_screen_name": "zauspar", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 21:08:35 +0000 2014", + "id": 458714004794671104, + "id_str": "458714004794671104", + "text": "@eevee I’m not particularly inclined to pick up a language which publishes “This Week In Language.”", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458699346184114176, + "in_reply_to_status_id_str": "458699346184114176", + "in_reply_to_user_id": 14412937, + "in_reply_to_user_id_str": "14412937", + "in_reply_to_screen_name": "eevee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 21:05:12 +0000 2014", + "id": 458713150725296128, + "id_str": "458713150725296128", + "text": "@zauspar depends on whether you’re talking about a modern bool type (1) or simply bool-by-convention from ancient times", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458692940596908032, + "in_reply_to_status_id_str": "458692940596908032", + "in_reply_to_user_id": 216571343, + "in_reply_to_user_id_str": "216571343", + "in_reply_to_screen_name": "zauspar", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 21:03:51 +0000 2014", + "id": 458712811733258240, + "id_str": "458712811733258240", + "text": "@frkbmb she, ahh, seems to have gone 🔒", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458692527705432064, + "in_reply_to_status_id_str": "458692527705432064", + "in_reply_to_user_id": 540721095, + "in_reply_to_user_id_str": "540721095", + "in_reply_to_screen_name": "frkbmb", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 20:57:26 +0000 2014", + "id": 458711198469734401, + "id_str": "458711198469734401", + "text": "@zauspar I managed to show up on the 10th and have housing on the 15th; had to stay in a hotel for a few days though.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458684754057887744, + "in_reply_to_status_id_str": "458684754057887744", + "in_reply_to_user_id": 216571343, + "in_reply_to_user_id_str": "216571343", + "in_reply_to_screen_name": "zauspar", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 20:52:01 +0000 2014", + "id": 458709833588285442, + "id_str": "458709833588285442", + "text": "Both OSX and iOS updates are out. Includes a weird SSL bug. I see the attention being given to codebases is working http://t.co/m9sGrNx9ml", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 25, + "favorite_count": 10, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 20:47:13 +0000 2014", + "id": 458708626874441728, + "id_str": "458708626874441728", + "text": "RT @FredericJacobs: Apple Security Update 2014-002 update is live. Update all the Macs now.\nhttps://t.co/ABn6SfUuuL http://t.co/azmltKkavi", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue Apr 22 18:35:09 +0000 2014", + "id": 458675389679038464, + "id_str": "458675389679038464", + "text": "Apple Security Update 2014-002 update is live. Update all the Macs now.\nhttps://t.co/ABn6SfUuuL http://t.co/azmltKkavi", + "source": "Twitter for Mac", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 18018877, + "id_str": "18018877" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 224, + "favorite_count": 31, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "https://t.co/ABn6SfUuuL", + "expanded_url": "https://gist.github.com/FredericJacobs/11189734", + "display_url": "gist.github.com/FredericJacobs…", + "indices": [ + 72, + 95 + ] + } + ], + "user_mentions": [ + + ], + "media": [ + { + "id": 458675389330882561, + "id_str": "458675389330882561", + "indices": [ + 96, + 118 + ], + "media_url": "http://pbs.twimg.com/media/Bl2K1iBIAAEaIl1.png", + "media_url_https": "https://pbs.twimg.com/media/Bl2K1iBIAAEaIl1.png", + "url": "http://t.co/azmltKkavi", + "display_url": "pic.twitter.com/azmltKkavi", + "expanded_url": "http://twitter.com/FredericJacobs/status/458675389679038464/photo/1", + "type": "photo", + "sizes": { + "small": { + "w": 336, + "h": 92, + "resize": "fit" + }, + "medium": { + "w": 599, + "h": 164, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 1024, + "h": 280, + "resize": "fit" + } + } + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 224, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 20:45:15 +0000 2014", + "id": 458708131149664256, + "id_str": "458708131149664256", + "text": "@alt_m1sp 🐌 there’s nothing to be afraid of, Jaiden", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458679877248757760, + "in_reply_to_status_id_str": "458679877248757760", + "in_reply_to_user_id": 2401670173, + "in_reply_to_user_id_str": "2401670173", + "in_reply_to_screen_name": "alt_m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 20:43:03 +0000 2014", + "id": 458707578973728768, + "id_str": "458707578973728768", + "text": ".@matthew_d_green there goes RSA’s last excuse!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458676243748388864, + "in_reply_to_status_id_str": "458676243748388864", + "in_reply_to_user_id": 106234268, + "in_reply_to_user_id_str": "106234268", + "in_reply_to_screen_name": "matthew_d_green", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 20:42:36 +0000 2014", + "id": 458707465740111873, + "id_str": "458707465740111873", + "text": "RT @matthew_d_green: NIST has finally put Dual_EC_DRBG out of its misery. One down. http://t.co/9kzxWMlSrR", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue Apr 22 18:38:32 +0000 2014", + "id": 458676243748388864, + "id_str": "458676243748388864", + "text": "NIST has finally put Dual_EC_DRBG out of its misery. One down. http://t.co/9kzxWMlSrR", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 106234268, + "id_str": "106234268" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 72, + "favorite_count": 20, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/9kzxWMlSrR", + "expanded_url": "http://www.nist.gov/itl/csd/sp800-90-042114.cfm", + "display_url": "nist.gov/itl/csd/sp800-…", + "indices": [ + 63, + 85 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 72, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 20:39:03 +0000 2014", + "id": 458706572349149184, + "id_str": "458706572349149184", + "text": "@MissMxMr_mckink @Shufflejoy ! Do you have the name/source of this painting. I love it.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458671814101987328, + "in_reply_to_status_id_str": "458671814101987328", + "in_reply_to_user_id": 2190328752, + "in_reply_to_user_id_str": "2190328752", + "in_reply_to_screen_name": "MissMxMr_mckink", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 20:33:56 +0000 2014", + "id": 458705280922943491, + "id_str": "458705280922943491", + "text": "@runasand @abbynormative thank you for your work, people who file foias!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458660402432573441, + "in_reply_to_status_id_str": "458660402432573441", + "in_reply_to_user_id": 19959946, + "in_reply_to_user_id_str": "19959946", + "in_reply_to_screen_name": "runasand", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 20:28:08 +0000 2014", + "id": 458703822236307458, + "id_str": "458703822236307458", + "text": "@cynicalsecurity @winocm error: lp1: 📠🔥", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458703109275934720, + "in_reply_to_status_id_str": "458703109275934720", + "in_reply_to_user_id": 1863182736, + "in_reply_to_user_id_str": "1863182736", + "in_reply_to_screen_name": "cynicalsecurity", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "in" + }, + { + "created_at": "Tue Apr 22 19:46:37 +0000 2014", + "id": 458693375542439936, + "id_str": "458693375542439936", + "text": "@GarethLewin but to be clear, I am definitely looking for things that NEED to be fixed, and finding lots of things that merely disgust me.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 458693071316590592, + "in_reply_to_status_id_str": "458693071316590592", + "in_reply_to_user_id": 14195214, + "in_reply_to_user_id_str": "14195214", + "in_reply_to_screen_name": "GarethLewin", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 19:44:22 +0000 2014", + "id": 458692807243624449, + "id_str": "458692807243624449", + "text": "@GarethLewin well, it's not like, if I found something that definitely *needed* fixing, I wouldn't bother to tell anyone...", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 458692650711797760, + "in_reply_to_status_id_str": "458692650711797760", + "in_reply_to_user_id": 14195214, + "in_reply_to_user_id_str": "14195214", + "in_reply_to_screen_name": "GarethLewin", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 19:43:40 +0000 2014", + "id": 458692634811588608, + "id_str": "458692634811588608", + "text": "*sips coffee calmly* https://t.co/JE6lDzArIe", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 12, + "favorite_count": 15, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 19:37:59 +0000 2014", + "id": 458691203639554048, + "id_str": "458691203639554048", + "text": "@kx001 I know, but \"lol America\" is a valid response to our own crazy media imo ;)", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 458690889733660673, + "in_reply_to_status_id_str": "458690889733660673", + "in_reply_to_user_id": 35222788, + "in_reply_to_user_id_str": "35222788", + "in_reply_to_screen_name": "kx001", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 19:35:30 +0000 2014", + "id": 458690577719382017, + "id_str": "458690577719382017", + "text": "@kaepora to... various degrees. This is like, they just turned the \"not wrong per se\" dial to max and jammed out", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 458690420894355457, + "in_reply_to_status_id_str": "458690420894355457", + "in_reply_to_user_id": 11728992, + "in_reply_to_user_id_str": "11728992", + "in_reply_to_screen_name": "kaepora", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 19:34:15 +0000 2014", + "id": 458690261481435137, + "id_str": "458690261481435137", + "text": "A lot of OpenSSL code I've seen so far could be described as \"not WRONG per se, but\"", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 13, + "favorite_count": 13, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 18:41:35 +0000 2014", + "id": 458677009473089536, + "id_str": "458677009473089536", + "text": "@blaagh that said, at least your red/green color bars are not the hideous harsh tones of some other diff viewers I've seen :')", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 458674965618102274, + "in_reply_to_status_id_str": "458674965618102274", + "in_reply_to_user_id": 53546844, + "in_reply_to_user_id_str": "53546844", + "in_reply_to_screen_name": "blaagh", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 18:38:49 +0000 2014", + "id": 458676314908917760, + "id_str": "458676314908917760", + "text": "@blaagh and I like side-by-side diffs of the before and after, again, with the whole file visible being an option", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 458674965618102274, + "in_reply_to_status_id_str": "458674965618102274", + "in_reply_to_user_id": 53546844, + "in_reply_to_user_id_str": "53546844", + "in_reply_to_screen_name": "blaagh", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 18:38:04 +0000 2014", + "id": 458676125225746432, + "id_str": "458676125225746432", + "text": "@blaagh aside from the interface looking very 1998 (no offense), I couldn't find a way to, say, see the whole file in question", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 458674965618102274, + "in_reply_to_status_id_str": "458674965618102274", + "in_reply_to_user_id": 53546844, + "in_reply_to_user_id_str": "53546844", + "in_reply_to_screen_name": "blaagh", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 18:19:20 +0000 2014", + "id": 458671410656051201, + "id_str": "458671410656051201", + "text": "crl->meth = not_even_once; #openssltweets", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 13, + "favorite_count": 17, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 18:03:10 +0000 2014", + "id": 458667341010972673, + "id_str": "458667341010972673", + "text": "And not, alas, the best emoji of all, heart-star. 💖", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 18:02:51 +0000 2014", + "id": 458667260295782400, + "id_str": "458667260295782400", + "text": "You can't stick completely arbitrary emoji in your Twitter display name. It only allows old-fashioned wingdings like heart or star.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 18:00:42 +0000 2014", + "id": 458666721696825347, + "id_str": "458666721696825347", + "text": "@gewt probably, and approx. 0% of internet users have such fonts installed", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 458662066518495232, + "in_reply_to_status_id_str": "458662066518495232", + "in_reply_to_user_id": 18125825, + "in_reply_to_user_id_str": "18125825", + "in_reply_to_screen_name": "gewt", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 17:41:20 +0000 2014", + "id": 458661848913813505, + "id_str": "458661848913813505", + "text": "@gewt unfortunately you can't put emoji in your name unless they're part of Old-Fashioned Unicode like the basic heart", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 458661616851382272, + "in_reply_to_status_id_str": "458661616851382272", + "in_reply_to_user_id": 18125825, + "in_reply_to_user_id_str": "18125825", + "in_reply_to_screen_name": "gewt", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 17:38:35 +0000 2014", + "id": 458661155045916672, + "id_str": "458661155045916672", + "text": "I need some sort of dingbat to go by my name to indicate to strangers that about 80% of things I say are sarcastic or ironic", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 4, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 17:37:37 +0000 2014", + "id": 458660911012917248, + "id_str": "458660911012917248", + "text": "@frebib I am too a Certificate Authority.\n\nFilling out that form is literally all it takes to be a Certificate Authority. That's the joke :)", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 458660495722307584, + "in_reply_to_status_id_str": "458660495722307584", + "in_reply_to_user_id": 83715267, + "in_reply_to_user_id_str": "83715267", + "in_reply_to_screen_name": "frebib", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 17:28:34 +0000 2014", + "id": 458658632511811584, + "id_str": "458658632511811584", + "text": "@winocm @thegrugq me providing certs for open source is tax deductible, right?", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 458658227077799936, + "in_reply_to_status_id_str": "458658227077799936", + "in_reply_to_user_id": 428413732, + "in_reply_to_user_id_str": "428413732", + "in_reply_to_screen_name": "winocm", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 17:14:25 +0000 2014", + "id": 458655071694487552, + "id_str": "458655071694487552", + "text": "@zeitungsjunge @dbrgn \n\nThe joke\n^\n|\n|\n|\n|\n|\n|\nv\nyou :)", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 458654632416649216, + "in_reply_to_status_id_str": "458654632416649216", + "in_reply_to_user_id": 200192475, + "in_reply_to_user_id_str": "200192475", + "in_reply_to_screen_name": "zeitungsjunge", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "in" + }, + { + "created_at": "Tue Apr 22 17:03:53 +0000 2014", + "id": 458652424027529217, + "id_str": "458652424027529217", + "text": "@weems I did just notice that if I navigate directly to a tweet which is embedded via the web interface, it shows a \"related headline\"", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 458646729005735936, + "in_reply_to_status_id_str": "458646729005735936", + "in_reply_to_user_id": 367693, + "in_reply_to_user_id_str": "367693", + "in_reply_to_screen_name": "weems", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 16:49:05 +0000 2014", + "id": 458648697845612545, + "id_str": "458648697845612545", + "text": "@kaepora in their defense, they did specifically mention they’ve had trouble getting patches accepted into OpenSSL mainline before.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458646320728006656, + "in_reply_to_status_id_str": "458646320728006656", + "in_reply_to_user_id": 11728992, + "in_reply_to_user_id_str": "11728992", + "in_reply_to_screen_name": "kaepora", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 16:45:34 +0000 2014", + "id": 458647811387830272, + "id_str": "458647811387830272", + "text": "@alexhern hmm… okay.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458647607011991552, + "in_reply_to_status_id_str": "458647607011991552", + "in_reply_to_user_id": 4004901, + "in_reply_to_user_id_str": "4004901", + "in_reply_to_screen_name": "alexhern", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "pl" + }, + { + "created_at": "Tue Apr 22 16:44:33 +0000 2014", + "id": 458647558588743680, + "id_str": "458647558588743680", + "text": "@ClaudioDekker … if I tried to RESPOND to every single @ I would die of typing exhaustion.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458646919792062464, + "in_reply_to_status_id_str": "458646919792062464", + "in_reply_to_user_id": 78721809, + "in_reply_to_user_id_str": "78721809", + "in_reply_to_screen_name": "ClaudioDekker", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 16:43:16 +0000 2014", + "id": 458647234805243904, + "id_str": "458647234805243904", + "text": "For the record: I have zero issue with *being* quoted, it’s twitter and inherently public. Unless of course I made a dumb typo", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 5, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 16:40:03 +0000 2014", + "id": 458646422926409728, + "id_str": "458646422926409728", + "text": "@weems in this case they did an embed, but I’m not aware of a mechanism by which that informs me it happened", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458646178922758144, + "in_reply_to_status_id_str": "458646178922758144", + "in_reply_to_user_id": 367693, + "in_reply_to_user_id_str": "367693", + "in_reply_to_screen_name": "weems", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 16:39:31 +0000 2014", + "id": 458646290000543744, + "id_str": "458646290000543744", + "text": "(I try *really* hard to make sure I see every single @ mention sent my way, so I don’t think I would have missed any such notifications.)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 16:38:03 +0000 2014", + "id": 458645922214588417, + "id_str": "458645922214588417", + "text": "I’m surprised at how often my tweets get quoted by tech journalists and they don’t mention it to me. Seems a bit rude…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 5, + "favorite_count": 5, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 16:36:52 +0000 2014", + "id": 458645622229569536, + "id_str": "458645622229569536", + "text": "@ClaudioDekker ah, right, I forgot about that, which no-one really knew about until suddenly bleeding", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 458645364502183936, + "in_reply_to_status_id_str": "458645364502183936", + "in_reply_to_user_id": 78721809, + "in_reply_to_user_id_str": "78721809", + "in_reply_to_screen_name": "ClaudioDekker", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 16:33:47 +0000 2014", + "id": 458644845327048705, + "id_str": "458644845327048705", + "text": "@ClaudioDekker like I was saying to someone else… this can really only be answered by “have they been known to mis-issue lately?”", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458644652649095168, + "in_reply_to_status_id_str": "458644652649095168", + "in_reply_to_user_id": 78721809, + "in_reply_to_user_id_str": "78721809", + "in_reply_to_screen_name": "ClaudioDekker", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 16:33:07 +0000 2014", + "id": 458644681627533312, + "id_str": "458644681627533312", + "text": "@MaruZenunim just another day in the life of being an insatiable firebrand 8) (thanks, I hadn’t noticed that)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458644062023589889, + "in_reply_to_status_id_str": "458644062023589889", + "in_reply_to_user_id": 628721558, + "in_reply_to_user_id_str": "628721558", + "in_reply_to_screen_name": "MaruZenunim", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 16:31:15 +0000 2014", + "id": 458644211882291201, + "id_str": "458644211882291201", + "text": "@ClaudioDekker (a root CA under your personal control is MORE secure than a commercial one, not less, unless you lose the keys ofc!)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458643765025308673, + "in_reply_to_status_id_str": "458643765025308673", + "in_reply_to_user_id": 78721809, + "in_reply_to_user_id_str": "78721809", + "in_reply_to_screen_name": "ClaudioDekker", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 16:30:33 +0000 2014", + "id": 458644034605817856, + "id_str": "458644034605817856", + "text": "@ClaudioDekker but… what I’m doing is the exact opposite of “untrusted certificate”… unless you mean to random strangers", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458643765025308673, + "in_reply_to_status_id_str": "458643765025308673", + "in_reply_to_user_id": 78721809, + "in_reply_to_user_id_str": "78721809", + "in_reply_to_screen_name": "ClaudioDekker", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 16:28:13 +0000 2014", + "id": 458643446925131777, + "id_str": "458643446925131777", + "text": "@ClaudioDekker 😇", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458642595267502081, + "in_reply_to_status_id_str": "458642595267502081", + "in_reply_to_user_id": 78721809, + "in_reply_to_user_id_str": "78721809", + "in_reply_to_screen_name": "ClaudioDekker", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Tue Apr 22 16:23:17 +0000 2014", + "id": 458642205193015296, + "id_str": "458642205193015296", + "text": "@Pepyri_ after all, StartSSL (I think it was) has a free tier", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 458641026727804928, + "in_reply_to_status_id_str": "458641026727804928", + "in_reply_to_user_id": 491372144, + "in_reply_to_user_id_str": "491372144", + "in_reply_to_screen_name": "Pepyri_", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 16:21:31 +0000 2014", + "id": 458641758684209152, + "id_str": "458641758684209152", + "text": "@Pepyri_ it's not really about the cost but about \"have they been known to mis-issue anything?\"", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 458641026727804928, + "in_reply_to_status_id_str": "458641026727804928", + "in_reply_to_user_id": 491372144, + "in_reply_to_user_id_str": "491372144", + "in_reply_to_screen_name": "Pepyri_", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 16:19:34 +0000 2014", + "id": 458641268151967744, + "id_str": "458641268151967744", + "text": "@Pepyri_ well, this decision is generally delegated to the people who ship IE, Chrome, Safari and Firefox", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 458641026727804928, + "in_reply_to_status_id_str": "458641026727804928", + "in_reply_to_user_id": 491372144, + "in_reply_to_user_id_str": "491372144", + "in_reply_to_screen_name": "Pepyri_", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 16:14:09 +0000 2014", + "id": 458639907758415872, + "id_str": "458639907758415872", + "text": "Can't afford outrageous SSL certificate prices? Limited time offer. Simply install my root cert on all your devices. http://t.co/Y8ZseQWDaZ", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 54, + "favorite_count": 63, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 16:04:24 +0000 2014", + "id": 458637451872190464, + "id_str": "458637451872190464", + "text": "Chrome seems to change its mind on how tabs work in full-screen in OSX every release… probably because they keep reintroducing the same bug", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 15:43:44 +0000 2014", + "id": 458632250901659648, + "id_str": "458632250901659648", + "text": "@anders_ ‘Murica! 😀🇺🇸 https://t.co/8ngnt2wYKL", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458631704794906624, + "in_reply_to_status_id_str": "458631704794906624", + "in_reply_to_user_id": 10886382, + "in_reply_to_user_id_str": "10886382", + "in_reply_to_screen_name": "anders_", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "pt" + }, + { + "created_at": "Tue Apr 22 15:42:09 +0000 2014", + "id": 458631853227147264, + "id_str": "458631853227147264", + "text": "@CheekyMark and they threw in A and E for kicks and giggles? It’d make more sense to ban O0I1 (I have never seen anyone confuse V and U)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458631520237158400, + "in_reply_to_status_id_str": "458631520237158400", + "in_reply_to_user_id": 612437720, + "in_reply_to_user_id_str": "612437720", + "in_reply_to_screen_name": "CheekyMark", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 15:40:32 +0000 2014", + "id": 458631445117161472, + "id_str": "458631445117161472", + "text": "@tqbf @dangoodin001 what’s the course of action when you’re less than 16 according to your driver’s license? Corner cases, people!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458630487813009408, + "in_reply_to_status_id_str": "458630487813009408", + "in_reply_to_user_id": 9395312, + "in_reply_to_user_id_str": "9395312", + "in_reply_to_screen_name": "tqbf", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 15:37:54 +0000 2014", + "id": 458630782358016000, + "id_str": "458630782358016000", + "text": ".@pdo it turns out I am incapable of distinguishing between IBM’s many strange product names", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458630407768899584, + "in_reply_to_status_id_str": "458630407768899584", + "in_reply_to_user_id": 14351328, + "in_reply_to_user_id_str": "14351328", + "in_reply_to_screen_name": "pdo", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 15:36:14 +0000 2014", + "id": 458630365268414464, + "id_str": "458630365268414464", + "text": "@buro9 I think I read it in an lkml quote list, yeah.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458629992562565120, + "in_reply_to_status_id_str": "458629992562565120", + "in_reply_to_user_id": 14113372, + "in_reply_to_user_id_str": "14113372", + "in_reply_to_screen_name": "buro9", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 15:31:26 +0000 2014", + "id": 458629156679741440, + "id_str": "458629156679741440", + "text": "@zhuowei VRY CFG. MCH OBV", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 458628855360946176, + "in_reply_to_status_id_str": "458628855360946176", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 15:29:28 +0000 2014", + "id": 458628662179663872, + "id_str": "458628662179663872", + "text": "RT @sixfootdad: @0xabad1dea does that mean Y only gets banned sometimes?", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue Apr 22 15:28:34 +0000 2014", + "id": 458628434269188096, + "id_str": "458628434269188096", + "text": "@0xabad1dea does that mean Y only gets banned sometimes?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458628230300565504, + "in_reply_to_status_id_str": "458628230300565504", + "in_reply_to_user_id": 126030998, + "in_reply_to_user_id_str": "126030998", + "in_reply_to_screen_name": "0xabad1dea", + "user": { + "id": 171243483, + "id_str": "171243483" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 6, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "0xabad1dea", + "name": "MeliSSL ", + "id": 126030998, + "id_str": "126030998", + "indices": [ + 0, + 11 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 2, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 15:29:12 +0000 2014", + "id": 458628595381190656, + "id_str": "458628595381190656", + "text": "I'm old enough to know the joke that IBM shoved all the vowels into EIEIO but that just takes it to the next level", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 15:27:45 +0000 2014", + "id": 458628230300565504, + "id_str": "458628230300565504", + "text": "This IBM mainframe security guide seriously recommends **banning vowels from passwords** http://t.co/hXzqYJHqW6", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 13, + "favorite_count": 12, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 15:22:28 +0000 2014", + "id": 458626900580401152, + "id_str": "458626900580401152", + "text": "Research brings me to the password configuration of IBM mainframes, with self-documenting values such as LTRLMTAJC http://t.co/Gl1iplJeTH", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 15:15:04 +0000 2014", + "id": 458625036849807360, + "id_str": "458625036849807360", + "text": "RT @thorsheim: .@0xabad1dea Go talk to @stevewerby about that, and see his talk from #passwords13 in Vegas: https://t.co/2qWzT511iZ", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue Apr 22 15:13:03 +0000 2014", + "id": 458624529833943041, + "id_str": "458624529833943041", + "text": ".@0xabad1dea Go talk to @stevewerby about that, and see his talk from #passwords13 in Vegas: https://t.co/2qWzT511iZ", + "source": "MetroTwit", + "truncated": false, + "in_reply_to_status_id": 458622174077935616, + "in_reply_to_status_id_str": "458622174077935616", + "in_reply_to_user_id": 126030998, + "in_reply_to_user_id_str": "126030998", + "in_reply_to_screen_name": "0xabad1dea", + "user": { + "id": 33496439, + "id_str": "33496439" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 5, + "entities": { + "hashtags": [ + { + "text": "passwords13", + "indices": [ + 70, + 82 + ] + } + ], + "symbols": [ + + ], + "urls": [ + { + "url": "https://t.co/2qWzT511iZ", + "expanded_url": "https://www.youtube.com/watch?v=EUsjs4X1aT4", + "display_url": "youtube.com/watch?v=EUsjs4…", + "indices": [ + 93, + 116 + ] + } + ], + "user_mentions": [ + { + "screen_name": "0xabad1dea", + "name": "Melissa ❀", + "id": 126030998, + "id_str": "126030998", + "indices": [ + 1, + 12 + ] + }, + { + "screen_name": "stevewerby", + "name": "Steve Werby", + "id": 21435367, + "id_str": "21435367", + "indices": [ + 24, + 35 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 1, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 15:08:01 +0000 2014", + "id": 458623262998937601, + "id_str": "458623262998937601", + "text": "@MattGrimley something about the word “sinister” in particular just sounds endemic to the political discourse of yonder isle…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458622610025480192, + "in_reply_to_status_id_str": "458622610025480192", + "in_reply_to_user_id": 139651464, + "in_reply_to_user_id_str": "139651464", + "in_reply_to_screen_name": "MattGrimley", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 15:06:35 +0000 2014", + "id": 458622904369160193, + "id_str": "458622904369160193", + "text": "@MattGrimley by lol Britain I mean the same sort of thing as lol America when conservative news talks about they’re taking away our guns", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458622610025480192, + "in_reply_to_status_id_str": "458622610025480192", + "in_reply_to_user_id": 139651464, + "in_reply_to_user_id_str": "139651464", + "in_reply_to_screen_name": "MattGrimley", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 15:03:41 +0000 2014", + "id": 458622174077935616, + "id_str": "458622174077935616", + "text": "Project idea: survey every state/federal agency with a login on their website and chart the password requirements. Feel overwhelming despair", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 4, + "favorite_count": 5, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 14:57:21 +0000 2014", + "id": 458620578375933953, + "id_str": "458620578375933953", + "text": "@Neostrategos and villain is etymologically rooted in one who lives in a country villa. \n\nNow you know all about Roman prejudices!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458620305041543169, + "in_reply_to_status_id_str": "458620305041543169", + "in_reply_to_user_id": 16369077, + "in_reply_to_user_id_str": "16369077", + "in_reply_to_screen_name": "Neostrategos", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 14:54:16 +0000 2014", + "id": 458619801511141377, + "id_str": "458619801511141377", + "text": "@Neostrategos if you etymologically backtrack enough, it means left-handed.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458619657461985280, + "in_reply_to_status_id_str": "458619657461985280", + "in_reply_to_user_id": 16369077, + "in_reply_to_user_id_str": "16369077", + "in_reply_to_screen_name": "Neostrategos", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 14:52:47 +0000 2014", + "id": 458619428603977729, + "id_str": "458619428603977729", + "text": "@xkeepah @NevadaDMV holy nationwide headline about getting hacked waiting to happen", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458617843563515905, + "in_reply_to_status_id_str": "458617843563515905", + "in_reply_to_user_id": 61653331, + "in_reply_to_user_id_str": "61653331", + "in_reply_to_screen_name": "xkeepah", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 14:52:10 +0000 2014", + "id": 458619274635251712, + "id_str": "458619274635251712", + "text": "RT @xkeepah: Hey uh @nevadadmv, these password requirements are some sort of joke, right? #security http://t.co/YsDo5Ll4M3", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue Apr 22 14:46:29 +0000 2014", + "id": 458617843563515905, + "id_str": "458617843563515905", + "text": "Hey uh @nevadadmv, these password requirements are some sort of joke, right? #security http://t.co/YsDo5Ll4M3", + "source": "TweetDeck", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 61653331, + "id_str": "61653331" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 60, + "favorite_count": 33, + "entities": { + "hashtags": [ + { + "text": "security", + "indices": [ + 77, + 86 + ] + } + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "NevadaDMV", + "name": "Nevada DMV", + "id": 17821215, + "id_str": "17821215", + "indices": [ + 7, + 17 + ] + } + ], + "media": [ + { + "id": 458617843395731458, + "id_str": "458617843395731458", + "indices": [ + 87, + 109 + ], + "media_url": "http://pbs.twimg.com/media/Bl1Wf6tCIAIDdZI.png", + "media_url_https": "https://pbs.twimg.com/media/Bl1Wf6tCIAIDdZI.png", + "url": "http://t.co/YsDo5Ll4M3", + "display_url": "pic.twitter.com/YsDo5Ll4M3", + "expanded_url": "http://twitter.com/xkeepah/status/458617843563515905/photo/1", + "type": "photo", + "sizes": { + "medium": { + "w": 600, + "h": 259, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 147, + "resize": "fit" + }, + "large": { + "w": 992, + "h": 428, + "resize": "fit" + } + } + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 60, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 14:52:10 +0000 2014", + "id": 458619274635251712, + "id_str": "458619274635251712", + "text": "RT @xkeepah: Hey uh @nevadadmv, these password requirements are some sort of joke, right? #security http://t.co/YsDo5Ll4M3", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue Apr 22 14:46:29 +0000 2014", + "id": 458617843563515905, + "id_str": "458617843563515905", + "text": "Hey uh @nevadadmv, these password requirements are some sort of joke, right? #security http://t.co/YsDo5Ll4M3", + "source": "TweetDeck", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 61653331, + "id_str": "61653331" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 60, + "favorite_count": 33, + "entities": { + "hashtags": [ + { + "text": "security", + "indices": [ + 77, + 86 + ] + } + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "NevadaDMV", + "name": "Nevada DMV", + "id": 17821215, + "id_str": "17821215", + "indices": [ + 7, + 17 + ] + } + ], + "media": [ + { + "id": 458617843395731458, + "id_str": "458617843395731458", + "indices": [ + 87, + 109 + ], + "media_url": "http://pbs.twimg.com/media/Bl1Wf6tCIAIDdZI.png", + "media_url_https": "https://pbs.twimg.com/media/Bl1Wf6tCIAIDdZI.png", + "url": "http://t.co/YsDo5Ll4M3", + "display_url": "pic.twitter.com/YsDo5Ll4M3", + "expanded_url": "http://twitter.com/xkeepah/status/458617843563515905/photo/1", + "type": "photo", + "sizes": { + "medium": { + "w": 600, + "h": 259, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 147, + "resize": "fit" + }, + "large": { + "w": 992, + "h": 428, + "resize": "fit" + } + } + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 60, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 14:49:28 +0000 2014", + "id": 458618593887133696, + "id_str": "458618593887133696", + "text": "@h0pbeat (note it was published by a tennis club to begin with, not a state-funded scientific research agency)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458618114922799104, + "in_reply_to_status_id_str": "458618114922799104", + "in_reply_to_user_id": 92963556, + "in_reply_to_user_id_str": "92963556", + "in_reply_to_screen_name": "h0pbeat", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 14:49:02 +0000 2014", + "id": 458618487318274048, + "id_str": "458618487318274048", + "text": "@h0pbeat I’m uncertain how else soliciting opinions is generally conducted… but it’s rather beside the point to their outrage", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458618114922799104, + "in_reply_to_status_id_str": "458618114922799104", + "in_reply_to_user_id": 92963556, + "in_reply_to_user_id_str": "92963556", + "in_reply_to_screen_name": "h0pbeat", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 14:44:56 +0000 2014", + "id": 458617454554787840, + "id_str": "458617454554787840", + "text": "@hinanawi_chan for the record, it’s metaphorical children kicking a metaphorical ball of journalism mockery", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458617326091640832, + "in_reply_to_status_id_str": "458617326091640832", + "in_reply_to_user_id": 2336014178, + "in_reply_to_user_id_str": "2336014178", + "in_reply_to_screen_name": "hinanawi_chan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 14:43:48 +0000 2014", + "id": 458617169048506369, + "id_str": "458617169048506369", + "text": "*goes outside, sits beneath flowering tree, watches children play kickball*\n\nHarrumph how sinister", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 5, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 14:42:32 +0000 2014", + "id": 458616849127989248, + "id_str": "458616849127989248", + "text": "@SHREK_FLEX it’s a wonderful thing! It’s a pattern of certain types of news media to deliberately always make everything ominous.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458616587759915008, + "in_reply_to_status_id_str": "458616587759915008", + "in_reply_to_user_id": 27184100, + "in_reply_to_user_id_str": "27184100", + "in_reply_to_screen_name": "SHREK_FLEX", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 14:41:24 +0000 2014", + "id": 458616567287513089, + "id_str": "458616567287513089", + "text": "That article also contains someone fundamentally misunderstanding why their Olympic teams are loaded with young people with rich parents…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 14:40:26 +0000 2014", + "id": 458616322587648000, + "id_str": "458616322587648000", + "text": "Lol Britain. It’s “sinister” if kids don’t want to track wins and losses in a ball game. http://t.co/GT6tBXteIP", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 12, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 14:01:55 +0000 2014", + "id": 458606629798547456, + "id_str": "458606629798547456", + "text": "RT @mattblaze: Journalist asked me if Heartbleed was like a once-in-a-lifetime disaster. I hope to live a lot longer than that, personally.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue Apr 22 14:01:13 +0000 2014", + "id": 458606450726957056, + "id_str": "458606450726957056", + "text": "Journalist asked me if Heartbleed was like a once-in-a-lifetime disaster. I hope to live a lot longer than that, personally.", + "source": "TweetDeck", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 26567591, + "id_str": "26567591" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 34, + "favorite_count": 27, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 34, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 13:53:09 +0000 2014", + "id": 458604421552033792, + "id_str": "458604421552033792", + "text": "@elad3 @Manawyrm you’re trying to nitpick apart my explanation that I fundamentally misunderstood why the page was showing weird cursive.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458604160431452160, + "in_reply_to_status_id_str": "458604160431452160", + "in_reply_to_user_id": 160897504, + "in_reply_to_user_id_str": "160897504", + "in_reply_to_screen_name": "elad3", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 13:49:49 +0000 2014", + "id": 458603584914214912, + "id_str": "458603584914214912", + "text": "@Dirk_Gently comic sans… and blink apparently?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458603500357033984, + "in_reply_to_status_id_str": "458603500357033984", + "in_reply_to_user_id": 15886726, + "in_reply_to_user_id_str": "15886726", + "in_reply_to_screen_name": "Dirk_Gently", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 13:48:43 +0000 2014", + "id": 458603308723482624, + "id_str": "458603308723482624", + "text": "Root cause of this morning’s confusion over http://t.co/jodmtS2FFn : I saw a very different website from y’all… http://t.co/XRDSnSD8fT", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 8, + "favorite_count": 6, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 13:44:23 +0000 2014", + "id": 458602217663397888, + "id_str": "458602217663397888", + "text": "@elad3 @Manawyrm I didn’t. When I said NoScript blocks TTF I mean the kind referenced in URLs in CSS files.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458602001182781440, + "in_reply_to_status_id_str": "458602001182781440", + "in_reply_to_user_id": 160897504, + "in_reply_to_user_id_str": "160897504", + "in_reply_to_screen_name": "elad3", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 13:42:31 +0000 2014", + "id": 458601745497989121, + "id_str": "458601745497989121", + "text": "@elad3 @Manawyrm hopefully this will clarify why I thought it was a web font http://t.co/FiH19qcWGY", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458600159275147264, + "in_reply_to_status_id_str": "458600159275147264", + "in_reply_to_user_id": 160897504, + "in_reply_to_user_id_str": "160897504", + "in_reply_to_screen_name": "elad3", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 13:40:04 +0000 2014", + "id": 458601130235527168, + "id_str": "458601130235527168", + "text": "@mof18202 I never saw Comic Sans, if I had seen Comic Sans I never would have posted that tweet and gotten so much grief :(", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458600909681876992, + "in_reply_to_status_id_str": "458600909681876992", + "in_reply_to_user_id": 239292979, + "in_reply_to_user_id_str": "239292979", + "in_reply_to_screen_name": "mof18202", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 13:33:55 +0000 2014", + "id": 458599582747074560, + "id_str": "458599582747074560", + "text": "@elad3 @Manawyrm NoScript blocks TTF. It’s turing-complete.\n\nBut this was a misunderstanding rooted in me being unable to see the source", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458599283403792384, + "in_reply_to_status_id_str": "458599283403792384", + "in_reply_to_user_id": 160897504, + "in_reply_to_user_id_str": "160897504", + "in_reply_to_screen_name": "elad3", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 13:31:37 +0000 2014", + "id": 458599004872671232, + "id_str": "458599004872671232", + "text": "@JAllmanTalbot @Manawyrm @elad3 ah, yeah, I’m seeing a beautifully unreadable Jeffersonian script.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458598753877123073, + "in_reply_to_status_id_str": "458598753877123073", + "in_reply_to_user_id": 12052082, + "in_reply_to_user_id_str": "12052082", + "in_reply_to_screen_name": "JAllmanTalbot", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 13:29:26 +0000 2014", + "id": 458598452583485440, + "id_str": "458598452583485440", + "text": ".@Manawyrm @elad3 NoScript blocks custom fonts…\n\n… unless that’s an iOS font it’s falling back on bc of something weird; I’m still in bed", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458596907687104512, + "in_reply_to_status_id_str": "458596907687104512", + "in_reply_to_user_id": 118308837, + "in_reply_to_user_id_str": "118308837", + "in_reply_to_screen_name": "Manawyrm", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 04:32:39 +0000 2014", + "id": 458463369302142976, + "id_str": "458463369302142976", + "text": "@zauspar you’re not gonna stay up all night to read my book? 😭", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458462316405587968, + "in_reply_to_status_id_str": "458462316405587968", + "in_reply_to_user_id": 216571343, + "in_reply_to_user_id_str": "216571343", + "in_reply_to_screen_name": "zauspar", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 04:27:35 +0000 2014", + "id": 458462092455342080, + "id_str": "458462092455342080", + "text": "@zauspar @m1sp it’s my novel. The one I wrote! http://t.co/SBazY7Al13 \n\nThe steampunk element will come in halfway through first chapter :p", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458461134584963072, + "in_reply_to_status_id_str": "458461134584963072", + "in_reply_to_user_id": 216571343, + "in_reply_to_user_id_str": "216571343", + "in_reply_to_screen_name": "zauspar", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 04:16:08 +0000 2014", + "id": 458459211647963136, + "id_str": "458459211647963136", + "text": "@_wirepair you started it.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458459088180224000, + "in_reply_to_status_id_str": "458459088180224000", + "in_reply_to_user_id": 253384212, + "in_reply_to_user_id_str": "253384212", + "in_reply_to_screen_name": "_wirepair", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 04:14:22 +0000 2014", + "id": 458458766229643264, + "id_str": "458458766229643264", + "text": "@_wirepair I’ll be thrilled to not see you", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458457487495012352, + "in_reply_to_status_id_str": "458457487495012352", + "in_reply_to_user_id": 253384212, + "in_reply_to_user_id_str": "253384212", + "in_reply_to_screen_name": "_wirepair", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 04:12:26 +0000 2014", + "id": 458458282282463232, + "id_str": "458458282282463232", + "text": "@joncruz I have a nexus 7. By which I mean my husband is on his second one cuz he broke the first.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458458118280585216, + "in_reply_to_status_id_str": "458458118280585216", + "in_reply_to_user_id": 14417040, + "in_reply_to_user_id_str": "14417040", + "in_reply_to_screen_name": "joncruz", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 04:10:13 +0000 2014", + "id": 458457722472910848, + "id_str": "458457722472910848", + "text": ".@Kufat literally on top of, I would nest them, big iPad, little iPad, iPhone, one big sold-my-soul-to-Apple family", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458457496232148992, + "in_reply_to_status_id_str": "458457496232148992", + "in_reply_to_user_id": 207691003, + "in_reply_to_user_id_str": "207691003", + "in_reply_to_screen_name": "Kufat", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 5, + "favorite_count": 5, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 04:08:18 +0000 2014", + "id": 458457238903218176, + "id_str": "458457238903218176", + "text": "@zauspar @m1sp *quietly asks, so, have you read Glory in the Thunder?*", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458444827550441474, + "in_reply_to_status_id_str": "458444827550441474", + "in_reply_to_user_id": 216571343, + "in_reply_to_user_id_str": "216571343", + "in_reply_to_screen_name": "zauspar", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 04:07:25 +0000 2014", + "id": 458457017825628160, + "id_str": "458457017825628160", + "text": "I have an irrational desire for an iPad mini on top of the big iPad I already have. It’s just. so. cute.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 8, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 02:50:49 +0000 2014", + "id": 458437740775092225, + "id_str": "458437740775092225", + "text": "RT @edropple: @0xabad1dea Yesterday / all my troubles were so far away / now my data base is owned today / I can't rollback to yesterday", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue Apr 22 02:47:01 +0000 2014", + "id": 458436784951943169, + "id_str": "458436784951943169", + "text": "@0xabad1dea Yesterday / all my troubles were so far away / now my data base is owned today / I can't rollback to yesterday", + "source": "Twitter for Mac", + "truncated": false, + "in_reply_to_status_id": 458436545696268288, + "in_reply_to_status_id_str": "458436545696268288", + "in_reply_to_user_id": 126030998, + "in_reply_to_user_id_str": "126030998", + "in_reply_to_screen_name": "0xabad1dea", + "user": { + "id": 19435553, + "id_str": "19435553" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 30, + "favorite_count": 32, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "0xabad1dea", + "name": "MeliSSL", + "id": 126030998, + "id_str": "126030998", + "indices": [ + 0, + 11 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 30, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 02:46:04 +0000 2014", + "id": 458436545696268288, + "id_str": "458436545696268288", + "text": "@edropple That sounds like a song. \n\nMy favorite day is\n\nyesterday, yesterday, yesterday...", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 458435439742189568, + "in_reply_to_status_id_str": "458435439742189568", + "in_reply_to_user_id": 19435553, + "in_reply_to_user_id_str": "19435553", + "in_reply_to_screen_name": "edropple", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 02:40:50 +0000 2014", + "id": 458435228059439104, + "id_str": "458435228059439104", + "text": "Sort by... date...? Clearly I don't understand how this works http://t.co/FtMRVw6pE7", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 14, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 02:28:29 +0000 2014", + "id": 458432122140000256, + "id_str": "458432122140000256", + "text": ".@damienmiller Bless. I forgot about bit bucket", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 458431801657008128, + "in_reply_to_status_id_str": "458431801657008128", + "in_reply_to_user_id": 19319871, + "in_reply_to_user_id_str": "19319871", + "in_reply_to_screen_name": "damienmiller", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 02:28:15 +0000 2014", + "id": 458432062270488576, + "id_str": "458432062270488576", + "text": "RT @damienmiller: @0xabad1dea https://t.co/FvbzkngR07 is probably the best, though there might be a github mirror (the one my 20s of Google…", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue Apr 22 02:27:13 +0000 2014", + "id": 458431801657008128, + "id_str": "458431801657008128", + "text": "@0xabad1dea https://t.co/FvbzkngR07 is probably the best, though there might be a github mirror (the one my 20s of Google found was stale)", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 458430282988015616, + "in_reply_to_status_id_str": "458430282988015616", + "in_reply_to_user_id": 126030998, + "in_reply_to_user_id_str": "126030998", + "in_reply_to_screen_name": "0xabad1dea", + "user": { + "id": 19319871, + "id_str": "19319871" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 5, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "https://t.co/FvbzkngR07", + "expanded_url": "https://bitbucket.org/braindamaged/openbsd-src/commits/all", + "display_url": "bitbucket.org/braindamaged/o…", + "indices": [ + 12, + 35 + ] + } + ], + "user_mentions": [ + { + "screen_name": "0xabad1dea", + "name": "MeliSSL", + "id": 126030998, + "id_str": "126030998", + "indices": [ + 0, + 11 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 1, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 02:27:05 +0000 2014", + "id": 458431769302532096, + "id_str": "458431769302532096", + "text": "@0xdeadbabe @4Dgifts I know, and this seems to be the root cause of why I can't find any interface that isn't hideous and primitive", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 458431623411662848, + "in_reply_to_status_id_str": "458431623411662848", + "in_reply_to_user_id": 19806908, + "in_reply_to_user_id_str": "19806908", + "in_reply_to_screen_name": "0xdeadbabe", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 02:26:20 +0000 2014", + "id": 458431578604310528, + "id_str": "458431578604310528", + "text": "@uradn this seems to be a news website...?", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 458431299913412608, + "in_reply_to_status_id_str": "458431299913412608", + "in_reply_to_user_id": 46984101, + "in_reply_to_user_id_str": "46984101", + "in_reply_to_screen_name": "uradn", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 02:24:24 +0000 2014", + "id": 458431093147185152, + "id_str": "458431093147185152", + "text": "@4Dgifts ... note this is a strictly technical definition of civilization, and not an endorsement of their HR ;)", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 458430761474215936, + "in_reply_to_status_id_str": "458430761474215936", + "in_reply_to_user_id": 534619276, + "in_reply_to_user_id_str": "534619276", + "in_reply_to_screen_name": "4Dgifts", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 02:23:42 +0000 2014", + "id": 458430917447790592, + "id_str": "458430917447790592", + "text": "@4Dgifts Github. I'm asking for their github. Which they don't have :p", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 458430761474215936, + "in_reply_to_status_id_str": "458430761474215936", + "in_reply_to_user_id": 534619276, + "in_reply_to_user_id_str": "534619276", + "in_reply_to_screen_name": "4Dgifts", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 02:21:11 +0000 2014", + "id": 458430282988015616, + "id_str": "458430282988015616", + "text": "Is there a *civilized* website for comfortably reviewing OpenBSD patches? Note that http://t.co/1IEY0AH5KY falls below my civilization bar.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 4, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 02:13:36 +0000 2014", + "id": 458428377268252673, + "id_str": "458428377268252673", + "text": "@0xcharlie @rantyben (shots fired pew pew)", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 458427716656574464, + "in_reply_to_status_id_str": "458427716656574464", + "in_reply_to_user_id": 65845659, + "in_reply_to_user_id_str": "65845659", + "in_reply_to_screen_name": "0xcharlie", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 02:12:11 +0000 2014", + "id": 458428016834908160, + "id_str": "458428016834908160", + "text": "@0xcharlie we can't all coast on being TV stars.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 458427716656574464, + "in_reply_to_status_id_str": "458427716656574464", + "in_reply_to_user_id": 65845659, + "in_reply_to_user_id_str": "65845659", + "in_reply_to_screen_name": "0xcharlie", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 02:11:53 +0000 2014", + "id": 458427943916941312, + "id_str": "458427943916941312", + "text": "@0xcharlie I'll have you know that reviewers specifically complimented me on how thorough my CFP submission was thank you very much", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 458427716656574464, + "in_reply_to_status_id_str": "458427716656574464", + "in_reply_to_user_id": 65845659, + "in_reply_to_user_id_str": "65845659", + "in_reply_to_screen_name": "0xcharlie", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 01:49:47 +0000 2014", + "id": 458422381296775168, + "id_str": "458422381296775168", + "text": "I guess I'm not submitting to the defcon CFP this year. I haven't been able to find the time to work on it :[", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 01:39:41 +0000 2014", + "id": 458419841394028544, + "id_str": "458419841394028544", + "text": "@Spitefuel @frkbmb wow, their web design is so… white!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458389644129103872, + "in_reply_to_status_id_str": "458389644129103872", + "in_reply_to_user_id": 458430196, + "in_reply_to_user_id_str": "458430196", + "in_reply_to_screen_name": "Spitefuel", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 01:38:25 +0000 2014", + "id": 458419521733550081, + "id_str": "458419521733550081", + "text": "@frkbmb are they unaware that duck is already a word with a meaning in American political jargon?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458414010530930688, + "in_reply_to_status_id_str": "458414010530930688", + "in_reply_to_user_id": 540721095, + "in_reply_to_user_id_str": "540721095", + "in_reply_to_screen_name": "frkbmb", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 01:35:59 +0000 2014", + "id": 458418906613694464, + "id_str": "458418906613694464", + "text": "@Talen_Lee I want you to know I think this is clever but I can’t RT it", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458410864148615169, + "in_reply_to_status_id_str": "458410864148615169", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 01:32:18 +0000 2014", + "id": 458417981694169088, + "id_str": "458417981694169088", + "text": "@juliepagano @zauspar I think it comes down to “there was a serious problem but it wasn’t necessarily illegal per se”", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458341276690436097, + "in_reply_to_status_id_str": "458341276690436097", + "in_reply_to_user_id": 15822648, + "in_reply_to_user_id_str": "15822648", + "in_reply_to_screen_name": "juliepagano", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 01:18:38 +0000 2014", + "id": 458414542431989763, + "id_str": "458414542431989763", + "text": "@m1sp random Alk-art http://t.co/OGU7B0vvR4", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "sv" + }, + { + "created_at": "Tue Apr 22 00:45:24 +0000 2014", + "id": 458406178356465664, + "id_str": "458406178356465664", + "text": "@0xcharlie I said \"and that week I was busy with heartbleed, and–\"", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 458405841146634240, + "in_reply_to_status_id_str": "458405841146634240", + "in_reply_to_user_id": 65845659, + "in_reply_to_user_id_str": "65845659", + "in_reply_to_screen_name": "0xcharlie", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 00:38:34 +0000 2014", + "id": 458404457794252800, + "id_str": "458404457794252800", + "text": "@Jennimason0990 I mentioned \"and I was busy with heartbleed\" and she made me explain.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 458404325824278528, + "in_reply_to_status_id_str": "458404325824278528", + "in_reply_to_user_id": 485288297, + "in_reply_to_user_id_str": "485288297", + "in_reply_to_screen_name": "Jennimason0990", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 00:38:02 +0000 2014", + "id": 458404323203223552, + "id_str": "458404323203223552", + "text": "(No, I don't expect everyone to hear about every tech drama, but heartbleed was def at \"grandparents calling you about it\" level)", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 12, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 00:36:35 +0000 2014", + "id": 458403958785310720, + "id_str": "458403958785310720", + "text": "I'm unsure if my psychiatrist is the last person in the free world to hear about heartbleed or she wanted to see me stammer to explain it.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 7, + "favorite_count": 25, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 00:16:46 +0000 2014", + "id": 458398973355905025, + "id_str": "458398973355905025", + "text": "@washiiko data redundancy, how does it work?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458398146792411136, + "in_reply_to_status_id_str": "458398146792411136", + "in_reply_to_user_id": 47900074, + "in_reply_to_user_id_str": "47900074", + "in_reply_to_screen_name": "washiiko", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 22 00:00:30 +0000 2014", + "id": 458394879769722880, + "id_str": "458394879769722880", + "text": "@_am3thyst @kivikakk it was me who was sick though, not them, it seemed to be a philosophical matter", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458394602370654208, + "in_reply_to_status_id_str": "458394602370654208", + "in_reply_to_user_id": 423275465, + "in_reply_to_user_id_str": "423275465", + "in_reply_to_screen_name": "_am3thyst", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 21 23:58:56 +0000 2014", + "id": 458394484137803776, + "id_str": "458394484137803776", + "text": "@alt_m1sp 💖", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458392397315993600, + "in_reply_to_status_id_str": "458392397315993600", + "in_reply_to_user_id": 2401670173, + "in_reply_to_user_id_str": "2401670173", + "in_reply_to_screen_name": "alt_m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Mon Apr 21 23:57:51 +0000 2014", + "id": 458394214003642369, + "id_str": "458394214003642369", + "text": "@kivikakk this person is pretty reasonable/mindful, I think they just have some particular aversion to medicine dependency because ??.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458393029515038720, + "in_reply_to_status_id_str": "458393029515038720", + "in_reply_to_user_id": 67204542, + "in_reply_to_user_id_str": "67204542", + "in_reply_to_screen_name": "kivikakk", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 21 23:42:36 +0000 2014", + "id": 458390376815267840, + "id_str": "458390376815267840", + "text": "@kivikakk I got a well-meaning lecture from someone about being dependent on medicine to sleep… after I was ready to die because I couldn't", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458390108526231552, + "in_reply_to_status_id_str": "458390108526231552", + "in_reply_to_user_id": 67204542, + "in_reply_to_user_id_str": "67204542", + "in_reply_to_screen_name": "kivikakk", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 21 23:35:52 +0000 2014", + "id": 458388678810017792, + "id_str": "458388678810017792", + "text": "@m1sp @zhuowei Clarion’s cute!\n\nJust, you know… a little yandere", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458388306087006208, + "in_reply_to_status_id_str": "458388306087006208", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 21 23:32:31 +0000 2014", + "id": 458387838963576832, + "id_str": "458387838963576832", + "text": "@zhuowei @m1sp he was right though. It turned out the book was much better for it", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458387732470190080, + "in_reply_to_status_id_str": "458387732470190080", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 21 23:31:56 +0000 2014", + "id": 458387691911258112, + "id_str": "458387691911258112", + "text": "@m1sp and she very specifically annoys Clarion by being like lol Erelhoen isn’t the western edge of the world lol", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458387433701134336, + "in_reply_to_status_id_str": "458387433701134336", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 21 23:27:59 +0000 2014", + "id": 458386698435842048, + "id_str": "458386698435842048", + "text": "@zhuowei @m1sp “oh, this character is cute and interesting!” 🔪", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458385940000411648, + "in_reply_to_status_id_str": "458385940000411648", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 21 23:23:49 +0000 2014", + "id": 458385646844149760, + "id_str": "458385646844149760", + "text": "@m1sp but Clarion doesn’t get to kill enough named characters! 🔪", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458383953699684352, + "in_reply_to_status_id_str": "458383953699684352", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 21 23:20:47 +0000 2014", + "id": 458384882985885696, + "id_str": "458384882985885696", + "text": "@m1sp @hinanawi_chan I assume it’s like my plan where it means 10GB for me, my husband, his mom, and all three of his siblings", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458384637211860993, + "in_reply_to_status_id_str": "458384637211860993", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 21 23:13:49 +0000 2014", + "id": 458383131549376512, + "id_str": "458383131549376512", + "text": "@m1sp now, I think I like her, and she’s not evil, so I need to find someone actually legit evil to kill her", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458381693997416448, + "in_reply_to_status_id_str": "458381693997416448", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 21 23:08:49 +0000 2014", + "id": 458381872503205888, + "id_str": "458381872503205888", + "text": "@m1sp in the earliest drafts, adult Barsamin had it in his possession due to an unspecified adventure of his youth", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458381693997416448, + "in_reply_to_status_id_str": "458381693997416448", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 21 23:06:59 +0000 2014", + "id": 458381412111220737, + "id_str": "458381412111220737", + "text": "@m1sp anyway I have a good way to hook her into the plot, but it makes her kinda… doomed http://t.co/CFfABB5Ccl", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458379528541179904, + "in_reply_to_status_id_str": "458379528541179904", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 21 23:05:05 +0000 2014", + "id": 458380933331439616, + "id_str": "458380933331439616", + "text": "@Shufflejoy @hinanawi_chan @m1sp there’s something you need to know, and if you reject me now, I understand…\n\nI’m… a cisgirl 😣", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458379593766797312, + "in_reply_to_status_id_str": "458379593766797312", + "in_reply_to_user_id": 1567524811, + "in_reply_to_user_id_str": "1567524811", + "in_reply_to_screen_name": "Shufflejoy", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 21 23:01:18 +0000 2014", + "id": 458379979651559424, + "id_str": "458379979651559424", + "text": "@m1sp I think she’s meant to be a magical girl in a manga?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458379528541179904, + "in_reply_to_status_id_str": "458379528541179904", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 21 22:59:17 +0000 2014", + "id": 458379475185856512, + "id_str": "458379475185856512", + "text": "@hinanawi_chan @Shufflejoy @m1sp 😳", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458378644277047296, + "in_reply_to_status_id_str": "458378644277047296", + "in_reply_to_user_id": 2336014178, + "in_reply_to_user_id_str": "2336014178", + "in_reply_to_screen_name": "hinanawi_chan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": true, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Mon Apr 21 22:54:06 +0000 2014", + "id": 458378170761482240, + "id_str": "458378170761482240", + "text": "@m1sp @hinanawi_chan the sky’s awake, so I’m awake, so I want to pester you with character development ideas", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458377746398212096, + "in_reply_to_status_id_str": "458377746398212096", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 21 22:52:04 +0000 2014", + "id": 458377656065880064, + "id_str": "458377656065880064", + "text": "@danielwithmusic there are already robust OSS clones of github’s software.\n\nBut I have zero accounts and am involved with zero repos yonder.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458376979352281088, + "in_reply_to_status_id_str": "458376979352281088", + "in_reply_to_user_id": 73962161, + "in_reply_to_user_id_str": "73962161", + "in_reply_to_screen_name": "danielwithmusic", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 21 22:48:25 +0000 2014", + "id": 458376737588776960, + "id_str": "458376737588776960", + "text": "@zorm 👻🌆", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458376513986240512, + "in_reply_to_status_id_str": "458376513986240512", + "in_reply_to_user_id": 17954340, + "in_reply_to_user_id_str": "17954340", + "in_reply_to_screen_name": "zorm", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Mon Apr 21 22:46:09 +0000 2014", + "id": 458376168849563648, + "id_str": "458376168849563648", + "text": "For no reason at all, I muse on how quickly and effectively github made itself a pretty big part of basic web infrastructure", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 8, + "favorite_count": 11, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 21 22:36:39 +0000 2014", + "id": 458373777244839937, + "id_str": "458373777244839937", + "text": "@iPhoneBen ahh, yeah.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458373648689020928, + "in_reply_to_status_id_str": "458373648689020928", + "in_reply_to_user_id": 20732714, + "in_reply_to_user_id_str": "20732714", + "in_reply_to_screen_name": "iPhoneBen", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "lv" + }, + { + "created_at": "Mon Apr 21 22:30:19 +0000 2014", + "id": 458372184118132736, + "id_str": "458372184118132736", + "text": "@iPhoneBen to be clear, it’s not updating the count, it’s creating objectively wrong numbers out of thin air", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458371489188687873, + "in_reply_to_status_id_str": "458371489188687873", + "in_reply_to_user_id": 20732714, + "in_reply_to_user_id_str": "20732714", + "in_reply_to_screen_name": "iPhoneBen", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 21 22:28:56 +0000 2014", + "id": 458371834178969600, + "id_str": "458371834178969600", + "text": "Those crazy white supremacists planted Easter eggs with propaganda, clearly to get more media attention, so I won’t say their name", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 21 22:20:13 +0000 2014", + "id": 458369644219604992, + "id_str": "458369644219604992", + "text": "@d1str0 never said it wasn’t! It’s always his right. And it’s my right to feel he doesn’t want to own up to what, exactly, transpired.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458369461834096640, + "in_reply_to_status_id_str": "458369461834096640", + "in_reply_to_user_id": 1434667070, + "in_reply_to_user_id_str": "1434667070", + "in_reply_to_screen_name": "d1str0", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 21 22:17:42 +0000 2014", + "id": 458369008845459456, + "id_str": "458369008845459456", + "text": "@d1str0 after acknowledging Vague Mistakes Were Made, he directly threatens to sue ppl if they won’t drop the subject http://t.co/X1NmHCZ0rU", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1434667070, + "in_reply_to_user_id_str": "1434667070", + "in_reply_to_screen_name": "d1str0", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 21 22:15:02 +0000 2014", + "id": 458368336045559808, + "id_str": "458368336045559808", + "text": "@MikeIsaac @DrPizza he’s just moving on! don’t imply there’s a lot being said behind closed doors! He might sue you :)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458361958291345409, + "in_reply_to_status_id_str": "458361958291345409", + "in_reply_to_user_id": 19040598, + "in_reply_to_user_id_str": "19040598", + "in_reply_to_screen_name": "MikeIsaac", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 21 22:13:14 +0000 2014", + "id": 458367885824770048, + "id_str": "458367885824770048", + "text": "@tylerni7 as someone who keeps a very close eye on this sort of thing, I can assure you this is not what the API usually does :)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458367719403159552, + "in_reply_to_status_id_str": "458367719403159552", + "in_reply_to_user_id": 17049813, + "in_reply_to_user_id_str": "17049813", + "in_reply_to_screen_name": "tylerni7", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 21 22:11:19 +0000 2014", + "id": 458367404582514688, + "id_str": "458367404582514688", + "text": "@d1str0 I’m nearly quoting, just slightly rephrased to fit. In particular I was assuming reader has read https://t.co/2zyk44d07X", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458366817191211008, + "in_reply_to_status_id_str": "458366817191211008", + "in_reply_to_user_id": 1434667070, + "in_reply_to_user_id_str": "1434667070", + "in_reply_to_screen_name": "d1str0", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 21 22:08:10 +0000 2014", + "id": 458366609607102464, + "id_str": "458366609607102464", + "text": "Twitter API is doing this weird thing where it repeatedly changes its mind about how many RTs a tweet has by, uh, about 30 *pokes engineers*", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 21 21:54:02 +0000 2014", + "id": 458363051587416064, + "id_str": "458363051587416064", + "text": "At least “and if you say otherwise again, I’ll sue” kinda nicely wraps up yourself for the Court of Public Opinion", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 6, + "favorite_count": 10, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 21 21:50:29 +0000 2014", + "id": 458362158548795392, + "id_str": "458362158548795392", + "text": "@frkbmb oh, those crazy pants people, clearly desperate for media attention", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458347799382204416, + "in_reply_to_status_id_str": "458347799382204416", + "in_reply_to_user_id": 540721095, + "in_reply_to_user_id_str": "540721095", + "in_reply_to_screen_name": "frkbmb", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 21 21:37:53 +0000 2014", + "id": 458358987311034368, + "id_str": "458358987311034368", + "text": "Github: “non-specific and not-illegal mistakes were made” Cofounder: “and I’ll sue you if you get specific.” http://t.co/8jLG2taowd 😒", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 106, + "favorite_count": 52, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 21 21:20:11 +0000 2014", + "id": 458354534881177600, + "id_str": "458354534881177600", + "text": "@samuelpepys wasn’t that the one your dad thought was cute? Your parents need to sort out their internal soap opera", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458189532589215744, + "in_reply_to_status_id_str": "458189532589215744", + "in_reply_to_user_id": 14475268, + "in_reply_to_user_id_str": "14475268", + "in_reply_to_screen_name": "samuelpepys", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 21 21:11:16 +0000 2014", + "id": 458352292308467712, + "id_str": "458352292308467712", + "text": "@sthbrx what did you do 😷\n\nHey your username changed…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458351980709425153, + "in_reply_to_status_id_str": "458351980709425153", + "in_reply_to_user_id": 2336014178, + "in_reply_to_user_id_str": "2336014178", + "in_reply_to_screen_name": "hinanawi_chan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 21 21:00:56 +0000 2014", + "id": 458349690871111680, + "id_str": "458349690871111680", + "text": "RT @nelhage: \"Pinging a friend who works there\" remains the most reliable way to report bugs to tech companies, with \"tweeting\" coming in a…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Mon Apr 21 19:19:51 +0000 2014", + "id": 458324253566177280, + "id_str": "458324253566177280", + "text": "\"Pinging a friend who works there\" remains the most reliable way to report bugs to tech companies, with \"tweeting\" coming in a close second.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 11806222, + "id_str": "11806222" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 102, + "favorite_count": 63, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 102, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 21 20:58:20 +0000 2014", + "id": 458349034265378816, + "id_str": "458349034265378816", + "text": "@winocm 👭", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458319321132183553, + "in_reply_to_status_id_str": "458319321132183553", + "in_reply_to_user_id": 428413732, + "in_reply_to_user_id_str": "428413732", + "in_reply_to_screen_name": "winocm", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Mon Apr 21 20:53:15 +0000 2014", + "id": 458347757494104064, + "id_str": "458347757494104064", + "text": "@wwwtxt they did eventually make one, but it was pretty unambiguously marketed towards young girls. Can’t seem to find a copy on rom sites…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458311799172251648, + "in_reply_to_status_id_str": "458311799172251648", + "in_reply_to_user_id": 207756340, + "in_reply_to_user_id_str": "207756340", + "in_reply_to_screen_name": "wwwtxt", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 21 20:49:00 +0000 2014", + "id": 458346688898678784, + "id_str": "458346688898678784", + "text": "@sthbrx in other words, dash dash analyze is probably never seeing most of the code to begin with", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458308954540752896, + "in_reply_to_status_id_str": "458308954540752896", + "in_reply_to_user_id": 2336014178, + "in_reply_to_user_id_str": "2336014178", + "in_reply_to_screen_name": "hinanawi_chan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 21 20:46:18 +0000 2014", + "id": 458346009236881408, + "id_str": "458346009236881408", + "text": "(I don’t mean that to sound like a harsh personal condemnation of half of twitter, just that the correct testing mindset is CRUCIAL here)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 21 20:40:29 +0000 2014", + "id": 458344542883045376, + "id_str": "458344542883045376", + "text": "In this RT: if you’re surprised people would plug arbitrary things into a USB port on a medical device: your surprise is why it crashed 😞", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 11, + "favorite_count": 13, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 21 20:38:18 +0000 2014", + "id": 458343993743802368, + "id_str": "458343993743802368", + "text": "@kherge when I say “old” I mean it was a $50 tablet eight years ago.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458343678478544896, + "in_reply_to_status_id_str": "458343678478544896", + "in_reply_to_user_id": 389676688, + "in_reply_to_user_id_str": "389676688", + "in_reply_to_screen_name": "kherge", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 21 20:37:18 +0000 2014", + "id": 458343742744035328, + "id_str": "458343742744035328", + "text": "@Bitcrack_Cyber @stevewerby a patient confined to the bed and it’s in reach? Not unreasonable, they’re called universal after all", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458105199354478592, + "in_reply_to_status_id_str": "458105199354478592", + "in_reply_to_user_id": 306372832, + "in_reply_to_user_id_str": "306372832", + "in_reply_to_screen_name": "Bitcrack_Cyber", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 21 20:35:07 +0000 2014", + "id": 458343190991761408, + "id_str": "458343190991761408", + "text": "RT @stevewerby: Anesthesia delivery systems recalled. Connecting cell phone to USB port may cause it to stop working. Disturbing. http://t.…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Mon Apr 21 00:57:50 +0000 2014", + "id": 458046919907225600, + "id_str": "458046919907225600", + "text": "Anesthesia delivery systems recalled. Connecting cell phone to USB port may cause it to stop working. Disturbing. http://t.co/5sq0rfUIfJ", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 21435367, + "id_str": "21435367" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 49, + "favorite_count": 9, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/5sq0rfUIfJ", + "expanded_url": "http://www.fda.gov/MedicalDevices/Safety/ListofRecalls/ucm393536.htm", + "display_url": "fda.gov/MedicalDevices…", + "indices": [ + 114, + 136 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 49, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 21 20:28:54 +0000 2014", + "id": 458341626591866880, + "id_str": "458341626591866880", + "text": "Dear Husband “lost” the pen to the old Wacom tablet. What an incredibly convenient excuse for him to buy a nice new one, hmm?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 8, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 21 20:10:35 +0000 2014", + "id": 458337019358609408, + "id_str": "458337019358609408", + "text": "@ClaudioDekker stick it to the fruit!", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 458323366643261441, + "in_reply_to_status_id_str": "458323366643261441", + "in_reply_to_user_id": 78721809, + "in_reply_to_user_id_str": "78721809", + "in_reply_to_screen_name": "ClaudioDekker", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 21 18:08:42 +0000 2014", + "id": 458306345734012928, + "id_str": "458306345734012928", + "text": "@m1sp I think I have a plot for her, but it would require her dramatic and noble death. (Not pictured.) http://t.co/QUsMPGPJIu", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 21 17:43:39 +0000 2014", + "id": 458300041929953280, + "id_str": "458300041929953280", + "text": "RT @arstechnica: Obama ordered to divulge legal basis for killing Americans with drones http://t.co/tAOIzKdgn9", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Mon Apr 21 17:38:07 +0000 2014", + "id": 458298647990370305, + "id_str": "458298647990370305", + "text": "Obama ordered to divulge legal basis for killing Americans with drones http://t.co/tAOIzKdgn9", + "source": "Ars tweetbot", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 717313, + "id_str": "717313" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 115, + "favorite_count": 30, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/tAOIzKdgn9", + "expanded_url": "http://ars.to/Pnzijm", + "display_url": "ars.to/Pnzijm", + "indices": [ + 71, + 93 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 115, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 21 16:51:01 +0000 2014", + "id": 458286796271779840, + "id_str": "458286796271779840", + "text": "@MikeRobbinsUSA Large marathons are released in several waves. She is the winner of the elite ( = highly accomplished runner) women’s wave.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458283778599702528, + "in_reply_to_status_id_str": "458283778599702528", + "in_reply_to_user_id": 713766486, + "in_reply_to_user_id_str": "713766486", + "in_reply_to_screen_name": "MikeRobbinsUSA", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 21 16:14:40 +0000 2014", + "id": 458277649480445952, + "id_str": "458277649480445952", + "text": "@Shufflejoy @DerekIsNormal thoughts: the bit about “even if he’s injured” reveals they only care about enforcing patriarchy", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458266351795052546, + "in_reply_to_status_id_str": "458266351795052546", + "in_reply_to_user_id": 1567524811, + "in_reply_to_user_id_str": "1567524811", + "in_reply_to_screen_name": "Shufflejoy", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 21 15:33:53 +0000 2014", + "id": 458267385192259584, + "id_str": "458267385192259584", + "text": "@mgedmin .... *donk* you're right I think?? Why did I think they were structs...", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 458265100219322369, + "in_reply_to_status_id_str": "458265100219322369", + "in_reply_to_user_id": 56868544, + "in_reply_to_user_id_str": "56868544", + "in_reply_to_screen_name": "mgedmin", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 21 15:17:13 +0000 2014", + "id": 458263190917644288, + "id_str": "458263190917644288", + "text": "@stevecheckoway sorry if I sent too many stray mentions your way from people speculating at me", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 150882400, + "in_reply_to_user_id_str": "150882400", + "in_reply_to_screen_name": "stevecheckoway", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 21 15:15:09 +0000 2014", + "id": 458262671117529088, + "id_str": "458262671117529088", + "text": "@Talen_Lee @winocm (quiet objection that these quizzes are kinda rigged to make people pick stupid answers instead of “I don’t know”)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458250347950387200, + "in_reply_to_status_id_str": "458250347950387200", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 21 15:12:00 +0000 2014", + "id": 458261878394077184, + "id_str": "458261878394077184", + "text": "@mgedmin Ohh, that... those are structs, aren't they?", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 458261193472614400, + "in_reply_to_status_id_str": "458261193472614400", + "in_reply_to_user_id": 56868544, + "in_reply_to_user_id_str": "56868544", + "in_reply_to_screen_name": "mgedmin", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 21 15:05:47 +0000 2014", + "id": 458260312047624193, + "id_str": "458260312047624193", + "text": "@mgedmin aggressive memsetting is pretty normal for crypto code. But if you're going to malloc+memset(0), calloc does both.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 458259458779795456, + "in_reply_to_status_id_str": "458259458779795456", + "in_reply_to_user_id": 56868544, + "in_reply_to_user_id_str": "56868544", + "in_reply_to_screen_name": "mgedmin", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 21 14:54:12 +0000 2014", + "id": 458257397421977600, + "id_str": "458257397421977600", + "text": "@mgedmin the memsets are subsumed into calloc in their patch. The problem with the patch is they messed up one particular instance", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 458253550527979520, + "in_reply_to_status_id_str": "458253550527979520", + "in_reply_to_user_id": 56868544, + "in_reply_to_user_id_str": "56868544", + "in_reply_to_screen_name": "mgedmin", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 21 14:30:37 +0000 2014", + "id": 458251464855801856, + "id_str": "458251464855801856", + "text": "[weekday self-RT] my novel is now open access http://t.co/SBazY7Al13 it's kinda like game of thrones but with more cute things, and guns", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 9, + "favorite_count": 14, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 21 14:11:43 +0000 2014", + "id": 458246707495849984, + "id_str": "458246707495849984", + "text": "@bobpoekert winner 2!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458246607566163968, + "in_reply_to_status_id_str": "458246607566163968", + "in_reply_to_user_id": 191945961, + "in_reply_to_user_id_str": "191945961", + "in_reply_to_screen_name": "bobpoekert", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "nl" + }, + { + "created_at": "Mon Apr 21 14:11:20 +0000 2014", + "id": 458246610062163968, + "id_str": "458246610062163968", + "text": "@0x90NOP @dakami other people in merely the same datacenter can’t crack your crypto by measuring cache misses :)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458127179239272448, + "in_reply_to_status_id_str": "458127179239272448", + "in_reply_to_user_id": 523656838, + "in_reply_to_user_id_str": "523656838", + "in_reply_to_screen_name": "0x90NOP", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 21 14:07:51 +0000 2014", + "id": 458245733326798848, + "id_str": "458245733326798848", + "text": "@main____ winner 🎊", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458244718644969472, + "in_reply_to_status_id_str": "458244718644969472", + "in_reply_to_user_id": 258357924, + "in_reply_to_user_id_str": "258357924", + "in_reply_to_screen_name": "main____", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "nl" + }, + { + "created_at": "Mon Apr 21 14:00:21 +0000 2014", + "id": 458243848851185664, + "id_str": "458243848851185664", + "text": "[already reported/fixed] If you can spot it first try, we need you on the front lines. http://t.co/wf38iaOYom h/t @stevecheckoway", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 21 13:39:10 +0000 2014", + "id": 458238516523454464, + "id_str": "458238516523454464", + "text": "@Talen_Lee well, I don’t have the inclination to keep up with the canons of ALL of them, since I consider most of the writing terrible", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458237866850521088, + "in_reply_to_status_id_str": "458237866850521088", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 21 13:34:43 +0000 2014", + "id": 458237397420224512, + "id_str": "458237397420224512", + "text": "@Talen_Lee actually my favorite superhero is Static Shock", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458237220059906048, + "in_reply_to_status_id_str": "458237220059906048", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 21 13:34:01 +0000 2014", + "id": 458237220433178624, + "id_str": "458237220433178624", + "text": "RT @Harruhy: From the official Windows 8.1 phone site, look at the Photos section.\n\nIt has a picture of a Mami cosplayer. http://t.co/dpLjL…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Mon Apr 21 00:22:06 +0000 2014", + "id": 458037925075099649, + "id_str": "458037925075099649", + "text": "From the official Windows 8.1 phone site, look at the Photos section.\n\nIt has a picture of a Mami cosplayer. http://t.co/dpLjLYfXbC", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 116635663, + "id_str": "116635663" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 231, + "favorite_count": 125, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ], + "media": [ + { + "id": 458037925083488256, + "id_str": "458037925083488256", + "indices": [ + 109, + 131 + ], + "media_url": "http://pbs.twimg.com/media/BltHEOpCIAAFZ7j.png", + "media_url_https": "https://pbs.twimg.com/media/BltHEOpCIAAFZ7j.png", + "url": "http://t.co/dpLjLYfXbC", + "display_url": "pic.twitter.com/dpLjLYfXbC", + "expanded_url": "http://twitter.com/Harruhy/status/458037925075099649/photo/1", + "type": "photo", + "sizes": { + "medium": { + "w": 600, + "h": 338, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 191, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 896, + "h": 504, + "resize": "fit" + } + } + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 231, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 21 13:31:29 +0000 2014", + "id": 458236583746224129, + "id_str": "458236583746224129", + "text": "@Talen_Lee Spider-Man.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458171445164531712, + "in_reply_to_status_id_str": "458171445164531712", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "de" + }, + { + "created_at": "Mon Apr 21 13:22:12 +0000 2014", + "id": 458234245325291521, + "id_str": "458234245325291521", + "text": "Why certificate revocation is terrible, in excruciating detail https://t.co/5L2WWnP3ie", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 37, + "favorite_count": 28, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 21 05:28:11 +0000 2014", + "id": 458114957796978688, + "id_str": "458114957796978688", + "text": "@antumbral @m1sp well it’s bedtime so I’ll sleep on it", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458113862210818048, + "in_reply_to_status_id_str": "458113862210818048", + "in_reply_to_user_id": 19837512, + "in_reply_to_user_id_str": "19837512", + "in_reply_to_screen_name": "antumbral", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 21 05:21:54 +0000 2014", + "id": 458113375973961728, + "id_str": "458113375973961728", + "text": "@m1sp but I’m torn between a physical power and an abstract one. Or… could she conceivably be strictly mortal?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458112517844111362, + "in_reply_to_status_id_str": "458112517844111362", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 21 05:15:41 +0000 2014", + "id": 458111812165455872, + "id_str": "458111812165455872", + "text": "@m1sp http://t.co/kgqL8tXc50 Naniki weighs in", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 458108064722206720, + "in_reply_to_status_id_str": "458108064722206720", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "de" + }, + { + "created_at": "Mon Apr 21 05:01:57 +0000 2014", + "id": 458108354565791745, + "id_str": "458108354565791745", + "text": "@m1sp EVIL NEVER RESTS? NEITHER SHALL GOOD.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 458108064722206720, + "in_reply_to_status_id_str": "458108064722206720", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 21 04:55:17 +0000 2014", + "id": 458106674289868800, + "id_str": "458106674289868800", + "text": "@kivikakk come to the dark side and reign over the internet \n\nOr quietly sob about how the internet is doomed", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 458099383557292034, + "in_reply_to_status_id_str": "458099383557292034", + "in_reply_to_user_id": 67204542, + "in_reply_to_user_id_str": "67204542", + "in_reply_to_screen_name": "kivikakk", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 21 04:54:15 +0000 2014", + "id": 458106415295778816, + "id_str": "458106415295778816", + "text": "@m1sp a motivation appears! http://t.co/LaTZiEXldP", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 21 04:25:57 +0000 2014", + "id": 458099296093884416, + "id_str": "458099296093884416", + "text": "@kivikakk wait my fantasy work where everything ends in tears \n\nOr my infosec work where everything ends in tears", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458099108465500160, + "in_reply_to_status_id_str": "458099108465500160", + "in_reply_to_user_id": 67204542, + "in_reply_to_user_id_str": "67204542", + "in_reply_to_screen_name": "kivikakk", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 21 04:23:58 +0000 2014", + "id": 458098793201020928, + "id_str": "458098793201020928", + "text": "@m1sp I’m sure Bald Lady will get along fine with our main cast and not consider them fragments of evil incarnate http://t.co/HYg356Hsqe", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 21 04:13:00 +0000 2014", + "id": 458096034909286400, + "id_str": "458096034909286400", + "text": "@m1sp @zauspar how about Sailor Moon? The skirts are cut pretty short but they don’t flap up or anything", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458094702818906112, + "in_reply_to_status_id_str": "458094702818906112", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 21 03:53:14 +0000 2014", + "id": 458091059915292672, + "id_str": "458091059915292672", + "text": "@m1sp but she must be the aspect of something: however I don’t think gumption is an aspect", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458089583410827266, + "in_reply_to_status_id_str": "458089583410827266", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 21 03:48:11 +0000 2014", + "id": 458089790442061824, + "id_str": "458089790442061824", + "text": "@m1sp I think you mean goddess of INFINITE FREE POPCORN", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458089583410827266, + "in_reply_to_status_id_str": "458089583410827266", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 21 03:47:43 +0000 2014", + "id": 458089673903329280, + "id_str": "458089673903329280", + "text": "@m1sp …", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458089583410827266, + "in_reply_to_status_id_str": "458089583410827266", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Mon Apr 21 03:44:35 +0000 2014", + "id": 458088884896018432, + "id_str": "458088884896018432", + "text": "@m1sp I think it’s the other way around: the bald lady set sail and discovered Europe. She should stick a flag in it.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458088585615261696, + "in_reply_to_status_id_str": "458088585615261696", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 21 03:40:14 +0000 2014", + "id": 458087787682873344, + "id_str": "458087787682873344", + "text": "@m1sp guess who’s now researching Taino culture and language", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 21 03:08:52 +0000 2014", + "id": 458079894522830848, + "id_str": "458079894522830848", + "text": "Go back to the 90s and tell everyone to include other virtual machines run by strangers on the same hardware in the threat model", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 14, + "favorite_count": 18, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 21 03:03:14 +0000 2014", + "id": 458078476579647489, + "id_str": "458078476579647489", + "text": "Reminder that lol cloud lol security ☁️ http://t.co/XR3TFFVLm5 ☔️", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 39, + "favorite_count": 29, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 21 02:57:19 +0000 2014", + "id": 458076989304635392, + "id_str": "458076989304635392", + "text": "@m1sp I guess she is from Fantasy Steampunk Caribbean? Which raises more questions than it answers", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458076557043441664, + "in_reply_to_status_id_str": "458076557043441664", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 21 02:54:56 +0000 2014", + "id": 458076387837243393, + "id_str": "458076387837243393", + "text": "@m1sp you might have missed this one? But she doesn’t have a name yet. http://t.co/BFMkwAef2S", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458075530919550977, + "in_reply_to_status_id_str": "458075530919550977", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 21 02:53:22 +0000 2014", + "id": 458075995875315712, + "id_str": "458075995875315712", + "text": "@m1sp I figured he’d have to be a bit non-standard so I went for goofy. I guess Bradamant’s Srs Bznz is to show she fell far from the tree", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458075530919550977, + "in_reply_to_status_id_str": "458075530919550977", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 21 02:50:56 +0000 2014", + "id": 458075383725060096, + "id_str": "458075383725060096", + "text": "@m1sp Bradamant’s parents", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458075339361497088, + "in_reply_to_status_id_str": "458075339361497088", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 21 02:48:20 +0000 2014", + "id": 458074728994193408, + "id_str": "458074728994193408", + "text": "@m1sp oh look character designs http://t.co/D7f0E0WVMG\n\nI swear I was not waiting for you to wake up, I really did just finish them", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 21 01:54:32 +0000 2014", + "id": 458061187536945152, + "id_str": "458061187536945152", + "text": "@MatthewOden funny enough the writer is... named Kern.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 458060841128980481, + "in_reply_to_status_id_str": "458060841128980481", + "in_reply_to_user_id": 14536394, + "in_reply_to_user_id_str": "14536394", + "in_reply_to_screen_name": "MatthewOden", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 21 01:47:51 +0000 2014", + "id": 458059508284014592, + "id_str": "458059508284014592", + "text": "If I were to ever change my avatar, I think this would have to be it (from http://t.co/qKemh0pLSM ) http://t.co/fdRqhiDWEa", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 9, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 21 01:20:26 +0000 2014", + "id": 458052608918568960, + "id_str": "458052608918568960", + "text": "@bwalter01 Lindt is the sort of thing where they sell single bite size pieces in book stores here", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458052431742775296, + "in_reply_to_status_id_str": "458052431742775296", + "in_reply_to_user_id": 2271624740, + "in_reply_to_user_id_str": "2271624740", + "in_reply_to_screen_name": "bwalter01", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 21 01:19:20 +0000 2014", + "id": 458052329636638720, + "id_str": "458052329636638720", + "text": "@jesster_king @bwalter01 to be sure, there is chocolate IN it, so they can call it chocolate, but it’s a small amount", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458052054712197121, + "in_reply_to_status_id_str": "458052054712197121", + "in_reply_to_user_id": 46763517, + "in_reply_to_user_id_str": "46763517", + "in_reply_to_screen_name": "jesster_king", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 21 01:16:59 +0000 2014", + "id": 458051738319478784, + "id_str": "458051738319478784", + "text": "@zauspar (I haven’t watched kill la kill but I have been heavily exposed to fandom radiation)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458050884073570305, + "in_reply_to_status_id_str": "458050884073570305", + "in_reply_to_user_id": 216571343, + "in_reply_to_user_id_str": "216571343", + "in_reply_to_screen_name": "zauspar", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 21 01:16:36 +0000 2014", + "id": 458051641208745984, + "id_str": "458051641208745984", + "text": "@zauspar as a tidbit about him I don’t think is mentioned in the story — his father is American.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458050884073570305, + "in_reply_to_status_id_str": "458050884073570305", + "in_reply_to_user_id": 216571343, + "in_reply_to_user_id_str": "216571343", + "in_reply_to_screen_name": "zauspar", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 21 01:14:19 +0000 2014", + "id": 458051069315407872, + "id_str": "458051069315407872", + "text": "@bwalter01 I don’t think they sell that one here.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458050778679488512, + "in_reply_to_status_id_str": "458050778679488512", + "in_reply_to_user_id": 2271624740, + "in_reply_to_user_id_str": "2271624740", + "in_reply_to_screen_name": "bwalter01", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 21 01:11:32 +0000 2014", + "id": 458050369478987776, + "id_str": "458050369478987776", + "text": "“Well, she dug her grave and now she has to sit in it.” — colorful Husband metaphors", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 7, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 21 01:03:00 +0000 2014", + "id": 458048221294911488, + "id_str": "458048221294911488", + "text": "@bwalter01 when I went to .eu I discovered that what we call fancy European chocolate is what you call €1 corner store chocolate", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458047510154842113, + "in_reply_to_status_id_str": "458047510154842113", + "in_reply_to_user_id": 2271624740, + "in_reply_to_user_id_str": "2271624740", + "in_reply_to_screen_name": "bwalter01", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 21 01:02:21 +0000 2014", + "id": 458048056433602560, + "id_str": "458048056433602560", + "text": "@bwalter01 if you ever visit the US, try authentic Hershey’s chocolate from a corner store. It’s disgusting :)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458047510154842113, + "in_reply_to_status_id_str": "458047510154842113", + "in_reply_to_user_id": 2271624740, + "in_reply_to_user_id_str": "2271624740", + "in_reply_to_screen_name": "bwalter01", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 21 00:51:43 +0000 2014", + "id": 458045380681551873, + "id_str": "458045380681551873", + "text": "@jesster_king things like Hershey kisses in particular are a hideous far cry from good milk chocolate", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458044894318034945, + "in_reply_to_status_id_str": "458044894318034945", + "in_reply_to_user_id": 46763517, + "in_reply_to_user_id_str": "46763517", + "in_reply_to_screen_name": "jesster_king", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 21 00:50:55 +0000 2014", + "id": 458045179497558016, + "id_str": "458045179497558016", + "text": "@jesster_king most of it is just chocolate-flavored candy. Some stores import European chocolate bars but the price is pretty marked up", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458044894318034945, + "in_reply_to_status_id_str": "458044894318034945", + "in_reply_to_user_id": 46763517, + "in_reply_to_user_id_str": "46763517", + "in_reply_to_screen_name": "jesster_king", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 21 00:40:48 +0000 2014", + "id": 458042632619716608, + "id_str": "458042632619716608", + "text": "@weems @NeinQuarterly @focalintent sugar, filling, food coloring (which I’m allergic to!), and maybe a tiny pinch of real chocolate", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458042364943405057, + "in_reply_to_status_id_str": "458042364943405057", + "in_reply_to_user_id": 367693, + "in_reply_to_user_id_str": "367693", + "in_reply_to_screen_name": "weems", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 21 00:39:09 +0000 2014", + "id": 458042216771248128, + "id_str": "458042216771248128", + "text": "@mralext20 download link is at the top, or http://t.co/SLVtaXeXl9 if memory serves", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458041981722062848, + "in_reply_to_status_id_str": "458041981722062848", + "in_reply_to_user_id": 905041434, + "in_reply_to_user_id_str": "905041434", + "in_reply_to_screen_name": "mralext20", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 21 00:38:36 +0000 2014", + "id": 458042081525903361, + "id_str": "458042081525903361", + "text": ".@NeinQuarterly @focalintent so many of my fellow Americans have no idea that brown wax they sell in this country ain’t actually chocolate 🍫", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457986550094393344, + "in_reply_to_status_id_str": "457986550094393344", + "in_reply_to_user_id": 458966079, + "in_reply_to_user_id_str": "458966079", + "in_reply_to_screen_name": "NeinQuarterly", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 5, + "favorite_count": 16, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 21 00:34:40 +0000 2014", + "id": 458041089019363328, + "id_str": "458041089019363328", + "text": "@MightyOsedax @zauspar I did encounter someone who was against the word “cis” because “we don’t need words for normal things” 😖", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458035870105210880, + "in_reply_to_status_id_str": "458035870105210880", + "in_reply_to_user_id": 2250958154, + "in_reply_to_user_id_str": "2250958154", + "in_reply_to_screen_name": "MightyOsedax", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 21 00:32:33 +0000 2014", + "id": 458040557877858304, + "id_str": "458040557877858304", + "text": "@m1sp1dea_ebooks well that’s philosophical", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458032383686889473, + "in_reply_to_status_id_str": "458032383686889473", + "in_reply_to_user_id": 1602616146, + "in_reply_to_user_id_str": "1602616146", + "in_reply_to_screen_name": "m1sp1dea_ebooks", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 21 00:31:00 +0000 2014", + "id": 458040169007173632, + "id_str": "458040169007173632", + "text": "@zhuowei 🎊 you are the best sort of fan", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458039939624878080, + "in_reply_to_status_id_str": "458039939624878080", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 20 23:07:49 +0000 2014", + "id": 458019232438288385, + "id_str": "458019232438288385", + "text": "@zhuowei I guess they “have souls” after a fashion but not of a workable quality for an artificer.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 458018707143663616, + "in_reply_to_status_id_str": "458018707143663616", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 20 22:39:47 +0000 2014", + "id": 458012180093612032, + "id_str": "458012180093612032", + "text": "@elad3 it makes me grateful for the high local diversity; no one religion can Shut Down Everything when I might be hungry :)", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 458010525449076737, + "in_reply_to_status_id_str": "458010525449076737", + "in_reply_to_user_id": 160897504, + "in_reply_to_user_id_str": "160897504", + "in_reply_to_screen_name": "elad3", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 20 22:29:52 +0000 2014", + "id": 458009681865486336, + "id_str": "458009681865486336", + "text": "@antumbral @m1sp someone posted it to the TPP reddit as joke about disputing which gender they should play as next round", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 458009409738645504, + "in_reply_to_status_id_str": "458009409738645504", + "in_reply_to_user_id": 19837512, + "in_reply_to_user_id_str": "19837512", + "in_reply_to_screen_name": "antumbral", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 20 22:27:42 +0000 2014", + "id": 458009135947472896, + "id_str": "458009135947472896", + "text": "@m1sp http://t.co/AhaBfGh2GT", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 5, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Sun Apr 20 22:22:18 +0000 2014", + "id": 458007780772024320, + "id_str": "458007780772024320", + "text": "Orderin' pizza on other people's high holy days. Hey, they were open...", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 4, + "favorite_count": 9, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 20 21:40:55 +0000 2014", + "id": 457997362460622849, + "id_str": "457997362460622849", + "text": "@keyoki @zauspar as a (nominal?) non-furry, I admit I worked this conversation into my non-furry novel… they settle on a deer and a bear. 🐻", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457988468333744128, + "in_reply_to_status_id_str": "457988468333744128", + "in_reply_to_user_id": 23631167, + "in_reply_to_user_id_str": "23631167", + "in_reply_to_screen_name": "keyoki", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 20 21:32:04 +0000 2014", + "id": 457995135771738115, + "id_str": "457995135771738115", + "text": "@chort0 now repeat to make sure!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457959607210491904, + "in_reply_to_status_id_str": "457959607210491904", + "in_reply_to_user_id": 25519088, + "in_reply_to_user_id_str": "25519088", + "in_reply_to_screen_name": "chort0", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 20 21:31:10 +0000 2014", + "id": 457994910512447488, + "id_str": "457994910512447488", + "text": "@spy604 worse, magical steampunk.\n\nWell, the steampunk elements are light, but they’re definitely there.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457993396829691905, + "in_reply_to_status_id_str": "457993396829691905", + "in_reply_to_user_id": 17326917, + "in_reply_to_user_id_str": "17326917", + "in_reply_to_screen_name": "spy604", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 20 21:30:33 +0000 2014", + "id": 457994756279500800, + "id_str": "457994756279500800", + "text": "@Artemio book 2? I was stuck for a while but it’s going again :)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457991841875365888, + "in_reply_to_status_id_str": "457991841875365888", + "in_reply_to_user_id": 5487152, + "in_reply_to_user_id_str": "5487152", + "in_reply_to_screen_name": "Artemio", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 20 20:45:33 +0000 2014", + "id": 457983432183021568, + "id_str": "457983432183021568", + "text": "@Rolman .... there's no ads on my website, I promise :)", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 457983354051100672, + "in_reply_to_status_id_str": "457983354051100672", + "in_reply_to_user_id": 3375481, + "in_reply_to_user_id_str": "3375481", + "in_reply_to_screen_name": "Rolman", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 20 20:42:14 +0000 2014", + "id": 457982594760855552, + "id_str": "457982594760855552", + "text": "@geekable http://t.co/GDuxHjBHpa", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457952687196094464, + "in_reply_to_status_id_str": "457952687196094464", + "in_reply_to_user_id": 755035, + "in_reply_to_user_id_str": "755035", + "in_reply_to_screen_name": "geekable", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Sun Apr 20 20:38:39 +0000 2014", + "id": 457981695799881729, + "id_str": "457981695799881729", + "text": "The HTML pagination is a trick to keep you from realizing it's a 400-page novel until it's too late.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 5, + "favorite_count": 6, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 20 20:30:54 +0000 2014", + "id": 457979745150709760, + "id_str": "457979745150709760", + "text": "Do you wanna read a novel? A now completely open-access novel? http://t.co/SBazY7Al13", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 9, + "favorite_count": 10, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 20 19:24:25 +0000 2014", + "id": 457963013455503360, + "id_str": "457963013455503360", + "text": "@m1sp *dies* http://t.co/X01zjyvaS8\n\nNow to fix up the title bar, faq, etc.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 20 16:46:23 +0000 2014", + "id": 457923240858746880, + "id_str": "457923240858746880", + "text": "@m1sp haha wow it's longer than I thought it was and makes ch17 the longest chapter by a good margin, it's like 7000 words all together", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 20 16:43:43 +0000 2014", + "id": 457922569669455872, + "id_str": "457922569669455872", + "text": "@m1sp there, I'm up to chapter 17, which means I need to reread all that prophetic nonsense I wrote to make sure it's not awful", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 20 15:55:07 +0000 2014", + "id": 457910342170198016, + "id_str": "457910342170198016", + "text": "@bobpoekert @m1sp also I don't offhandedly see anything in the API for \"pages\" as opposed to posts anyway", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 457909667503419392, + "in_reply_to_status_id_str": "457909667503419392", + "in_reply_to_user_id": 191945961, + "in_reply_to_user_id_str": "191945961", + "in_reply_to_screen_name": "bobpoekert", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 20 15:53:20 +0000 2014", + "id": 457909893723602944, + "id_str": "457909893723602944", + "text": "@bobpoekert @m1sp wouldn't really help. Formatting is particular, requires manual adjustments.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 457909667503419392, + "in_reply_to_status_id_str": "457909667503419392", + "in_reply_to_user_id": 191945961, + "in_reply_to_user_id_str": "191945961", + "in_reply_to_screen_name": "bobpoekert", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 20 15:52:18 +0000 2014", + "id": 457909630463922177, + "id_str": "457909630463922177", + "text": "@m1sp Yeah. It's going much faster now that I got the right incantation nailed but there's still 14 chapters more to go...", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 457909301407784960, + "in_reply_to_status_id_str": "457909301407784960", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 20 15:50:30 +0000 2014", + "id": 457909179064549376, + "id_str": "457909179064549376", + "text": "@m1sp why\n\ndid I write \n\nsomething so LOOOOOOOOOOONG", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 20 15:19:46 +0000 2014", + "id": 457901445720055808, + "id_str": "457901445720055808", + "text": "@TakoArishi @m1sp @winocm Frozen. The joke is she's sleep-talking that line in that screenshot.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 457901266203856896, + "in_reply_to_status_id_str": "457901266203856896", + "in_reply_to_user_id": 22107482, + "in_reply_to_user_id_str": "22107482", + "in_reply_to_screen_name": "TakoArishi", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 20 15:16:49 +0000 2014", + "id": 457900702237753346, + "id_str": "457900702237753346", + "text": "@TakoArishi @m1sp @winocm ... I take it you haven't seen the movie ;) \n\nbut those rascally Australians wake me up all the time.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 457900431600279554, + "in_reply_to_status_id_str": "457900431600279554", + "in_reply_to_user_id": 22107482, + "in_reply_to_user_id_str": "22107482", + "in_reply_to_screen_name": "TakoArishi", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 20 14:49:06 +0000 2014", + "id": 457893725411504128, + "id_str": "457893725411504128", + "text": "@alt_m1sp @zauspar same, brother", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457883564520923136, + "in_reply_to_status_id_str": "457883564520923136", + "in_reply_to_user_id": 2401670173, + "in_reply_to_user_id_str": "2401670173", + "in_reply_to_screen_name": "alt_m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 20 14:48:35 +0000 2014", + "id": 457893599209066496, + "id_str": "457893599209066496", + "text": "@MarkKriegsman 🎂🍧", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457882606403870721, + "in_reply_to_status_id_str": "457882606403870721", + "in_reply_to_user_id": 2121681, + "in_reply_to_user_id_str": "2121681", + "in_reply_to_screen_name": "MarkKriegsman", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Sun Apr 20 14:35:00 +0000 2014", + "id": 457890179739832320, + "id_str": "457890179739832320", + "text": "@TakoArishi @m1sp @winocm who me? N-n-no, I’ve been up for hours! http://t.co/ZfcqW1nPgD", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457869981829836801, + "in_reply_to_status_id_str": "457869981829836801", + "in_reply_to_user_id": 22107482, + "in_reply_to_user_id_str": "22107482", + "in_reply_to_screen_name": "TakoArishi", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 20 13:08:07 +0000 2014", + "id": 457868313432182784, + "id_str": "457868313432182784", + "text": "@m1sp @TakoArishi @winocm *yawns, blinks* Good… morning…?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457866990548316161, + "in_reply_to_status_id_str": "457866990548316161", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 20 05:14:01 +0000 2014", + "id": 457749002252218368, + "id_str": "457749002252218368", + "text": "@zhuowei @m1sp probably not. IM Fell Great Primer not really meant for small font size / low DPI.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 457748301870153729, + "in_reply_to_status_id_str": "457748301870153729", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 20 05:05:48 +0000 2014", + "id": 457746935878000640, + "id_str": "457746935878000640", + "text": "@zhuowei @m1sp think I've got the process of getting it to look right down. Lemme know if you spot any format errors http://t.co/sRH9cnOz4T", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 457744813996007424, + "in_reply_to_status_id_str": "457744813996007424", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 20 04:56:26 +0000 2014", + "id": 457744578301665280, + "id_str": "457744578301665280", + "text": "@m1sp @zhuowei I'm really gonna be pushing the limits of how many custom pages the tumblr editor was ever meant to display", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 20 04:33:41 +0000 2014", + "id": 457738850610470912, + "id_str": "457738850610470912", + "text": "@bobpoekert @hinanawi_chan @zhuowei @protosphere_ @m1sp it was the \"*shots fired*\" of the nineties", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 457738651540410368, + "in_reply_to_status_id_str": "457738651540410368", + "in_reply_to_user_id": 191945961, + "in_reply_to_user_id_str": "191945961", + "in_reply_to_screen_name": "bobpoekert", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 20 04:32:25 +0000 2014", + "id": 457738534292844544, + "id_str": "457738534292844544", + "text": "@bobpoekert @hinanawi_chan @zhuowei @protosphere_ @m1sp http://t.co/WeFL6nZbDX", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 457738323834859520, + "in_reply_to_status_id_str": "457738323834859520", + "in_reply_to_user_id": 191945961, + "in_reply_to_user_id_str": "191945961", + "in_reply_to_screen_name": "bobpoekert", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Sun Apr 20 04:22:12 +0000 2014", + "id": 457735963075436544, + "id_str": "457735963075436544", + "text": "@m1sp @zhuowei with a special paging chip, yes. The pirate pagers go up to 5MB.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 457735601043673089, + "in_reply_to_status_id_str": "457735601043673089", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 20 04:19:08 +0000 2014", + "id": 457735192531456000, + "id_str": "457735192531456000", + "text": "@Shruubi from the head of twitter security (they're not for sale sorry :( )", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 457734844089241602, + "in_reply_to_status_id_str": "457734844089241602", + "in_reply_to_user_id": 311839890, + "in_reply_to_user_id_str": "311839890", + "in_reply_to_screen_name": "Shruubi", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 20 04:18:30 +0000 2014", + "id": 457735033156296704, + "id_str": "457735033156296704", + "text": "@zhuowei @m1sp also writing a script to do this would take longer than just doing it and still need lots of manual readjustments anyway", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 457734064968331265, + "in_reply_to_status_id_str": "457734064968331265", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 20 04:18:07 +0000 2014", + "id": 457734934497853441, + "id_str": "457734934497853441", + "text": "@zhuowei @m1sp note this does NOT mean the pdf is going away :)", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 457734064968331265, + "in_reply_to_status_id_str": "457734064968331265", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 20 04:17:59 +0000 2014", + "id": 457734901874589696, + "id_str": "457734901874589696", + "text": "@zhuowei @m1sp I've been tricked into reading whole novels online with this exact Chapter -> Link To Next Chapter webpage paradigm", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 457734064968331265, + "in_reply_to_status_id_str": "457734064968331265", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 20 04:12:38 +0000 2014", + "id": 457733555951779840, + "id_str": "457733555951779840", + "text": "@zhuowei @m1sp I need an online browsable version of the manuscript for this open access thing to really work", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 457733297838522368, + "in_reply_to_status_id_str": "457733297838522368", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 20 04:05:37 +0000 2014", + "id": 457731791097724928, + "id_str": "457731791097724928", + "text": "@zhuowei @m1sp I gotta put up every chapter this way and it's gonna take for-EVER. http://t.co/SBazY7Al13 (the \"previous\" link works)", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 457729982627086336, + "in_reply_to_status_id_str": "457729982627086336", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 20 03:42:08 +0000 2014", + "id": 457725877724643328, + "id_str": "457725877724643328", + "text": "@m1sp @zhuowei (also not scientifically calibrated)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457725712263163904, + "in_reply_to_status_id_str": "457725712263163904", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 20 03:41:37 +0000 2014", + "id": 457725751346085888, + "id_str": "457725751346085888", + "text": "@m1sp @zhuowei this is only the first book", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457725712263163904, + "in_reply_to_status_id_str": "457725712263163904", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 20 03:40:53 +0000 2014", + "id": 457725563244142592, + "id_str": "457725563244142592", + "text": "@m1sp @zauspar BE ADVISED that the Bostonian road system is VERY congested due to being laid down in the 1600s", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457725332162752513, + "in_reply_to_status_id_str": "457725332162752513", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 20 03:40:09 +0000 2014", + "id": 457725378967392256, + "id_str": "457725378967392256", + "text": "@m1sp @zhuowei http://t.co/jjDtzzlDJa", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457723454351876097, + "in_reply_to_status_id_str": "457723454351876097", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Sun Apr 20 03:32:52 +0000 2014", + "id": 457723548078182400, + "id_str": "457723548078182400", + "text": "@m1sp @zhuowei and they go to the market, and before Luzcrezo ruins everything", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457723367517200384, + "in_reply_to_status_id_str": "457723367517200384", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 20 03:24:31 +0000 2014", + "id": 457721444269821952, + "id_str": "457721444269821952", + "text": "@m1sp @zhuowei she’s happy… … at least once, surely!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457720421765238785, + "in_reply_to_status_id_str": "457720421765238785", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 20 03:23:51 +0000 2014", + "id": 457721279936987136, + "id_str": "457721279936987136", + "text": "@puellavulnerata http://t.co/rpNditaf1M", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457720321580093440, + "in_reply_to_status_id_str": "457720321580093440", + "in_reply_to_user_id": 54666727, + "in_reply_to_user_id_str": "54666727", + "in_reply_to_screen_name": "puellavulnerata", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Sun Apr 20 03:11:43 +0000 2014", + "id": 457718226638897152, + "id_str": "457718226638897152", + "text": "@bobpoekert I know. It looks this perfect naturally.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 457717710919450624, + "in_reply_to_status_id_str": "457717710919450624", + "in_reply_to_user_id": 191945961, + "in_reply_to_user_id_str": "191945961", + "in_reply_to_screen_name": "bobpoekert", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 20 03:11:43 +0000 2014", + "id": 457718226638897152, + "id_str": "457718226638897152", + "text": "@bobpoekert I know. It looks this perfect naturally.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 457717710919450624, + "in_reply_to_status_id_str": "457717710919450624", + "in_reply_to_user_id": 191945961, + "in_reply_to_user_id_str": "191945961", + "in_reply_to_screen_name": "bobpoekert", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 20 03:10:53 +0000 2014", + "id": 457718013383696386, + "id_str": "457718013383696386", + "text": ".@plausibility_ You need to equip one enchanted article of clothing per component of your stack. HTTP server, firewall, distro, etc", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 457717675561480192, + "in_reply_to_status_id_str": "457717675561480192", + "in_reply_to_user_id": 278611594, + "in_reply_to_user_id_str": "278611594", + "in_reply_to_screen_name": "plausibility_", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 4, + "favorite_count": 13, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 20 03:08:13 +0000 2014", + "id": 457717345214291968, + "id_str": "457717345214291968", + "text": "True fact: your twitter account can't be owned while you're wearing this shirt http://t.co/fP17GlKsjZ", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 13, + "favorite_count": 43, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 20 03:03:53 +0000 2014", + "id": 457716253864759296, + "id_str": "457716253864759296", + "text": ".@nzkoz @kyhwana wild hypothesizing: PR people with jailbroken phones installing junk", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 457687714360344576, + "in_reply_to_status_id_str": "457687714360344576", + "in_reply_to_user_id": 11294, + "in_reply_to_user_id_str": "11294", + "in_reply_to_screen_name": "nzkoz", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 20 03:03:27 +0000 2014", + "id": 457716146490585088, + "id_str": "457716146490585088", + "text": "RT @nzkoz: So yeah, looks like someone’s got a pretty big database of twitter for iPhone OAuth tokens, where’d they get those? http://t.co/…", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sun Apr 20 01:10:29 +0000 2014", + "id": 457687714360344576, + "id_str": "457687714360344576", + "text": "So yeah, looks like someone’s got a pretty big database of twitter for iPhone OAuth tokens, where’d they get those? http://t.co/EeJC1EmbUt", + "source": "Tweetbot for Mac", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 11294, + "id_str": "11294" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 123, + "favorite_count": 49, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ], + "media": [ + { + "id": 457686287323893760, + "id_str": "457686287323893760", + "indices": [ + 116, + 138 + ], + "media_url": "http://pbs.twimg.com/media/BloHQN6CEAAWxLM.png", + "media_url_https": "https://pbs.twimg.com/media/BloHQN6CEAAWxLM.png", + "url": "http://t.co/EeJC1EmbUt", + "display_url": "pic.twitter.com/EeJC1EmbUt", + "expanded_url": "http://twitter.com/yakmoose/status/457686287428775936/photo/1", + "type": "photo", + "sizes": { + "small": { + "w": 340, + "h": 604, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 640, + "h": 1136, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 1065, + "resize": "fit" + } + }, + "source_status_id": 457686287428775936, + "source_status_id_str": "457686287428775936" + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 123, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 20 02:57:08 +0000 2014", + "id": 457714556270555136, + "id_str": "457714556270555136", + "text": "@zauspar remember to look at map and see what suburb towns are on the side of the city where you’ll be working; lots of apartment complexes", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457699337707847680, + "in_reply_to_status_id_str": "457699337707847680", + "in_reply_to_user_id": 216571343, + "in_reply_to_user_id_str": "216571343", + "in_reply_to_screen_name": "zauspar", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 20 02:55:38 +0000 2014", + "id": 457714176262430720, + "id_str": "457714176262430720", + "text": "Dang, apparently @VERISIGN account got popped when I wasn’t looking and it’s already cleaned up. That makes it hard to make fun of!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 6, + "favorite_count": 6, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 20 02:05:15 +0000 2014", + "id": 457701500173942784, + "id_str": "457701500173942784", + "text": "@Jennimason0990 thing is, I'm kinda doing rather complicated markup and that's kind of explicitly what one needs a preview pane for?", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 457700786139447296, + "in_reply_to_status_id_str": "457700786139447296", + "in_reply_to_user_id": 485288297, + "in_reply_to_user_id_str": "485288297", + "in_reply_to_screen_name": "Jennimason0990", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 20 02:01:14 +0000 2014", + "id": 457700485223694336, + "id_str": "457700485223694336", + "text": "@Jennimason0990 yeah, the browser grabby corner seems disabled...", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 457700320353599489, + "in_reply_to_status_id_str": "457700320353599489", + "in_reply_to_user_id": 485288297, + "in_reply_to_user_id_str": "485288297", + "in_reply_to_screen_name": "Jennimason0990", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 20 01:59:47 +0000 2014", + "id": 457700124438036480, + "id_str": "457700124438036480", + "text": "@Jennimason0990 it auto-grows.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 457699926772707328, + "in_reply_to_status_id_str": "457699926772707328", + "in_reply_to_user_id": 485288297, + "in_reply_to_user_id_str": "485288297", + "in_reply_to_screen_name": "Jennimason0990", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 20 01:57:52 +0000 2014", + "id": 457699639626444800, + "id_str": "457699639626444800", + "text": "I see @tumblr went and broke their page editor rather profoundly. Thanks. #UIRage http://t.co/LsVRgSw1gH", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 20 01:07:58 +0000 2014", + "id": 457687082895699968, + "id_str": "457687082895699968", + "text": "@zhuowei @m1sp http://t.co/4mmDJZndqE", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457683933585358848, + "in_reply_to_status_id_str": "457683933585358848", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Sun Apr 20 00:58:45 +0000 2014", + "id": 457684764099878912, + "id_str": "457684764099878912", + "text": "@zhuowei @m1sp how inexplicable. http://t.co/6Cd4oQ2D1p", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457684123750920193, + "in_reply_to_status_id_str": "457684123750920193", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 20 00:54:44 +0000 2014", + "id": 457683752303747072, + "id_str": "457683752303747072", + "text": "@zhuowei @m1sp … and several of the rest aren’t in book 1 and I think the old man with green hair was meant to be Melmoiran", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457681617360678912, + "in_reply_to_status_id_str": "457681617360678912", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 20 00:52:58 +0000 2014", + "id": 457683305681649664, + "id_str": "457683305681649664", + "text": "@zhuowei @m1sp yup!! Clarion’s hair is Irish red, ie orange, but it wasn’t available 😓", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457681617360678912, + "in_reply_to_status_id_str": "457681617360678912", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 20 00:45:00 +0000 2014", + "id": 457681303471939584, + "id_str": "457681303471939584", + "text": "@dinodaizovi @nickdepetrillo @thegrugq @winocm @rejectionking You did just fine with me… don’t you dare say I don’t count.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457640970025463808, + "in_reply_to_status_id_str": "457640970025463808", + "in_reply_to_user_id": 14279598, + "in_reply_to_user_id_str": "14279598", + "in_reply_to_screen_name": "dinodaizovi", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 20 00:41:12 +0000 2014", + "id": 457680345597759488, + "id_str": "457680345597759488", + "text": "@zhuowei @m1sp weird… as it looks to be the same one… maybe Long Ago me thought the choices looked ridiculous?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457679985164050432, + "in_reply_to_status_id_str": "457679985164050432", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 20 00:37:17 +0000 2014", + "id": 457679360267657216, + "id_str": "457679360267657216", + "text": "@zhuowei @m1sp why isn't there a younger/older pair for Hayr (row five column 2)??? Oh no!!!", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 457678486933491712, + "in_reply_to_status_id_str": "457678486933491712", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": true, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 20 00:35:26 +0000 2014", + "id": 457678894628610048, + "id_str": "457678894628610048", + "text": "@zhuowei @m1sp no glasses in the maker ;( ;(", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 457678486933491712, + "in_reply_to_status_id_str": "457678486933491712", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 20 00:35:15 +0000 2014", + "id": 457678849804083200, + "id_str": "457678849804083200", + "text": "@zhuowei @m1sp lol a few of them didn't make it into book 1 anyway. But, with two each, Barsamin, Katarosi, Houri, Ismyrn, Luzcrezo", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 457678486933491712, + "in_reply_to_status_id_str": "457678486933491712", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 20 00:33:40 +0000 2014", + "id": 457678450523123712, + "id_str": "457678450523123712", + "text": "@zhuowei @m1sp some are really inaccurate because of limitations of the maker, but apparently I didn't know yet Eodar was bald.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 20 00:33:11 +0000 2014", + "id": 457678330729607169, + "id_str": "457678330729607169", + "text": "@zhuowei lol you will probably like this. An RPG avatar maker sheet of my idea of the cast 2 years ago... http://t.co/QfYmNMqcP2 cc @m1sp", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 4, + "favorited": true, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 20 00:05:57 +0000 2014", + "id": 457671475508822016, + "id_str": "457671475508822016", + "text": "Best excerpt from today's gaming session. http://t.co/ka1H0Fw0xF", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 5, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 20 00:05:35 +0000 2014", + "id": 457671381254406144, + "id_str": "457671381254406144", + "text": "@davidjayharris that's a lot more than one word!", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 457670776703819776, + "in_reply_to_status_id_str": "457670776703819776", + "in_reply_to_user_id": 308065135, + "in_reply_to_user_id_str": "308065135", + "in_reply_to_screen_name": "davidjayharris", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 19 23:53:05 +0000 2014", + "id": 457668239343222784, + "id_str": "457668239343222784", + "text": "@kyhwana apparently I completely failed to convey I'm asking about the pay what you want part of the chain not the storage itself ^_^;;;;;;", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 457667951890427904, + "in_reply_to_status_id_str": "457667951890427904", + "in_reply_to_user_id": 30135560, + "in_reply_to_user_id_str": "30135560", + "in_reply_to_screen_name": "kyhwana", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 19 23:47:36 +0000 2014", + "id": 457666859211706369, + "id_str": "457666859211706369", + "text": "@kyhwana no the second one isn't done yet. The first one is going open access.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 457666164240306176, + "in_reply_to_status_id_str": "457666164240306176", + "in_reply_to_user_id": 30135560, + "in_reply_to_user_id_str": "30135560", + "in_reply_to_screen_name": "kyhwana", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 19 23:18:18 +0000 2014", + "id": 457659484924805120, + "id_str": "457659484924805120", + "text": "@zhuowei @winocm @joshuajuran @m1sp It replies instantaneously so I'm inclined to believe its own claim that it's algorithmic", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 457659268104454145, + "in_reply_to_status_id_str": "457659268104454145", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 19 23:16:42 +0000 2014", + "id": 457659080510029824, + "id_str": "457659080510029824", + "text": "@blazingcrimson ^_^;;; I have a VPS. I have many VPS if I want. Apparently I completely failed at wording this question...", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 457658807045607424, + "in_reply_to_status_id_str": "457658807045607424", + "in_reply_to_user_id": 1531220689, + "in_reply_to_user_id_str": "1531220689", + "in_reply_to_screen_name": "blazingcrimson", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 19 23:16:05 +0000 2014", + "id": 457658924775514114, + "id_str": "457658924775514114", + "text": "@marshviperX which site? If you mean my novel's site, I probably know which friend that is :)", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 457658512491810816, + "in_reply_to_status_id_str": "457658512491810816", + "in_reply_to_user_id": 270394743, + "in_reply_to_user_id_str": "270394743", + "in_reply_to_screen_name": "marshviperX", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 19 23:15:27 +0000 2014", + "id": 457658765144100864, + "id_str": "457658765144100864", + "text": "The bots are acting a little too sentient again. ht @joshuajuran http://t.co/X1Jm7r6bhQ", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 39, + "favorite_count": 47, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 19 23:10:42 +0000 2014", + "id": 457657572011831296, + "id_str": "457657572011831296", + "text": "@marshviperX um.... are you asking about 4chan? I went to cute and cute-male a few times several years ago...", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 270394743, + "in_reply_to_user_id_str": "270394743", + "in_reply_to_screen_name": "marshviperX", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 19 23:06:20 +0000 2014", + "id": 457656473108361216, + "id_str": "457656473108361216", + "text": "@aredridel their fees would most likely be larger than the entire amount of money I stand to make in the first place.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 457656203712405505, + "in_reply_to_status_id_str": "457656203712405505", + "in_reply_to_user_id": 17950990, + "in_reply_to_user_id_str": "17950990", + "in_reply_to_screen_name": "aredridel", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 19 23:00:11 +0000 2014", + "id": 457654925498277888, + "id_str": "457654925498277888", + "text": "Gahh I don't want to deal with taxes. This one fact alone may mean that I give away my books for free forever", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 19 22:56:13 +0000 2014", + "id": 457653924661850112, + "id_str": "457653924661850112", + "text": "@sircmpwn Yeah. Sorry. People seem to be reading it 50/50 ^-^;;;", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 457653719027294208, + "in_reply_to_status_id_str": "457653719027294208", + "in_reply_to_user_id": 100024647, + "in_reply_to_user_id_str": "100024647", + "in_reply_to_screen_name": "sircmpwn", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 19 22:54:30 +0000 2014", + "id": 457653495571972096, + "id_str": "457653495571972096", + "text": "@sircmpwn ... someone pointed me to gumroad, which may be the best fit.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 457653277417435136, + "in_reply_to_status_id_str": "457653277417435136", + "in_reply_to_user_id": 100024647, + "in_reply_to_user_id_str": "100024647", + "in_reply_to_screen_name": "sircmpwn", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 19 22:54:02 +0000 2014", + "id": 457653375325454336, + "id_str": "457653375325454336", + "text": "@sircmpwn no. I want a pay-what-you-want service to provide the files to customers...", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 457653277417435136, + "in_reply_to_status_id_str": "457653277417435136", + "in_reply_to_user_id": 100024647, + "in_reply_to_user_id_str": "100024647", + "in_reply_to_screen_name": "sircmpwn", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 19 22:53:01 +0000 2014", + "id": 457653120194322434, + "id_str": "457653120194322434", + "text": "@sircmpwn I may need to consider that I may have been completely and utterly wrong that it's clear what I'm actually asking for.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 457652919936897024, + "in_reply_to_status_id_str": "457652919936897024", + "in_reply_to_user_id": 100024647, + "in_reply_to_user_id_str": "100024647", + "in_reply_to_screen_name": "sircmpwn", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 19 22:52:29 +0000 2014", + "id": 457652987591426048, + "id_str": "457652987591426048", + "text": "@kevinmarks but that's what I was asking about... finding blocks of hdd is not the technical obstacle to getting my bling :p", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 457652703473057792, + "in_reply_to_status_id_str": "457652703473057792", + "in_reply_to_user_id": 57203, + "in_reply_to_user_id_str": "57203", + "in_reply_to_screen_name": "kevinmarks", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 19 22:49:33 +0000 2014", + "id": 457652246722121729, + "id_str": "457652246722121729", + "text": "@kevinmarks ..... http://t.co/54jtEWnRui has a content creator payment system?", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 457652080283361281, + "in_reply_to_status_id_str": "457652080283361281", + "in_reply_to_user_id": 57203, + "in_reply_to_user_id_str": "57203", + "in_reply_to_screen_name": "kevinmarks", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 19 22:46:18 +0000 2014", + "id": 457651432007938048, + "id_str": "457651432007938048", + "text": "@locks I just found out about gumroad two minutes ago. They didn't show up in my attempt to google pay-what-you-want.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 457651295806312448, + "in_reply_to_status_id_str": "457651295806312448", + "in_reply_to_user_id": 7492672, + "in_reply_to_user_id_str": "7492672", + "in_reply_to_screen_name": "locks", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 19 22:43:07 +0000 2014", + "id": 457650629104910336, + "id_str": "457650629104910336", + "text": "@sakjur I'm, um, unaware of any payment features to content creators integrated into pirate bay.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 457650371041955840, + "in_reply_to_status_id_str": "457650371041955840", + "in_reply_to_user_id": 63478005, + "in_reply_to_user_id_str": "63478005", + "in_reply_to_screen_name": "sakjur", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 19 22:39:57 +0000 2014", + "id": 457649831641899008, + "id_str": "457649831641899008", + "text": "@sakjur ...........???", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 457649512870604800, + "in_reply_to_status_id_str": "457649512870604800", + "in_reply_to_user_id": 63478005, + "in_reply_to_user_id_str": "63478005", + "in_reply_to_screen_name": "sakjur", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "ht" + }, + { + "created_at": "Sat Apr 19 22:38:40 +0000 2014", + "id": 457649508256841728, + "id_str": "457649508256841728", + "text": "@vogon thanks! I figured there had to be one SOMEWHERE...", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 457648960392282112, + "in_reply_to_status_id_str": "457648960392282112", + "in_reply_to_user_id": 6326912, + "in_reply_to_user_id_str": "6326912", + "in_reply_to_screen_name": "vogon", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 19 22:35:46 +0000 2014", + "id": 457648778741567488, + "id_str": "457648778741567488", + "text": "(please don't suggest I implement it myself from scratch) (but if you start a company for this and sell to Facebook, I expect 5%)", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 19 22:35:16 +0000 2014", + "id": 457648652522373120, + "id_str": "457648652522373120", + "text": "There seems to be no straightforward, reputable answer for \"where can I put up arbitrary files for pay-what-you-want including free\"", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 19 20:48:07 +0000 2014", + "id": 457621690160545792, + "id_str": "457621690160545792", + "text": "@szakulec 😁", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457621315554672640, + "in_reply_to_status_id_str": "457621315554672640", + "in_reply_to_user_id": 151256073, + "in_reply_to_user_id_str": "151256073", + "in_reply_to_screen_name": "szakulec", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Sat Apr 19 20:41:16 +0000 2014", + "id": 457619964841959424, + "id_str": "457619964841959424", + "text": "@sakjur :D", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 457614771354079234, + "in_reply_to_status_id_str": "457614771354079234", + "in_reply_to_user_id": 63478005, + "in_reply_to_user_id_str": "63478005", + "in_reply_to_screen_name": "sakjur", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Sat Apr 19 18:52:24 +0000 2014", + "id": 457592569720225792, + "id_str": "457592569720225792", + "text": "@GUIpsp I’m trying!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457591927895228416, + "in_reply_to_status_id_str": "457591927895228416", + "in_reply_to_user_id": 182349538, + "in_reply_to_user_id_str": "182349538", + "in_reply_to_screen_name": "GUIpsp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 19 18:43:12 +0000 2014", + "id": 457590253269024768, + "id_str": "457590253269024768", + "text": "Should be live now!", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 19 18:40:53 +0000 2014", + "id": 457589671389048832, + "id_str": "457589671389048832", + "text": "@WhiteMageSlave I don't use any extensions :\\ try disabling all of them and restarting the browser and see if it goes away...", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 457589515939762176, + "in_reply_to_status_id_str": "457589515939762176", + "in_reply_to_user_id": 90791634, + "in_reply_to_user_id_str": "90791634", + "in_reply_to_screen_name": "WhiteMageSlave", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 19 18:37:08 +0000 2014", + "id": 457588724122255360, + "id_str": "457588724122255360", + "text": "@WhiteMageSlave like, if you use missing e or something, and they got hacked, the extension could be the malware", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 457588377437483008, + "in_reply_to_status_id_str": "457588377437483008", + "in_reply_to_user_id": 90791634, + "in_reply_to_user_id_str": "90791634", + "in_reply_to_screen_name": "WhiteMageSlave", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 19 18:35:28 +0000 2014", + "id": 457588305157439488, + "id_str": "457588305157439488", + "text": "@WhiteMageSlave alternately if you recently installed a new browser extension, or one just updated, get rid of it immediately", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 457587952764596226, + "in_reply_to_status_id_str": "457587952764596226", + "in_reply_to_user_id": 90791634, + "in_reply_to_user_id_str": "90791634", + "in_reply_to_screen_name": "WhiteMageSlave", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 19 18:34:59 +0000 2014", + "id": 457588185347133440, + "id_str": "457588185347133440", + "text": "@WhiteMageSlave okay, um, https://t.co/XcksF0BA1f download this, and run its manual update to get the latest definitions, run full scan", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 457587952764596226, + "in_reply_to_status_id_str": "457587952764596226", + "in_reply_to_user_id": 90791634, + "in_reply_to_user_id_str": "90791634", + "in_reply_to_screen_name": "WhiteMageSlave", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 19 18:27:57 +0000 2014", + "id": 457586413249523713, + "id_str": "457586413249523713", + "text": "@WhiteMageSlave okay that sounds REALLY REALLY wrong. Do not run any of them", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 457586328138297344, + "in_reply_to_status_id_str": "457586328138297344", + "in_reply_to_user_id": 90791634, + "in_reply_to_user_id_str": "90791634", + "in_reply_to_screen_name": "WhiteMageSlave", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 19 18:27:32 +0000 2014", + "id": 457586311571210240, + "id_str": "457586311571210240", + "text": "@MechMK1 @winocm I literally own <kanji for misfortune which appears on Hina's dress> dot net http://t.co/B1Pvo62Xq4", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 457585286885965824, + "in_reply_to_status_id_str": "457585286885965824", + "in_reply_to_user_id": 81556825, + "in_reply_to_user_id_str": "81556825", + "in_reply_to_screen_name": "MechMK1", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 19 18:25:54 +0000 2014", + "id": 457585898918785025, + "id_str": "457585898918785025", + "text": "@r3pwn @winocm @stroughtonsmith I drew it from memory but this is what the girl in winocm's avatar is wearing. http://t.co/cWH67Vipc4", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 457585470361587712, + "in_reply_to_status_id_str": "457585470361587712", + "in_reply_to_user_id": 1339729489, + "in_reply_to_user_id_str": "1339729489", + "in_reply_to_screen_name": "r3pwn", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 19 18:24:37 +0000 2014", + "id": 457585578004193280, + "id_str": "457585578004193280", + "text": "@WhiteMageSlave and if you're using Chrome it's completely managed centrally by Chrome and you just have to restart the browser", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 457585057402585088, + "in_reply_to_status_id_str": "457585057402585088", + "in_reply_to_user_id": 90791634, + "in_reply_to_user_id_str": "90791634", + "in_reply_to_screen_name": "WhiteMageSlave", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 19 18:24:15 +0000 2014", + "id": 457585481908490240, + "id_str": "457585481908490240", + "text": "@WhiteMageSlave yeah that sounds, um, wrong\n\nhttp://t.co/uMrUIX2A2x this is the real flash site", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 457585057402585088, + "in_reply_to_status_id_str": "457585057402585088", + "in_reply_to_user_id": 90791634, + "in_reply_to_user_id_str": "90791634", + "in_reply_to_screen_name": "WhiteMageSlave", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 19 18:22:12 +0000 2014", + "id": 457584968907362304, + "id_str": "457584968907362304", + "text": "@winocm http://t.co/d06x4qn0gL", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457584001507553280, + "in_reply_to_status_id_str": "457584001507553280", + "in_reply_to_user_id": 428413732, + "in_reply_to_user_id_str": "428413732", + "in_reply_to_screen_name": "winocm", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 4, + "favorite_count": 16, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Sat Apr 19 18:19:41 +0000 2014", + "id": 457584334430818305, + "id_str": "457584334430818305", + "text": "All right, gonna go play Pokemon Bulbasaur Version again, http://t.co/VvHZNWqBjE I will be here shortly if you’re easily amused", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 19 18:12:55 +0000 2014", + "id": 457582631329476608, + "id_str": "457582631329476608", + "text": "@zorm the correct reaction to an invalid subset size being to “drop it on the floor” as they say in networking and not send an answer", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457580253700186112, + "in_reply_to_status_id_str": "457580253700186112", + "in_reply_to_user_id": 17954340, + "in_reply_to_user_id_str": "17954340", + "in_reply_to_screen_name": "zorm", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 19 18:12:10 +0000 2014", + "id": 457582441960853504, + "id_str": "457582441960853504", + "text": "@zorm to resummarize, it contains a size which describes what *subset* of the entire packet to copy; OpenSSL didn’t check it’s proper subset", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457580253700186112, + "in_reply_to_status_id_str": "457580253700186112", + "in_reply_to_user_id": 17954340, + "in_reply_to_user_id_str": "17954340", + "in_reply_to_screen_name": "zorm", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 19 18:08:36 +0000 2014", + "id": 457581546489532417, + "id_str": "457581546489532417", + "text": "@zorm it’s an optional extension https://t.co/ahrfRfnaAC", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457580253700186112, + "in_reply_to_status_id_str": "457580253700186112", + "in_reply_to_user_id": 17954340, + "in_reply_to_user_id_str": "17954340", + "in_reply_to_screen_name": "zorm", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 19 17:59:31 +0000 2014", + "id": 457579258941300738, + "id_str": "457579258941300738", + "text": "@zorm This might help. “Actual message” contains numbers, in this case, which contradict those provided by TCP http://t.co/9g3AXNDC3k", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457576733206913024, + "in_reply_to_status_id_str": "457576733206913024", + "in_reply_to_user_id": 17954340, + "in_reply_to_user_id_str": "17954340", + "in_reply_to_screen_name": "zorm", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 19 17:52:36 +0000 2014", + "id": 457577517051031554, + "id_str": "457577517051031554", + "text": "@zorm and obviously that thing would be dumb for not saying “wait, this number should certainly always be less than 140…”", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457576733206913024, + "in_reply_to_status_id_str": "457576733206913024", + "in_reply_to_user_id": 17954340, + "in_reply_to_user_id_str": "17954340", + "in_reply_to_screen_name": "zorm", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 19 17:51:40 +0000 2014", + "id": 457577285022126080, + "id_str": "457577285022126080", + "text": "@zorm it’d only matter if something implemented on TOP of twitter which embedded its own numbers in tweets thought there might be.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457576733206913024, + "in_reply_to_status_id_str": "457576733206913024", + "in_reply_to_user_id": 17954340, + "in_reply_to_user_id_str": "17954340", + "in_reply_to_screen_name": "zorm", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 19 17:51:00 +0000 2014", + "id": 457577114368475136, + "id_str": "457577114368475136", + "text": "@zorm 65535 No. No more than me saying this tweet contains 65535 characters causes the Twitter platform itself to think there is.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457576733206913024, + "in_reply_to_status_id_str": "457576733206913024", + "in_reply_to_user_id": 17954340, + "in_reply_to_user_id_str": "17954340", + "in_reply_to_screen_name": "zorm", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 19 17:50:03 +0000 2014", + "id": 457576878132719617, + "id_str": "457576878132719617", + "text": "@zorm as for why this functionality exists in the first place, it’s a variant of echoing just to keep a connection open.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457575777652187137, + "in_reply_to_status_id_str": "457575777652187137", + "in_reply_to_user_id": 17954340, + "in_reply_to_user_id_str": "17954340", + "in_reply_to_screen_name": "zorm", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 19 17:48:17 +0000 2014", + "id": 457576433477767168, + "id_str": "457576433477767168", + "text": "@zorm that entire message is put someplace in RAM, then it starts copying from the P of Potato into \n\n“Here’s your reply: Potato bla bla…”", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457575777652187137, + "in_reply_to_status_id_str": "457575777652187137", + "in_reply_to_user_id": 17954340, + "in_reply_to_user_id_str": "17954340", + "in_reply_to_screen_name": "zorm", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 19 17:47:03 +0000 2014", + "id": 457576120247144449, + "id_str": "457576120247144449", + "text": "@zorm \nHi there\n\nSend me the first 64 kilobytes of the following message as a reply:\n\nPotato\n\nThanks bye", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457575777652187137, + "in_reply_to_status_id_str": "457575777652187137", + "in_reply_to_user_id": 17954340, + "in_reply_to_user_id_str": "17954340", + "in_reply_to_screen_name": "zorm", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 19 17:46:33 +0000 2014", + "id": 457575995474980864, + "id_str": "457575995474980864", + "text": "@zorm No, it has nothing to do with TCP. The entire message is received. It looks like:", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457575777652187137, + "in_reply_to_status_id_str": "457575777652187137", + "in_reply_to_user_id": 17954340, + "in_reply_to_user_id_str": "17954340", + "in_reply_to_screen_name": "zorm", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 19 17:43:56 +0000 2014", + "id": 457575337489362946, + "id_str": "457575337489362946", + "text": "@zorm being LONGER than the entire message, so when it copied from source to destination, it would over read past the end of the message", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457574183141400576, + "in_reply_to_status_id_str": "457574183141400576", + "in_reply_to_user_id": 17954340, + "in_reply_to_user_id_str": "17954340", + "in_reply_to_screen_name": "zorm", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 19 17:43:16 +0000 2014", + "id": 457575170723819520, + "id_str": "457575170723819520", + "text": "@zorm there is an explicit length field embedded in the client’s heartbeat request, and OpenSSL wasn’t checking for the case of that length", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457574183141400576, + "in_reply_to_status_id_str": "457574183141400576", + "in_reply_to_user_id": 17954340, + "in_reply_to_user_id_str": "17954340", + "in_reply_to_screen_name": "zorm", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 19 17:42:27 +0000 2014", + "id": 457574964800286720, + "id_str": "457574964800286720", + "text": "@zorm there is, but I don’t remember offhand where, so I can probably explain what is probably your misconception of how it works,", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457574183141400576, + "in_reply_to_status_id_str": "457574183141400576", + "in_reply_to_user_id": 17954340, + "in_reply_to_user_id_str": "17954340", + "in_reply_to_screen_name": "zorm", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 19 17:35:45 +0000 2014", + "id": 457573276647424001, + "id_str": "457573276647424001", + "text": "@AwfulHorse what follows is a desperate panic, no one will believe me nor should they, am I crazy? I’ve gone crazy!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457572865404325888, + "in_reply_to_status_id_str": "457572865404325888", + "in_reply_to_user_id": 17337775, + "in_reply_to_user_id_str": "17337775", + "in_reply_to_screen_name": "AwfulHorse", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 19 17:35:01 +0000 2014", + "id": 457573093503152129, + "id_str": "457573093503152129", + "text": "@AwfulHorse if I’m dreaming about seeing something amazing that doesn’t show up on camera \n\nI’m dreaming about having lost my mind", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457572865404325888, + "in_reply_to_status_id_str": "457572865404325888", + "in_reply_to_user_id": 17337775, + "in_reply_to_user_id_str": "17337775", + "in_reply_to_screen_name": "AwfulHorse", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 19 17:33:33 +0000 2014", + "id": 457572726350548993, + "id_str": "457572726350548993", + "text": "@AwfulHorse this is antithetical to me because of a deep-seated aversion to “angels are totally real, I didn’t hallucinate it while hungry!”", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457571902220148736, + "in_reply_to_status_id_str": "457571902220148736", + "in_reply_to_user_id": 17337775, + "in_reply_to_user_id_str": "17337775", + "in_reply_to_screen_name": "AwfulHorse", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 19 17:29:55 +0000 2014", + "id": 457571812101328897, + "id_str": "457571812101328897", + "text": "A common theme of my dreams is seeing something beautiful and amazing but being unable to obtain clear proof with my camera.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 19 17:02:24 +0000 2014", + "id": 457564885803884544, + "id_str": "457564885803884544", + "text": "RT @intelwire: Are we glad we made the tradeoff of due process for swift, ruthless, uncomplicated efficiency? http://t.co/Ko3jFeLcrH HT @ro…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sat Apr 19 13:51:25 +0000 2014", + "id": 457516824633290752, + "id_str": "457516824633290752", + "text": "Are we glad we made the tradeoff of due process for swift, ruthless, uncomplicated efficiency? http://t.co/Ko3jFeLcrH HT @robertcaruso", + "source": "Twitter for Android", + "truncated": false, + "in_reply_to_status_id": 457514992401928192, + "in_reply_to_status_id_str": "457514992401928192", + "in_reply_to_user_id": 114085514, + "in_reply_to_user_id_str": "114085514", + "in_reply_to_screen_name": "robertcaruso", + "user": { + "id": 47101500, + "id_str": "47101500" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 20, + "favorite_count": 10, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/Ko3jFeLcrH", + "expanded_url": "http://mobile.nytimes.com/2014/04/19/us/politics/covert-inquiry-by-fbi-rattles-9-11-tribunals.html?partner=rss&emc=rss&_r=2&utm_content=buffer04957&utm_medium=social&utm_source=twitter.com&utm_campaign=buffer&referrer=", + "display_url": "mobile.nytimes.com/2014/04/19/us/…", + "indices": [ + 95, + 117 + ] + } + ], + "user_mentions": [ + { + "screen_name": "robertcaruso", + "name": "Robert Caruso", + "id": 114085514, + "id_str": "114085514", + "indices": [ + 121, + 134 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 20, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 19 16:02:29 +0000 2014", + "id": 457549806249189376, + "id_str": "457549806249189376", + "text": "@zauspar perhaps applying the Alternate Peach Interpretation will help", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457535672757129216, + "in_reply_to_status_id_str": "457535672757129216", + "in_reply_to_user_id": 216571343, + "in_reply_to_user_id_str": "216571343", + "in_reply_to_screen_name": "zauspar", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 19 15:58:55 +0000 2014", + "id": 457548909133701120, + "id_str": "457548909133701120", + "text": "@puellavulnerata haven’t you been getting your checks in the mail for the Noob Tax we levy?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457528555274924032, + "in_reply_to_status_id_str": "457528555274924032", + "in_reply_to_user_id": 54666727, + "in_reply_to_user_id_str": "54666727", + "in_reply_to_screen_name": "puellavulnerata", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 19 04:44:24 +0000 2014", + "id": 457379161393602561, + "id_str": "457379161393602561", + "text": "@zhuowei they always overlap. They're the exact same day, with two different names in two different religions.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 457378905725607936, + "in_reply_to_status_id_str": "457378905725607936", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 19 04:33:34 +0000 2014", + "id": 457376435892920321, + "id_str": "457376435892920321", + "text": "@ErrataRob @bean_dad http://t.co/R2ck2WYF1G", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 457376155364909056, + "in_reply_to_status_id_str": "457376155364909056", + "in_reply_to_user_id": 15300995, + "in_reply_to_user_id_str": "15300995", + "in_reply_to_screen_name": "ErrataRob", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Sat Apr 19 04:23:01 +0000 2014", + "id": 457373780462284801, + "id_str": "457373780462284801", + "text": "\"Passover and Good Friday overlap this year!\" \"Coo– wait.\"", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 4, + "favorite_count": 7, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 19 04:16:25 +0000 2014", + "id": 457372120528732160, + "id_str": "457372120528732160", + "text": "@LnxPrgr3 take heart. Just redefine your threat model to only include the far end of a tcp connection 8D oh and define away the NSA, and -", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 457371779472687104, + "in_reply_to_status_id_str": "457371779472687104", + "in_reply_to_user_id": 62166450, + "in_reply_to_user_id_str": "62166450", + "in_reply_to_screen_name": "LnxPrgr3", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 19 04:07:31 +0000 2014", + "id": 457369880384532482, + "id_str": "457369880384532482", + "text": "@LnxPrgr3 for values of machine that include other virtual babies in the same hypervisor nest, which makes everything terrible :)", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 457369145328164865, + "in_reply_to_status_id_str": "457369145328164865", + "in_reply_to_user_id": 62166450, + "in_reply_to_user_id_str": "62166450", + "in_reply_to_screen_name": "LnxPrgr3", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 19 04:06:23 +0000 2014", + "id": 457369593703858177, + "id_str": "457369593703858177", + "text": "@LnxPrgr3 well it depends on your threat model: if you gotta resist other processes on the same machine then yeah even cache misses matter", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 457369145328164865, + "in_reply_to_status_id_str": "457369145328164865", + "in_reply_to_user_id": 62166450, + "in_reply_to_user_id_str": "62166450", + "in_reply_to_screen_name": "LnxPrgr3", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 19 04:01:21 +0000 2014", + "id": 457368327120490496, + "id_str": "457368327120490496", + "text": "@m1sp I may be a little too pleased with my own portrayal of you as a grumpy gumdrop", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 19 03:58:46 +0000 2014", + "id": 457367678160994305, + "id_str": "457367678160994305", + "text": "@LnxPrgr3 this is where one lawyers just how “constant” they need constant time to be (context switches?)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457367013002735616, + "in_reply_to_status_id_str": "457367013002735616", + "in_reply_to_user_id": 62166450, + "in_reply_to_user_id_str": "62166450", + "in_reply_to_screen_name": "LnxPrgr3", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 19 03:52:25 +0000 2014", + "id": 457366078017265666, + "id_str": "457366078017265666", + "text": "@LnxPrgr3 keep in mind that crypto needs to be able to guarantee constant time for some operations which complicates many choices", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457365511559725056, + "in_reply_to_status_id_str": "457365511559725056", + "in_reply_to_user_id": 62166450, + "in_reply_to_user_id_str": "62166450", + "in_reply_to_screen_name": "LnxPrgr3", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 19 03:47:54 +0000 2014", + "id": 457364944070402048, + "id_str": "457364944070402048", + "text": "@LnxPrgr3 if we knew THAT...\n\nWell I mean there are options, but, compatibility, etc", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 457364035139162112, + "in_reply_to_status_id_str": "457364035139162112", + "in_reply_to_user_id": 62166450, + "in_reply_to_user_id_str": "62166450", + "in_reply_to_screen_name": "LnxPrgr3", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 19 03:37:49 +0000 2014", + "id": 457362405354668032, + "id_str": "457362405354668032", + "text": "@_wirepair tweetbot", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457358003520290816, + "in_reply_to_status_id_str": "457358003520290816", + "in_reply_to_user_id": 253384212, + "in_reply_to_user_id_str": "253384212", + "in_reply_to_screen_name": "_wirepair", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "tr" + }, + { + "created_at": "Sat Apr 19 03:07:20 +0000 2014", + "id": 457354734043934721, + "id_str": "457354734043934721", + "text": "@alt_m1sp it’s like the gods sent an artist just for you", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457354084857573376, + "in_reply_to_status_id_str": "457354084857573376", + "in_reply_to_user_id": 2401670173, + "in_reply_to_user_id_str": "2401670173", + "in_reply_to_screen_name": "alt_m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 19 02:31:42 +0000 2014", + "id": 457345766903001088, + "id_str": "457345766903001088", + "text": "@MrToph I’m rather fond of a few people at Akamai…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457345548933029888, + "in_reply_to_status_id_str": "457345548933029888", + "in_reply_to_user_id": 16521087, + "in_reply_to_user_id_str": "16521087", + "in_reply_to_screen_name": "MrToph", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 19 02:19:55 +0000 2014", + "id": 457342801202925568, + "id_str": "457342801202925568", + "text": "@hinanawi_chan @m1sp @Talen_Lee @protosphere_ I’m the anti-jailbreak extremist who nonetheless is wise to this subculture’s ways", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457342312889061376, + "in_reply_to_status_id_str": "457342312889061376", + "in_reply_to_user_id": 2336014178, + "in_reply_to_user_id_str": "2336014178", + "in_reply_to_screen_name": "hinanawi_chan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 19 01:59:30 +0000 2014", + "id": 457337663818051584, + "id_str": "457337663818051584", + "text": "@ELLIOTTCABLE @rantyben zoom in on my avatar.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457337539745939456, + "in_reply_to_status_id_str": "457337539745939456", + "in_reply_to_user_id": 771681, + "in_reply_to_user_id_str": "771681", + "in_reply_to_screen_name": "ELLIOTTCABLE", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 19 01:58:27 +0000 2014", + "id": 457337399123910656, + "id_str": "457337399123910656", + "text": "@ELLIOTTCABLE @rantyben send me six whole bitcoin. https://t.co/l7Zy6RoB1w", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457337064388702209, + "in_reply_to_status_id_str": "457337064388702209", + "in_reply_to_user_id": 771681, + "in_reply_to_user_id_str": "771681", + "in_reply_to_screen_name": "ELLIOTTCABLE", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 19 01:56:31 +0000 2014", + "id": 457336913570312192, + "id_str": "457336913570312192", + "text": "@ELLIOTTCABLE I did and @rantyben thought the pic of me in a Halloween costume is so bad he saves it for blackmail", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457336272265035776, + "in_reply_to_status_id_str": "457336272265035776", + "in_reply_to_user_id": 771681, + "in_reply_to_user_id_str": "771681", + "in_reply_to_screen_name": "ELLIOTTCABLE", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 19 01:53:18 +0000 2014", + "id": 457336102828146690, + "id_str": "457336102828146690", + "text": "Time to be irrationally sad that I don’t look good in any of the sorts of feminine clothes I find appealing", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 19 01:46:45 +0000 2014", + "id": 457334453732642816, + "id_str": "457334453732642816", + "text": "@Kufat 😐", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457334364045844480, + "in_reply_to_status_id_str": "457334364045844480", + "in_reply_to_user_id": 207691003, + "in_reply_to_user_id_str": "207691003", + "in_reply_to_screen_name": "Kufat", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Sat Apr 19 01:42:29 +0000 2014", + "id": 457333379412000768, + "id_str": "457333379412000768", + "text": "@mcclure111 :( I am a girl and I only own jeans t-shirts and hoodies. My occasional attempts at something different usually end in tears", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457327610175840256, + "in_reply_to_status_id_str": "457327610175840256", + "in_reply_to_user_id": 312426579, + "in_reply_to_user_id_str": "312426579", + "in_reply_to_screen_name": "mcclure111", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 19 01:38:33 +0000 2014", + "id": 457332390122520576, + "id_str": "457332390122520576", + "text": "@Talen_Lee @m1sp http://t.co/PYXKHFvwLC", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457329982851653632, + "in_reply_to_status_id_str": "457329982851653632", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 5, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Sat Apr 19 01:30:39 +0000 2014", + "id": 457330404169883648, + "id_str": "457330404169883648", + "text": "@Talen_Lee @m1sp @mcclure111 http://t.co/PvIri7WLY2", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457329749778391040, + "in_reply_to_status_id_str": "457329749778391040", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 7, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Sat Apr 19 01:22:49 +0000 2014", + "id": 457328429923577856, + "id_str": "457328429923577856", + "text": "@m1sp this calls for fanfic, terrible awful burnable fanfic", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457328148481191936, + "in_reply_to_status_id_str": "457328148481191936", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 19 01:20:36 +0000 2014", + "id": 457327874333503488, + "id_str": "457327874333503488", + "text": "@m1sp zomg now I’m imagining Aleth and your, uh, your XY progenitor, thanks mispybot", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 19 01:19:25 +0000 2014", + "id": 457327574021324800, + "id_str": "457327574021324800", + "text": "@bobpoekert @Talen_Lee @Shufflejoy yeah that’s kind of a thing in Virginia. They chose him for their statue in the Capitol Building", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457321538509750272, + "in_reply_to_status_id_str": "457321538509750272", + "in_reply_to_user_id": 191945961, + "in_reply_to_user_id_str": "191945961", + "in_reply_to_screen_name": "bobpoekert", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 19 01:06:12 +0000 2014", + "id": 457324250521935872, + "id_str": "457324250521935872", + "text": "Maps never fold back up right on the first try. They're like the USB connectors of ancient times", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 16, + "favorite_count": 17, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 19 00:48:42 +0000 2014", + "id": 457319845718417408, + "id_str": "457319845718417408", + "text": "@NedGilmore 😎", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457319011600977920, + "in_reply_to_status_id_str": "457319011600977920", + "in_reply_to_user_id": 166001040, + "in_reply_to_user_id_str": "166001040", + "in_reply_to_screen_name": "NedGilmore", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Sat Apr 19 00:45:18 +0000 2014", + "id": 457318990533390337, + "id_str": "457318990533390337", + "text": "@tangenteroja ding ding ding!\n\nNow check out the intersectionality with PUAs :p", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 457318305444147200, + "in_reply_to_status_id_str": "457318305444147200", + "in_reply_to_user_id": 262371761, + "in_reply_to_user_id_str": "262371761", + "in_reply_to_screen_name": "tangenteroja", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 19 00:37:18 +0000 2014", + "id": 457316977179373568, + "id_str": "457316977179373568", + "text": "@demize95 @Talen_Lee DON’T JUDGE ME", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457316484184678400, + "in_reply_to_status_id_str": "457316484184678400", + "in_reply_to_user_id": 137133048, + "in_reply_to_user_id_str": "137133048", + "in_reply_to_screen_name": "demize95", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 19 00:36:49 +0000 2014", + "id": 457316853296422912, + "id_str": "457316853296422912", + "text": "@tangenteroja both. MRAs aren't any one particular organization, though my grandfather belonged to a religious group of their general type", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 457316410050744321, + "in_reply_to_status_id_str": "457316410050744321", + "in_reply_to_user_id": 262371761, + "in_reply_to_user_id_str": "262371761", + "in_reply_to_screen_name": "tangenteroja", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 19 00:34:44 +0000 2014", + "id": 457316330522562561, + "id_str": "457316330522562561", + "text": "@Talen_Lee slaps??\n\nYou mean, like, s-s-sexually, or —", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457315915751645184, + "in_reply_to_status_id_str": "457315915751645184", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 19 00:32:17 +0000 2014", + "id": 457315713850818560, + "id_str": "457315713850818560", + "text": "@Talen_Lee I have no idea?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457315571042758657, + "in_reply_to_status_id_str": "457315571042758657", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 19 00:31:09 +0000 2014", + "id": 457315429510561792, + "id_str": "457315429510561792", + "text": "@Talen_Lee … no?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457315245397401600, + "in_reply_to_status_id_str": "457315245397401600", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "lt" + }, + { + "created_at": "Sat Apr 19 00:29:24 +0000 2014", + "id": 457314990379520000, + "id_str": "457314990379520000", + "text": "@mateornaut @ErrataRob She had had a grammar textbook which had had an example of at least one use case. Though an ugly one to be sure.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457314471263092736, + "in_reply_to_status_id_str": "457314471263092736", + "in_reply_to_user_id": 1620641965, + "in_reply_to_user_id_str": "1620641965", + "in_reply_to_screen_name": "mateornaut", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 19 00:28:18 +0000 2014", + "id": 457314713446408192, + "id_str": "457314713446408192", + "text": "@tangenteroja almost all the rest of their ideas are either fundamentally misguided or outright “stop making us less special!”", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457314160498712576, + "in_reply_to_status_id_str": "457314160498712576", + "in_reply_to_user_id": 262371761, + "in_reply_to_user_id_str": "262371761", + "in_reply_to_screen_name": "tangenteroja", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 19 00:27:47 +0000 2014", + "id": 457314581145473024, + "id_str": "457314581145473024", + "text": "@tangenteroja basically they have one good point — relating to outcomes of child custody cases — and miss that even that’s patriarchy", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457314160498712576, + "in_reply_to_status_id_str": "457314160498712576", + "in_reply_to_user_id": 262371761, + "in_reply_to_user_id_str": "262371761", + "in_reply_to_screen_name": "tangenteroja", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 19 00:26:25 +0000 2014", + "id": 457314237917179904, + "id_str": "457314237917179904", + "text": "@Kufat 😐 I’m wearing out this emoticon", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457313908936966144, + "in_reply_to_status_id_str": "457313908936966144", + "in_reply_to_user_id": 207691003, + "in_reply_to_user_id_str": "207691003", + "in_reply_to_screen_name": "Kufat", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 19 00:25:08 +0000 2014", + "id": 457313913038987264, + "id_str": "457313913038987264", + "text": "@NedGilmore I am obliged to stand up for my feminist young white atheist dude friends who like pot.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457313470711480321, + "in_reply_to_status_id_str": "457313470711480321", + "in_reply_to_user_id": 166001040, + "in_reply_to_user_id_str": "166001040", + "in_reply_to_screen_name": "NedGilmore", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 19 00:22:46 +0000 2014", + "id": 457313320966819840, + "id_str": "457313320966819840", + "text": "@tangenteroja \"men's rights activist\"\n\nA \"response\" to feminism that by and large misses the entire point", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 457313034600734720, + "in_reply_to_status_id_str": "457313034600734720", + "in_reply_to_user_id": 262371761, + "in_reply_to_user_id_str": "262371761", + "in_reply_to_screen_name": "tangenteroja", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 19 00:17:28 +0000 2014", + "id": 457311984288288768, + "id_str": "457311984288288768", + "text": "@kivikakk so, you want your name listed as Yuki Izumi, to be 100% certain?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457311550286487552, + "in_reply_to_status_id_str": "457311550286487552", + "in_reply_to_user_id": 67204542, + "in_reply_to_user_id_str": "67204542", + "in_reply_to_screen_name": "kivikakk", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 19 00:11:38 +0000 2014", + "id": 457310519800909824, + "id_str": "457310519800909824", + "text": "@LenIsham they refused to believe that I have literally never witnessed violence break out in public. I live in the same America they do…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457309455185887233, + "in_reply_to_status_id_str": "457309455185887233", + "in_reply_to_user_id": 17406334, + "in_reply_to_user_id_str": "17406334", + "in_reply_to_screen_name": "LenIsham", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 19 00:09:21 +0000 2014", + "id": 457309944321421313, + "id_str": "457309944321421313", + "text": "@LenIsham and I was like, I been to bars and ain’t no one got knifed, shot, or even decked. Maybe you keep really bad company???", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457309455185887233, + "in_reply_to_status_id_str": "457309455185887233", + "in_reply_to_user_id": 17406334, + "in_reply_to_user_id_str": "17406334", + "in_reply_to_screen_name": "LenIsham", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 19 00:08:35 +0000 2014", + "id": 457309750821404672, + "id_str": "457309750821404672", + "text": "@LenIsham everyday life in a first world country, they were talking about how getting a knife pulled on you in a bar is just typical stuff", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457309455185887233, + "in_reply_to_status_id_str": "457309455185887233", + "in_reply_to_user_id": 17406334, + "in_reply_to_user_id_str": "17406334", + "in_reply_to_screen_name": "LenIsham", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 19 00:06:28 +0000 2014", + "id": 457309218958508032, + "id_str": "457309218958508032", + "text": "@MechMK1 @kyhwana spoilers: it doesn’t work anywhere", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457309127656890368, + "in_reply_to_status_id_str": "457309127656890368", + "in_reply_to_user_id": 81556825, + "in_reply_to_user_id_str": "81556825", + "in_reply_to_screen_name": "MechMK1", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 19 00:06:04 +0000 2014", + "id": 457309117963845632, + "id_str": "457309117963845632", + "text": "@Packetknife a gun, I assume, as the implication was that of stopping one or more male rapists when I am not physically strong", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457308829399937024, + "in_reply_to_status_id_str": "457308829399937024", + "in_reply_to_user_id": 19564254, + "in_reply_to_user_id_str": "19564254", + "in_reply_to_screen_name": "Packetknife", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 19 00:05:12 +0000 2014", + "id": 457308899256070145, + "id_str": "457308899256070145", + "text": "One time I ventured into an MRA forum and they also took frequent breakouts of violence as a given of civilized life. Who are these people", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 5, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 19 00:01:09 +0000 2014", + "id": 457307879226503168, + "id_str": "457307879226503168", + "text": "@m1sp_ebooks @m1sp okay\n\n👬🍝", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457307629115961344, + "in_reply_to_status_id_str": "457307629115961344", + "in_reply_to_user_id": 554331438, + "in_reply_to_user_id_str": "554331438", + "in_reply_to_screen_name": "m1sp_ebooks", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Fri Apr 18 23:59:00 +0000 2014", + "id": 457307339226636288, + "id_str": "457307339226636288", + "text": ".@kyhwana this is America! Pulling a handgun on everyone who looks at you funny is the cure for all social ills.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457307164093083648, + "in_reply_to_status_id_str": "457307164093083648", + "in_reply_to_user_id": 30135560, + "in_reply_to_user_id_str": "30135560", + "in_reply_to_screen_name": "kyhwana", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 6, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 23:58:07 +0000 2014", + "id": 457307117301800960, + "id_str": "457307117301800960", + "text": "@gewt armed, as in, weapons. \n\nI refuse to carry or operate anything more dangerous than a foam prop.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457306862698758144, + "in_reply_to_status_id_str": "457306862698758144", + "in_reply_to_user_id": 18125825, + "in_reply_to_user_id_str": "18125825", + "in_reply_to_screen_name": "gewt", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 23:55:50 +0000 2014", + "id": 457306541201588224, + "id_str": "457306541201588224", + "text": "Just got told to go everywhere in public heavily armed rather than ask that maybe 🚹➡️🚺 street harassment be considered unacceptable", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 7, + "favorite_count": 10, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 23:45:58 +0000 2014", + "id": 457304056500088832, + "id_str": "457304056500088832", + "text": "@demize95 @hinanawi_chan @zhuowei he never loved me back 😢 patching that one was pretty tough", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457303920490975233, + "in_reply_to_status_id_str": "457303920490975233", + "in_reply_to_user_id": 137133048, + "in_reply_to_user_id_str": "137133048", + "in_reply_to_screen_name": "demize95", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 23:44:52 +0000 2014", + "id": 457303779671805953, + "id_str": "457303779671805953", + "text": "@demize95 @hinanawi_chan @zhuowei 💔", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457303559243972608, + "in_reply_to_status_id_str": "457303559243972608", + "in_reply_to_user_id": 137133048, + "in_reply_to_user_id_str": "137133048", + "in_reply_to_screen_name": "demize95", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Fri Apr 18 23:41:36 +0000 2014", + "id": 457302958712295424, + "id_str": "457302958712295424", + "text": "@alexwoolfson mine is a traditional novel, which means I would find out how wrong, err, different, the fans perceive my heroes visually 😉", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457302685352341504, + "in_reply_to_status_id_str": "457302685352341504", + "in_reply_to_user_id": 15483554, + "in_reply_to_user_id_str": "15483554", + "in_reply_to_screen_name": "alexwoolfson", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 23:40:20 +0000 2014", + "id": 457302640230400000, + "id_str": "457302640230400000", + "text": "@hinanawi_chan and then he tried to hit on me 😂", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457300569737019392, + "in_reply_to_status_id_str": "457300569737019392", + "in_reply_to_user_id": 2336014178, + "in_reply_to_user_id_str": "2336014178", + "in_reply_to_screen_name": "hinanawi_chan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 23:37:51 +0000 2014", + "id": 457302016491261952, + "id_str": "457302016491261952", + "text": "@alexwoolfson aww man now I want a fan casting for Glory in the Thunder. But I don’t even know enough actors to do it myself.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457301525547581440, + "in_reply_to_status_id_str": "457301525547581440", + "in_reply_to_user_id": 15483554, + "in_reply_to_user_id_str": "15483554", + "in_reply_to_screen_name": "alexwoolfson", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 23:36:38 +0000 2014", + "id": 457301708411265024, + "id_str": "457301708411265024", + "text": "@osxreverser 😐", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457301626009948160, + "in_reply_to_status_id_str": "457301626009948160", + "in_reply_to_user_id": 260782997, + "in_reply_to_user_id_str": "260782997", + "in_reply_to_screen_name": "osxreverser", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Fri Apr 18 23:34:36 +0000 2014", + "id": 457301199948361728, + "id_str": "457301199948361728", + "text": "@osxreverser uh…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457301057786634240, + "in_reply_to_status_id_str": "457301057786634240", + "in_reply_to_user_id": 260782997, + "in_reply_to_user_id_str": "260782997", + "in_reply_to_screen_name": "osxreverser", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Fri Apr 18 23:33:23 +0000 2014", + "id": 457300891188883456, + "id_str": "457300891188883456", + "text": "@osxreverser I am completely clean of all drugs except caffeine. But I’m not early to bed and early to rise", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457300647906652160, + "in_reply_to_status_id_str": "457300647906652160", + "in_reply_to_user_id": 260782997, + "in_reply_to_user_id_str": "260782997", + "in_reply_to_screen_name": "osxreverser", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 23:32:49 +0000 2014", + "id": 457300750818099200, + "id_str": "457300750818099200", + "text": "@osxreverser screen capping and forwarding to the Girl Cabal.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457300394751045632, + "in_reply_to_status_id_str": "457300394751045632", + "in_reply_to_user_id": 260782997, + "in_reply_to_user_id_str": "260782997", + "in_reply_to_screen_name": "osxreverser", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 23:30:01 +0000 2014", + "id": 457300046414110721, + "id_str": "457300046414110721", + "text": "@osxreverser you think I’m smart, right?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457299904881491968, + "in_reply_to_status_id_str": "457299904881491968", + "in_reply_to_user_id": 260782997, + "in_reply_to_user_id_str": "260782997", + "in_reply_to_screen_name": "osxreverser", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 23:23:27 +0000 2014", + "id": 457298391413063680, + "id_str": "457298391413063680", + "text": "@abaranov what is this \"microsoft word\" of which you speak? Sounds expensive :)", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 457298191755382784, + "in_reply_to_status_id_str": "457298191755382784", + "in_reply_to_user_id": 14507690, + "in_reply_to_user_id_str": "14507690", + "in_reply_to_screen_name": "abaranov", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 23:22:45 +0000 2014", + "id": 457298216250515456, + "id_str": "457298216250515456", + "text": "@m1sp I thought I put a timeline of aspects by year in a google docs file to show you, but now I can't find it, did I imagine that?", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 23:15:36 +0000 2014", + "id": 457296418089492480, + "id_str": "457296418089492480", + "text": "@ErrataRob that explains everything\n\n*runs*", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 457296277727117313, + "in_reply_to_status_id_str": "457296277727117313", + "in_reply_to_user_id": 15300995, + "in_reply_to_user_id_str": "15300995", + "in_reply_to_screen_name": "ErrataRob", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 23:14:11 +0000 2014", + "id": 457296059061248000, + "id_str": "457296059061248000", + "text": "@MechMK1 well yes, but there's both a psychological difference in ease of spotting, and in running the test with a control-f :)", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 457295721998614528, + "in_reply_to_status_id_str": "457295721998614528", + "in_reply_to_user_id": 81556825, + "in_reply_to_user_id_str": "81556825", + "in_reply_to_screen_name": "MechMK1", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 23:13:29 +0000 2014", + "id": 457295883848384512, + "id_str": "457295883848384512", + "text": ".@codedit Unit test COHERENT_PLOT failed in chapter 19: character acting contradictory to stated goals", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 457295632559267841, + "in_reply_to_status_id_str": "457295632559267841", + "in_reply_to_user_id": 171054188, + "in_reply_to_user_id_str": "171054188", + "in_reply_to_screen_name": "codedit", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 9, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 23:12:09 +0000 2014", + "id": 457295547070967808, + "id_str": "457295547070967808", + "text": "@DrPizza in theory, and so can \"had had\", though I would go to great lengths to never emit that deliberately.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 457295184326176768, + "in_reply_to_status_id_str": "457295184326176768", + "in_reply_to_user_id": 11375732, + "in_reply_to_user_id_str": "11375732", + "in_reply_to_screen_name": "DrPizza", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 23:11:27 +0000 2014", + "id": 457295370935357441, + "id_str": "457295370935357441", + "text": "So apparently doubling up of the most common English words is a bug you should specifically test for before pushing books to production", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 4, + "favorite_count": 6, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 23:10:22 +0000 2014", + "id": 457295098863435776, + "id_str": "457295098863435776", + "text": "I had one \"the the\", two \"and and\", and one \"that that\" in my manuscript. Missed them all at least a dozen times.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 5, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 23:01:28 +0000 2014", + "id": 457292861344874496, + "id_str": "457292861344874496", + "text": "@kivikakk Izumi, that was it. Had to go check your github ^_^;;", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 67204542, + "in_reply_to_user_id_str": "67204542", + "in_reply_to_screen_name": "kivikakk", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 23:00:18 +0000 2014", + "id": 457292565717737472, + "id_str": "457292565717737472", + "text": "@n1vux yes. The one in the middle is @thegrugq.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 457292193380986880, + "in_reply_to_status_id_str": "457292193380986880", + "in_reply_to_user_id": 57332943, + "in_reply_to_user_id_str": "57332943", + "in_reply_to_screen_name": "n1vux", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 22:59:50 +0000 2014", + "id": 457292449912983552, + "id_str": "457292449912983552", + "text": "@kivikakk do you want me to change your name in the thanks-to of GitT to Yuki Cuss or Yuki __something else__ ? Or leave it as Amelia Cuss?", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 67204542, + "in_reply_to_user_id_str": "67204542", + "in_reply_to_screen_name": "kivikakk", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 22:55:56 +0000 2014", + "id": 457291468441657344, + "id_str": "457291468441657344", + "text": "@ClaudioDekker @jesster_king you're both right; using extended unicode IS a good idea for passwords, until suddenly lolwat", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 457291329392115713, + "in_reply_to_status_id_str": "457291329392115713", + "in_reply_to_user_id": 78721809, + "in_reply_to_user_id_str": "78721809", + "in_reply_to_screen_name": "ClaudioDekker", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 22:50:22 +0000 2014", + "id": 457290065325359105, + "id_str": "457290065325359105", + "text": "APPARENTLY Y'ALL ARE PERVS, THEY'RE JUST CONCENTRIC CIRCLES", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 10, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 22:49:21 +0000 2014", + "id": 457289810898862080, + "id_str": "457289810898862080", + "text": "@thegrugq @redtwitdown *silence on the wire to avoid dignifying this discussion*", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 457289616458928128, + "in_reply_to_status_id_str": "457289616458928128", + "in_reply_to_user_id": 18983429, + "in_reply_to_user_id_str": "18983429", + "in_reply_to_screen_name": "thegrugq", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 22:48:50 +0000 2014", + "id": 457289680988684289, + "id_str": "457289680988684289", + "text": ".@johanjortso @rgov we can work on this feature, though.\n\nrm: dissertation.doc: is your life's work", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 457289303572643840, + "in_reply_to_status_id_str": "457289303572643840", + "in_reply_to_user_id": 81664060, + "in_reply_to_user_id_str": "81664060", + "in_reply_to_screen_name": "johanjortso", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 22:47:45 +0000 2014", + "id": 457289409675939840, + "id_str": "457289409675939840", + "text": "I'm putting together the Slightly Edited version of GitT so if there's any other typos I missed now would be a good time to mention them", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 22:35:45 +0000 2014", + "id": 457286386761363456, + "id_str": "457286386761363456", + "text": "RT @rgov: Dear UNIX: No one ever wants to copy/delete a directory non-recursively.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Fri Apr 18 22:35:31 +0000 2014", + "id": 457286327612874752, + "id_str": "457286327612874752", + "text": "Dear UNIX: No one ever wants to copy/delete a directory non-recursively.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 16185731, + "id_str": "16185731" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 226, + "favorite_count": 127, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 226, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 22:33:53 +0000 2014", + "id": 457285919826268160, + "id_str": "457285919826268160", + "text": ".@thegrugq SHUSH YOU’RE PINKSHAMING. It was supposed to look more red but the watercolor effect came out really pink.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457285433613750273, + "in_reply_to_status_id_str": "457285433613750273", + "in_reply_to_user_id": 18983429, + "in_reply_to_user_id_str": "18983429", + "in_reply_to_screen_name": "thegrugq", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 22:29:59 +0000 2014", + "id": 457284934743621633, + "id_str": "457284934743621633", + "text": "“It’s an accurate stereotype.” http://t.co/7yDC1Kb1fW", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 8, + "favorite_count": 10, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 22:23:09 +0000 2014", + "id": 457283219009056768, + "id_str": "457283219009056768", + "text": "@johanjortso and that how it would really be said in that source language is probably more correct", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457282679114043394, + "in_reply_to_status_id_str": "457282679114043394", + "in_reply_to_user_id": 81664060, + "in_reply_to_user_id_str": "81664060", + "in_reply_to_screen_name": "johanjortso", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 22:22:45 +0000 2014", + "id": 457283116626104320, + "id_str": "457283116626104320", + "text": "@johanjortso for my own characters, I concede that where *I* put the emphasis in the syllables may not match the source language of the name", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457282679114043394, + "in_reply_to_status_id_str": "457282679114043394", + "in_reply_to_user_id": 81664060, + "in_reply_to_user_id_str": "81664060", + "in_reply_to_screen_name": "johanjortso", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 22:21:59 +0000 2014", + "id": 457282921972633600, + "id_str": "457282921972633600", + "text": "@johanjortso probably a decision meant to avert stupid flame wars amongst fans, but I’m sure it doesn’t work :)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457282679114043394, + "in_reply_to_status_id_str": "457282679114043394", + "in_reply_to_user_id": 81664060, + "in_reply_to_user_id_str": "81664060", + "in_reply_to_screen_name": "johanjortso", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 22:14:35 +0000 2014", + "id": 457281059181572096, + "id_str": "457281059181572096", + "text": "As a reader only, I find out how GoT character names are pronounced by how other people misspell them online", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 10, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 22:09:02 +0000 2014", + "id": 457279662880989184, + "id_str": "457279662880989184", + "text": "@Shufflejoy illustrated http://t.co/U2STOv2y1B", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457274810029322241, + "in_reply_to_status_id_str": "457274810029322241", + "in_reply_to_user_id": 1567524811, + "in_reply_to_user_id_str": "1567524811", + "in_reply_to_screen_name": "Shufflejoy", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "et" + }, + { + "created_at": "Fri Apr 18 21:55:50 +0000 2014", + "id": 457276340463763457, + "id_str": "457276340463763457", + "text": "@Shufflejoy perhaps a discussion of the difference between accuracy and precision would be helpful to such people", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457274810029322241, + "in_reply_to_status_id_str": "457274810029322241", + "in_reply_to_user_id": 1567524811, + "in_reply_to_user_id_str": "1567524811", + "in_reply_to_screen_name": "Shufflejoy", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 21:43:18 +0000 2014", + "id": 457273188582715392, + "id_str": "457273188582715392", + "text": "@fladamd I’m thinking more of programming types with literally just initials, though my book is already under M. B. Elliott", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457272819496542208, + "in_reply_to_status_id_str": "457272819496542208", + "in_reply_to_user_id": 16246810, + "in_reply_to_user_id_str": "16246810", + "in_reply_to_screen_name": "fladamd", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 21:42:07 +0000 2014", + "id": 457272890409619456, + "id_str": "457272890409619456", + "text": "@zhuowei @antumbral @hinanawi_chan aww. Everyone sounds worst to their future selves", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457272597198409728, + "in_reply_to_status_id_str": "457272597198409728", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 21:38:48 +0000 2014", + "id": 457272055294332929, + "id_str": "457272055294332929", + "text": "@zhuowei hey I remember that 404 page", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457271333072941057, + "in_reply_to_status_id_str": "457271333072941057", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 21:38:16 +0000 2014", + "id": 457271920355196928, + "id_str": "457271920355196928", + "text": "@ClaudioDekker the archiving date? Well it’s right there, appended by the archiver. I would have written that site probably in 2009 though…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457271280962899969, + "in_reply_to_status_id_str": "457271280962899969", + "in_reply_to_user_id": 78721809, + "in_reply_to_user_id_str": "78721809", + "in_reply_to_screen_name": "ClaudioDekker", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 21:30:56 +0000 2014", + "id": 457270076673363968, + "id_str": "457270076673363968", + "text": "@zhuowei gods why does everything I wrote in the distant past sound like it was written by an egotistical brat", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457269652079403009, + "in_reply_to_status_id_str": "457269652079403009", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 21:23:15 +0000 2014", + "id": 457268142386204672, + "id_str": "457268142386204672", + "text": "@StephenByrne86 no this is perfect except you didn’t incorporate any Escher Girl twists", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457191432810278912, + "in_reply_to_status_id_str": "457191432810278912", + "in_reply_to_user_id": 106477833, + "in_reply_to_user_id_str": "106477833", + "in_reply_to_screen_name": "StephenByrne86", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 21:20:23 +0000 2014", + "id": 457267422610079745, + "id_str": "457267422610079745", + "text": "@benspants @vogon “father, husband, practitioner of religion of peace, prime example of GIFT in action”", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457243120917172224, + "in_reply_to_status_id_str": "457243120917172224", + "in_reply_to_user_id": 205874230, + "in_reply_to_user_id_str": "205874230", + "in_reply_to_screen_name": "benspants", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 21:13:34 +0000 2014", + "id": 457265706737078272, + "id_str": "457265706737078272", + "text": "@thegrugq is that pronounced Breaking or Non-Breaking Space?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457265505514967040, + "in_reply_to_status_id_str": "457265505514967040", + "in_reply_to_user_id": 18983429, + "in_reply_to_user_id_str": "18983429", + "in_reply_to_screen_name": "thegrugq", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 21:09:13 +0000 2014", + "id": 457264610950017024, + "id_str": "457264610950017024", + "text": "@thegrugq my middle name is Beth. Don’t tell any phishers.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457264381567320064, + "in_reply_to_status_id_str": "457264381567320064", + "in_reply_to_user_id": 18983429, + "in_reply_to_user_id_str": "18983429", + "in_reply_to_screen_name": "thegrugq", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 21:08:37 +0000 2014", + "id": 457264458252169216, + "id_str": "457264458252169216", + "text": "@binaryfox @qDot my family members used to email that around with “whatever happened to AMERICAN innovation?” like it’s a zero-sum game", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457263082822062081, + "in_reply_to_status_id_str": "457263082822062081", + "in_reply_to_user_id": 199545494, + "in_reply_to_user_id_str": "199545494", + "in_reply_to_screen_name": "binaryfox", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 21:05:23 +0000 2014", + "id": 457263645953888256, + "id_str": "457263645953888256", + "text": "@zhuowei You must mean the .net that expired years ago! you are quite the spy!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457262466339446785, + "in_reply_to_status_id_str": "457262466339446785", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 20:58:27 +0000 2014", + "id": 457261901085700097, + "id_str": "457261901085700097", + "text": "All the cool people are known by their initials only. I used to have my initials as a twitter handle but now a twitter employee has it 😕", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 20:37:11 +0000 2014", + "id": 457256548361068544, + "id_str": "457256548361068544", + "text": "@geekable @thegrugq @hashbreaker sssh we’re *subtweeting* 😐", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457255851313881088, + "in_reply_to_status_id_str": "457255851313881088", + "in_reply_to_user_id": 755035, + "in_reply_to_user_id_str": "755035", + "in_reply_to_screen_name": "geekable", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 20:34:59 +0000 2014", + "id": 457255995988013056, + "id_str": "457255995988013056", + "text": ".@thegrugq well, I didn’t say it’d be straightforward", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457255830400675841, + "in_reply_to_status_id_str": "457255830400675841", + "in_reply_to_user_id": 18983429, + "in_reply_to_user_id_str": "18983429", + "in_reply_to_screen_name": "thegrugq", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 20:34:43 +0000 2014", + "id": 457255930175176704, + "id_str": "457255930175176704", + "text": "RT @thegrugq: @0xabad1dea as soon as we fix TLS so it stops sucking all the time.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Fri Apr 18 20:34:20 +0000 2014", + "id": 457255830400675841, + "id_str": "457255830400675841", + "text": "@0xabad1dea as soon as we fix TLS so it stops sucking all the time.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457255710192328704, + "in_reply_to_status_id_str": "457255710192328704", + "in_reply_to_user_id": 126030998, + "in_reply_to_user_id_str": "126030998", + "in_reply_to_screen_name": "0xabad1dea", + "user": { + "id": 18983429, + "id_str": "18983429" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 3, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "0xabad1dea", + "name": "MeliSSL", + "id": 126030998, + "id_str": "126030998", + "indices": [ + 0, + 11 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 1, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 20:33:51 +0000 2014", + "id": 457255710192328704, + "id_str": "457255710192328704", + "text": "djb for benevolent dictator, as soon as we can sort out https for his site anyway @thegrugq", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 5, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 20:27:56 +0000 2014", + "id": 457254220358754304, + "id_str": "457254220358754304", + "text": ".@dakami @dangoodin001 the root problem, I think, is that literally no one on the planet is qualified to write critical netsec code in C 😩", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457253298613915648, + "in_reply_to_status_id_str": "457253298613915648", + "in_reply_to_user_id": 8917142, + "in_reply_to_user_id_str": "8917142", + "in_reply_to_screen_name": "dakami", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 8, + "favorite_count": 13, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 20:15:19 +0000 2014", + "id": 457251046000451585, + "id_str": "457251046000451585", + "text": "@dangoodin001 and my opinion is in their gusto they’re just as likely to introduce new breakages if they’re not REALLY careful", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457249456698585088, + "in_reply_to_status_id_str": "457249456698585088", + "in_reply_to_user_id": 14150736, + "in_reply_to_user_id_str": "14150736", + "in_reply_to_screen_name": "dangoodin001", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 20:14:28 +0000 2014", + "id": 457250830769741824, + "id_str": "457250830769741824", + "text": "@dangoodin001 OpenBSD’s sudden flip-out with pushing their own custom cleanups certainly counts as a fork IMO", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457249456698585088, + "in_reply_to_status_id_str": "457249456698585088", + "in_reply_to_user_id": 14150736, + "in_reply_to_user_id_str": "14150736", + "in_reply_to_screen_name": "dangoodin001", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 20:05:32 +0000 2014", + "id": 457248586510913536, + "id_str": "457248586510913536", + "text": "@zhuowei @m1sp Clarion was, at one point in her life, extraordinarily ignorant; she doesn’t much like conceding that.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457244708084133889, + "in_reply_to_status_id_str": "457244708084133889", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 19:56:59 +0000 2014", + "id": 457246433155223552, + "id_str": "457246433155223552", + "text": "@eevee when peace like a river attendeth my way, when blog posts by my deliberately provocative acquaintances roll", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457245942584848384, + "in_reply_to_status_id_str": "457245942584848384", + "in_reply_to_user_id": 14412937, + "in_reply_to_user_id_str": "14412937", + "in_reply_to_screen_name": "eevee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 19:53:10 +0000 2014", + "id": 457245470658949120, + "id_str": "457245470658949120", + "text": "@zhuowei @m1sp Clarion, who for some reason I drew in clothes that actually cover her shoulders this time", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457244708084133889, + "in_reply_to_status_id_str": "457244708084133889", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 19:44:30 +0000 2014", + "id": 457243292003237888, + "id_str": "457243292003237888", + "text": "@m1sp a wild character design appears http://t.co/BFMkwAef2S", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 19:27:20 +0000 2014", + "id": 457238972880916480, + "id_str": "457238972880916480", + "text": "@ra6bit but this one isn’t accessible directly over the internet, which in their mind probably constitutes patched", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457238659394453504, + "in_reply_to_status_id_str": "457238659394453504", + "in_reply_to_user_id": 537333195, + "in_reply_to_user_id_str": "537333195", + "in_reply_to_screen_name": "ra6bit", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 19:14:19 +0000 2014", + "id": 457235693631459328, + "id_str": "457235693631459328", + "text": "@zygen it wants the… … sorry", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457235410096123904, + "in_reply_to_status_id_str": "457235410096123904", + "in_reply_to_user_id": 12843182, + "in_reply_to_user_id_str": "12843182", + "in_reply_to_screen_name": "zygen", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 19:13:40 +0000 2014", + "id": 457235530393337856, + "id_str": "457235530393337856", + "text": "The root cause, I presume, being mergers and acquisitions", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 19:11:49 +0000 2014", + "id": 457235068214198272, + "id_str": "457235068214198272", + "text": "I am alarmed at how a real problem customers have is “we have no idea how many websites we actually own at this point” 😨", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 11, + "favorite_count": 8, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 18:55:22 +0000 2014", + "id": 457230928444923904, + "id_str": "457230928444923904", + "text": "@dakami they switched from beating us with maces to beating us with baseball bats! :)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457230750949978112, + "in_reply_to_status_id_str": "457230750949978112", + "in_reply_to_user_id": 8917142, + "in_reply_to_user_id_str": "8917142", + "in_reply_to_screen_name": "dakami", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 18:50:58 +0000 2014", + "id": 457229818120376320, + "id_str": "457229818120376320", + "text": "“Ah, they found our router backdoor. Make it slightly more obfuscated and tell them it’s patched.” http://t.co/8gh7GCAXmV", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 206, + "favorite_count": 87, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 18:37:45 +0000 2014", + "id": 457226491269775360, + "id_str": "457226491269775360", + "text": "@zenalbatross no, having lived in that area I thought right away they were sheriff SUVs, which made me check for ambulance or fire truck", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457226282187898880, + "in_reply_to_status_id_str": "457226282187898880", + "in_reply_to_user_id": 6878632, + "in_reply_to_user_id_str": "6878632", + "in_reply_to_screen_name": "zenalbatross", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 18:35:03 +0000 2014", + "id": 457225811758952451, + "id_str": "457225811758952451", + "text": "@zenalbatross um… there’s a fire truck… I’m pretty sure this was snapped during an actual emergency response!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457225248283193344, + "in_reply_to_status_id_str": "457225248283193344", + "in_reply_to_user_id": 6878632, + "in_reply_to_user_id_str": "6878632", + "in_reply_to_screen_name": "zenalbatross", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 18:33:42 +0000 2014", + "id": 457225474885033984, + "id_str": "457225474885033984", + "text": "@samtuke @eevee it’s affecting me, because the blog supposedly documenting it is not doing so in a clear and easily readable manner!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457117371430629376, + "in_reply_to_status_id_str": "457117371430629376", + "in_reply_to_user_id": 251585894, + "in_reply_to_user_id_str": "251585894", + "in_reply_to_screen_name": "samtuke", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 18:24:18 +0000 2014", + "id": 457223109192744960, + "id_str": "457223109192744960", + "text": "@winocm wat r u doin\n\nWinocm stahp", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457210165628911617, + "in_reply_to_status_id_str": "457210165628911617", + "in_reply_to_user_id": 428413732, + "in_reply_to_user_id_str": "428413732", + "in_reply_to_screen_name": "winocm", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "in" + }, + { + "created_at": "Fri Apr 18 16:44:38 +0000 2014", + "id": 457198024427835392, + "id_str": "457198024427835392", + "text": "@geekable 4/20 raise it from the dead", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457197797259751424, + "in_reply_to_status_id_str": "457197797259751424", + "in_reply_to_user_id": 755035, + "in_reply_to_user_id_str": "755035", + "in_reply_to_screen_name": "geekable", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 16:44:38 +0000 2014", + "id": 457198024427835392, + "id_str": "457198024427835392", + "text": "@geekable 4/20 raise it from the dead", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457197797259751424, + "in_reply_to_status_id_str": "457197797259751424", + "in_reply_to_user_id": 755035, + "in_reply_to_user_id_str": "755035", + "in_reply_to_screen_name": "geekable", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 16:06:14 +0000 2014", + "id": 457188364257886208, + "id_str": "457188364257886208", + "text": "RT @Penenberg: There should be a reality show starring all the Satoshi Nakamoto candidates, each voted out of the house 1 by 1 until only t…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Wed Apr 16 16:57:26 +0000 2014", + "id": 456476472434114560, + "id_str": "456476472434114560", + "text": "There should be a reality show starring all the Satoshi Nakamoto candidates, each voted out of the house 1 by 1 until only the real SM left.", + "source": "YoruFukurou", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 41187603, + "id_str": "41187603" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 18, + "favorite_count": 14, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 18, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 15:49:05 +0000 2014", + "id": 457184048327458816, + "id_str": "457184048327458816", + "text": "RT @JasonLeopold: I landed an interview with the architect of the CIA's torture program who has never spoken publicly before http://t.co/64…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Fri Apr 18 15:18:09 +0000 2014", + "id": 457176263015137280, + "id_str": "457176263015137280", + "text": "I landed an interview with the architect of the CIA's torture program who has never spoken publicly before http://t.co/64KwhkzBHI", + "source": "Twitter for Android", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 17094311, + "id_str": "17094311" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 76, + "favorite_count": 59, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/64KwhkzBHI", + "expanded_url": "http://www.theguardian.com/world/2014/apr/18/james-mitchell-cia-torture-interview", + "display_url": "theguardian.com/world/2014/apr…", + "indices": [ + 107, + 129 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 76, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 15:26:38 +0000 2014", + "id": 457178395932377088, + "id_str": "457178395932377088", + "text": "@Mark_Coker I never run jailbroken so I’m not sure :)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457178123964928000, + "in_reply_to_status_id_str": "457178123964928000", + "in_reply_to_user_id": 64872429, + "in_reply_to_user_id_str": "64872429", + "in_reply_to_screen_name": "Mark_Coker", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 15:12:00 +0000 2014", + "id": 457174713144709120, + "id_str": "457174713144709120", + "text": "@skimbrel no, I do mean twitter specifically :)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457174496844464130, + "in_reply_to_status_id_str": "457174496844464130", + "in_reply_to_user_id": 17934129, + "in_reply_to_user_id_str": "17934129", + "in_reply_to_screen_name": "skimbrel", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 14:59:11 +0000 2014", + "id": 457171488433778688, + "id_str": "457171488433778688", + "text": "@zauspar and/or you’re close friends with someone you don’t even realize is totally a spy or ‘rist", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457170307363524608, + "in_reply_to_status_id_str": "457170307363524608", + "in_reply_to_user_id": 216571343, + "in_reply_to_user_id_str": "216571343", + "in_reply_to_screen_name": "zauspar", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 14:51:41 +0000 2014", + "id": 457169600007127040, + "id_str": "457169600007127040", + "text": "@zauspar ie you can put down you did drugs and you’ll still usually get your clearance as long as you’re not still actively dealing crack", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457169069557301248, + "in_reply_to_status_id_str": "457169069557301248", + "in_reply_to_user_id": 216571343, + "in_reply_to_user_id_str": "216571343", + "in_reply_to_screen_name": "zauspar", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 14:50:43 +0000 2014", + "id": 457169356653608960, + "id_str": "457169356653608960", + "text": "@zauspar my dad is a government guy. He always said that just being honest and straightforward is the important thing.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457169069557301248, + "in_reply_to_status_id_str": "457169069557301248", + "in_reply_to_user_id": 216571343, + "in_reply_to_user_id_str": "216571343", + "in_reply_to_screen_name": "zauspar", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 14:50:01 +0000 2014", + "id": 457169180387991552, + "id_str": "457169180387991552", + "text": "@zauspar not to imply they’re not emotionally meaningful interactions, but that they’re not politically or financially meaningful", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457168672570617856, + "in_reply_to_status_id_str": "457168672570617856", + "in_reply_to_user_id": 216571343, + "in_reply_to_user_id_str": "216571343", + "in_reply_to_screen_name": "zauspar", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 14:49:05 +0000 2014", + "id": 457168946786205698, + "id_str": "457168946786205698", + "text": "@zauspar superficial internet communications with strangers are not the sort of thing they mean or we’d all have to list thousands :)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457168672570617856, + "in_reply_to_status_id_str": "457168672570617856", + "in_reply_to_user_id": 216571343, + "in_reply_to_user_id_str": "216571343", + "in_reply_to_screen_name": "zauspar", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 14:45:55 +0000 2014", + "id": 457168149444849664, + "id_str": "457168149444849664", + "text": "@zauspar “Yes” is not the wrong answer.\n\n“Yes, for Osama bin Laden” is the wrong answer.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457166880378073088, + "in_reply_to_status_id_str": "457166880378073088", + "in_reply_to_user_id": 216571343, + "in_reply_to_user_id_str": "216571343", + "in_reply_to_screen_name": "zauspar", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 14:42:18 +0000 2014", + "id": 457167242099449856, + "id_str": "457167242099449856", + "text": "Just the other day a kid on reddit wrote me to ask if it’s safe to use those Chinese pirate app stores. Haha no https://t.co/GoLpfx1qmO", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 4, + "favorite_count": 8, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 13:24:08 +0000 2014", + "id": 457147568515190784, + "id_str": "457147568515190784", + "text": "@HanakoGames that’s a review to frame on the wall", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457109797314502656, + "in_reply_to_status_id_str": "457109797314502656", + "in_reply_to_user_id": 233343528, + "in_reply_to_user_id_str": "233343528", + "in_reply_to_screen_name": "HanakoGames", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 13:18:55 +0000 2014", + "id": 457146256385916928, + "id_str": "457146256385916928", + "text": "@gsuberland the stereotype is the exact opposite in our country", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457092604300369920, + "in_reply_to_status_id_str": "457092604300369920", + "in_reply_to_user_id": 432513392, + "in_reply_to_user_id_str": "432513392", + "in_reply_to_screen_name": "gsuberland", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 13:12:15 +0000 2014", + "id": 457144577133387776, + "id_str": "457144577133387776", + "text": "@alt_m1sp I’m in it too!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457035239483637760, + "in_reply_to_status_id_str": "457035239483637760", + "in_reply_to_user_id": 2401670173, + "in_reply_to_user_id_str": "2401670173", + "in_reply_to_screen_name": "alt_m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 05:32:02 +0000 2014", + "id": 457028759133388800, + "id_str": "457028759133388800", + "text": "RT @nickm_tor: \"Sit. P's. Cubby. Duck. Co-classicist. Museum of science. Toss.\" -- George Carlin's seven dirty words, according to my phon…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Fri Apr 18 05:16:28 +0000 2014", + "id": 457024843545079809, + "id_str": "457024843545079809", + "text": "\"Sit. P's. Cubby. Duck. Co-classicist. Museum of science. Toss.\" -- George Carlin's seven dirty words, according to my phone.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 18487874, + "id_str": "18487874" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 11, + "favorite_count": 15, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 11, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 04:53:16 +0000 2014", + "id": 457019006286061569, + "id_str": "457019006286061569", + "text": "@comex >.>", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457018893635444736, + "in_reply_to_status_id_str": "457018893635444736", + "in_reply_to_user_id": 14550962, + "in_reply_to_user_id_str": "14550962", + "in_reply_to_screen_name": "comex", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "vi" + }, + { + "created_at": "Fri Apr 18 04:23:45 +0000 2014", + "id": 457011575287980032, + "id_str": "457011575287980032", + "text": "@Talen_Lee @m1sp @WhiteMageSlave probably a little more like that but not entirely", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457011400792363008, + "in_reply_to_status_id_str": "457011400792363008", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 04:23:08 +0000 2014", + "id": 457011421906489345, + "id_str": "457011421906489345", + "text": "@blazingcrimson 🔥🔫 roger", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457011284764938240, + "in_reply_to_status_id_str": "457011284764938240", + "in_reply_to_user_id": 1531220689, + "in_reply_to_user_id_str": "1531220689", + "in_reply_to_screen_name": "blazingcrimson", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "sk" + }, + { + "created_at": "Fri Apr 18 04:22:31 +0000 2014", + "id": 457011265437990913, + "id_str": "457011265437990913", + "text": "@Talen_Lee @m1sp @WhiteMageSlave are you kidding? The original ends with Gerda and Kai chilling in their living room !", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457011016774070273, + "in_reply_to_status_id_str": "457011016774070273", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 04:22:01 +0000 2014", + "id": 457011141651476480, + "id_str": "457011141651476480", + "text": "@blazingcrimson 💂 supplies are holding strong captain", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457010943319212032, + "in_reply_to_status_id_str": "457010943319212032", + "in_reply_to_user_id": 1531220689, + "in_reply_to_user_id_str": "1531220689", + "in_reply_to_screen_name": "blazingcrimson", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 04:20:29 +0000 2014", + "id": 457010755142172672, + "id_str": "457010755142172672", + "text": "@m1sp @WhiteMageSlave you know my intention is to take the Disney story and make it all end in tears right", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457009526655315968, + "in_reply_to_status_id_str": "457009526655315968", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 04:10:43 +0000 2014", + "id": 457008298139877376, + "id_str": "457008298139877376", + "text": "@nprnews @solak real attention-grabbing headline", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457006755315085313, + "in_reply_to_status_id_str": "457006755315085313", + "in_reply_to_user_id": 5392522, + "in_reply_to_user_id_str": "5392522", + "in_reply_to_screen_name": "nprnews", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 04:09:00 +0000 2014", + "id": 457007864822112256, + "id_str": "457007864822112256", + "text": "@pajp that was the letter I was TRYING to get my keyboard to make, actually.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457007738460319744, + "in_reply_to_status_id_str": "457007738460319744", + "in_reply_to_user_id": 5253351, + "in_reply_to_user_id_str": "5253351", + "in_reply_to_screen_name": "pajp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 04:03:27 +0000 2014", + "id": 457006466638315520, + "id_str": "457006466638315520", + "text": "@Talen_Lee I am… intimately familiar with the emoji selection 🏩", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457003957236137984, + "in_reply_to_status_id_str": "457003957236137984", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 03:54:24 +0000 2014", + "id": 457004189701656576, + "id_str": "457004189701656576", + "text": "@Talen_Lee the metaphor. Then I went to get the symbols because I know they’re there", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 457003957236137984, + "in_reply_to_status_id_str": "457003957236137984", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 03:50:24 +0000 2014", + "id": 457003184939364353, + "id_str": "457003184939364353", + "text": "I feel like I might have missed a supernova on Infosec Twitter and now there’s only the rapidly expanding dust cloud remnants 🌟💥", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 5, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 03:36:54 +0000 2014", + "id": 456999785161969664, + "id_str": "456999785161969664", + "text": "@vogon why is this in my source code http://t.co/tLIpez9Zr1", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 6326912, + "in_reply_to_user_id_str": "6326912", + "in_reply_to_screen_name": "vogon", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 02:36:23 +0000 2014", + "id": 456984558534402048, + "id_str": "456984558534402048", + "text": "@ShadowTodd I was back in Virginia about a week ago. Wondered why I ever thought it was a tolerable place to live.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456984059814477826, + "in_reply_to_status_id_str": "456984059814477826", + "in_reply_to_user_id": 168769498, + "in_reply_to_user_id_str": "168769498", + "in_reply_to_screen_name": "ShadowTodd", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 02:33:21 +0000 2014", + "id": 456983795057848320, + "id_str": "456983795057848320", + "text": "@ErrataRob @SteveD3 well hang on let’s see how p is allocated —\n\nOh gods this function, I can see eternity", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456982914329477121, + "in_reply_to_status_id_str": "456982914329477121", + "in_reply_to_user_id": 15300995, + "in_reply_to_user_id_str": "15300995", + "in_reply_to_screen_name": "ErrataRob", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 02:27:50 +0000 2014", + "id": 456982404448931840, + "id_str": "456982404448931840", + "text": "@matthew_d_green casual semidisclosure is MY job!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456982132066639872, + "in_reply_to_status_id_str": "456982132066639872", + "in_reply_to_user_id": 106234268, + "in_reply_to_user_id_str": "106234268", + "in_reply_to_screen_name": "matthew_d_green", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 02:21:49 +0000 2014", + "id": 456980889717993472, + "id_str": "456980889717993472", + "text": "@szakulec it’s not that it needs more than a handful to begin with. It’s that it’s got the same serious legacy issues of all ancient code", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456979851959074816, + "in_reply_to_status_id_str": "456979851959074816", + "in_reply_to_user_id": 151256073, + "in_reply_to_user_id_str": "151256073", + "in_reply_to_screen_name": "szakulec", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 02:11:59 +0000 2014", + "id": 456978416521469952, + "id_str": "456978416521469952", + "text": "@antumbral It was destroyed “English”", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456969710429413376, + "in_reply_to_status_id_str": "456969710429413376", + "in_reply_to_user_id": 19837512, + "in_reply_to_user_id_str": "19837512", + "in_reply_to_screen_name": "antumbral", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 02:05:28 +0000 2014", + "id": 456976778817699840, + "id_str": "456976778817699840", + "text": "@_wirepair the “good” news is that it seems whoever wrote the pamphlets does not have real authority", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456963267613585408, + "in_reply_to_status_id_str": "456963267613585408", + "in_reply_to_user_id": 253384212, + "in_reply_to_user_id_str": "253384212", + "in_reply_to_screen_name": "_wirepair", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 02:01:00 +0000 2014", + "id": 456975653938950144, + "id_str": "456975653938950144", + "text": "@matthew_d_green um, should someone maybe mention that to them?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456960435845996544, + "in_reply_to_status_id_str": "456960435845996544", + "in_reply_to_user_id": 106234268, + "in_reply_to_user_id_str": "106234268", + "in_reply_to_screen_name": "matthew_d_green", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 01:47:44 +0000 2014", + "id": 456972315251998720, + "id_str": "456972315251998720", + "text": "RT @matthew_d_green: The BSD people have just discovered that OpenSSL uses the RSA private key as last-ditch entropy for the RNG. Welcome t…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Fri Apr 18 00:52:20 +0000 2014", + "id": 456958370323656704, + "id_str": "456958370323656704", + "text": "The BSD people have just discovered that OpenSSL uses the RSA private key as last-ditch entropy for the RNG. Welcome to our hell, guys.", + "source": "Twitter for iPad", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 106234268, + "id_str": "106234268" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 505, + "favorite_count": 204, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 505, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 01:24:45 +0000 2014", + "id": 456966528865677312, + "id_str": "456966528865677312", + "text": "@zhuowei @m1sp @WhiteMageSlave as well they ought.\n\nPS researched the HECK out of stuff to construct all the missing backstory", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456965768916115456, + "in_reply_to_status_id_str": "456965768916115456", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 01:21:30 +0000 2014", + "id": 456965710741520384, + "id_str": "456965710741520384", + "text": "@Talen_Lee @m1sp @WhiteMageSlave no", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 456965497007771648, + "in_reply_to_status_id_str": "456965497007771648", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Fri Apr 18 01:19:41 +0000 2014", + "id": 456965254153777152, + "id_str": "456965254153777152", + "text": "@m1sp @WhiteMageSlave breaking: local author literally can't not include unhappy arranged marriages in fiction http://t.co/FN43Pb8HbS", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 00:42:44 +0000 2014", + "id": 456955956715589633, + "id_str": "456955956715589633", + "text": "@fdiesch Eth and Thorn Go To Hollywood", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 456955700225519616, + "in_reply_to_status_id_str": "456955700225519616", + "in_reply_to_user_id": 118788187, + "in_reply_to_user_id_str": "118788187", + "in_reply_to_screen_name": "fdiesch", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 00:33:10 +0000 2014", + "id": 456953549067669504, + "id_str": "456953549067669504", + "text": "@munin I think you mean ðe þorn character.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 456952554417823744, + "in_reply_to_status_id_str": "456952554417823744", + "in_reply_to_user_id": 8513352, + "in_reply_to_user_id_str": "8513352", + "in_reply_to_screen_name": "munin", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 00:31:17 +0000 2014", + "id": 456953074305994752, + "id_str": "456953074305994752", + "text": "@conniptions I'm still writing the story, it just won't look as much like a Scandinavian ideal that never existed", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 456952566916857857, + "in_reply_to_status_id_str": "456952566916857857", + "in_reply_to_user_id": 17874311, + "in_reply_to_user_id_str": "17874311", + "in_reply_to_screen_name": "conniptions", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 00:27:57 +0000 2014", + "id": 456952234425978880, + "id_str": "456952234425978880", + "text": "I was going to use ð and þ in a story to be all edgy but I give up.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 8, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 00:23:10 +0000 2014", + "id": 456951031881285632, + "id_str": "456951031881285632", + "text": "@conniptions that is to say, attempting to translate this f/v difference to th/th results in no meaningful distinction that I can pick up on", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 456950154764226560, + "in_reply_to_status_id_str": "456950154764226560", + "in_reply_to_user_id": 17874311, + "in_reply_to_user_id_str": "17874311", + "in_reply_to_screen_name": "conniptions", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 00:20:31 +0000 2014", + "id": 456950366614351872, + "id_str": "456950366614351872", + "text": "@conniptions so someone else is trying to tell me but to borrow a colorful foreign metaphor this is sausage to me", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 456950154764226560, + "in_reply_to_status_id_str": "456950154764226560", + "in_reply_to_user_id": 17874311, + "in_reply_to_user_id_str": "17874311", + "in_reply_to_screen_name": "conniptions", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 00:13:09 +0000 2014", + "id": 456948512178319360, + "id_str": "456948512178319360", + "text": "@conniptions maybe??? I know I had difficulties saying \"th\" when I was little", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 456947967204003840, + "in_reply_to_status_id_str": "456947967204003840", + "in_reply_to_user_id": 17874311, + "in_reply_to_user_id_str": "17874311", + "in_reply_to_screen_name": "conniptions", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 00:12:10 +0000 2014", + "id": 456948263040868352, + "id_str": "456948263040868352", + "text": "@dildog I'm, uh, pretty sure they don't mean \"Thai\" when they say there's two distinct \"th\" in English :')", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 456948050632507393, + "in_reply_to_status_id_str": "456948050632507393", + "in_reply_to_user_id": 14159456, + "in_reply_to_user_id_str": "14159456", + "in_reply_to_screen_name": "dildog", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 00:06:38 +0000 2014", + "id": 456946871916068864, + "id_str": "456946871916068864", + "text": "@vogon listen, normcore, \"feel my own larynx vibrate\" is not on my life goals", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 456946703707287552, + "in_reply_to_status_id_str": "456946703707287552", + "in_reply_to_user_id": 6326912, + "in_reply_to_user_id_str": "6326912", + "in_reply_to_screen_name": "vogon", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 18 00:02:37 +0000 2014", + "id": 456945861814415360, + "id_str": "456945861814415360", + "text": "Ugh. I literally can't hear/tell/feel the difference. And I'm supposed to be good at this language. http://t.co/cM3p6Mpyld", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 17 23:27:21 +0000 2014", + "id": 456936984494481408, + "id_str": "456936984494481408", + "text": "@dveditz I understood the arrangement to be the other way around, of bringing ice (the mining of which was his occupation) to the palace", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 456935681315467264, + "in_reply_to_status_id_str": "456935681315467264", + "in_reply_to_user_id": 208275301, + "in_reply_to_user_id_str": "208275301", + "in_reply_to_screen_name": "dveditz", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 17 23:18:18 +0000 2014", + "id": 456934706349895680, + "id_str": "456934706349895680", + "text": "@rwllr she did not lose her powers, she gained control over them", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 456934620052082690, + "in_reply_to_status_id_str": "456934620052082690", + "in_reply_to_user_id": 107181768, + "in_reply_to_user_id_str": "107181768", + "in_reply_to_screen_name": "rwllr", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 17 23:12:53 +0000 2014", + "id": 456933343159144450, + "id_str": "456933343159144450", + "text": "Wait what was the point of appointing Kristoff as royal ice deliverer when Elsa can generate infinite ice for free #LiteralFridgeLogic", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 6, + "favorite_count": 9, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 17 22:56:56 +0000 2014", + "id": 456929329088577537, + "id_str": "456929329088577537", + "text": "@frkbmb … it’s probably your fault specifically when block lookups fail because you’re overloading the system !", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456910128323649536, + "in_reply_to_status_id_str": "456910128323649536", + "in_reply_to_user_id": 540721095, + "in_reply_to_user_id_str": "540721095", + "in_reply_to_screen_name": "frkbmb", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 17 22:55:15 +0000 2014", + "id": 456928908412473344, + "id_str": "456928908412473344", + "text": "@Shufflejoy actually that same character gets kicked around a bit for his general rudeness long-term I promise.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456900296875048961, + "in_reply_to_status_id_str": "456900296875048961", + "in_reply_to_user_id": 1567524811, + "in_reply_to_user_id_str": "1567524811", + "in_reply_to_screen_name": "Shufflejoy", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 17 22:53:03 +0000 2014", + "id": 456928351870283776, + "id_str": "456928351870283776", + "text": "@MrToph hey it’s that guy", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456903341583261696, + "in_reply_to_status_id_str": "456903341583261696", + "in_reply_to_user_id": 16521087, + "in_reply_to_user_id_str": "16521087", + "in_reply_to_screen_name": "MrToph", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 17 22:51:52 +0000 2014", + "id": 456928057165889536, + "id_str": "456928057165889536", + "text": "@Shufflejoy my novel has a non-consensual kiss but then I throw the kisser in the dungeon like two pages later so…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456900296875048961, + "in_reply_to_status_id_str": "456900296875048961", + "in_reply_to_user_id": 1567524811, + "in_reply_to_user_id_str": "1567524811", + "in_reply_to_screen_name": "Shufflejoy", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 17 22:47:24 +0000 2014", + "id": 456926931108519937, + "id_str": "456926931108519937", + "text": "@vogon @zip I’m at least 62% sure I’ve only hit on you but I can’t be positive, I say a lot of rude things on twitter apparently", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456926545630621696, + "in_reply_to_status_id_str": "456926545630621696", + "in_reply_to_user_id": 6326912, + "in_reply_to_user_id_str": "6326912", + "in_reply_to_screen_name": "vogon", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 17 22:45:35 +0000 2014", + "id": 456926474084573185, + "id_str": "456926474084573185", + "text": "@zip @vogon so should I hold off on the ironic twitter flirting?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456887022980841472, + "in_reply_to_status_id_str": "456887022980841472", + "in_reply_to_user_id": 38917404, + "in_reply_to_user_id_str": "38917404", + "in_reply_to_screen_name": "zip", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 17 22:37:45 +0000 2014", + "id": 456924501293678592, + "id_str": "456924501293678592", + "text": "@zauspar @m1sp oh hey I have some", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456874839479840769, + "in_reply_to_status_id_str": "456874839479840769", + "in_reply_to_user_id": 216571343, + "in_reply_to_user_id_str": "216571343", + "in_reply_to_screen_name": "zauspar", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 17 22:34:52 +0000 2014", + "id": 456923775687491584, + "id_str": "456923775687491584", + "text": "@zauspar once you’re backed by an organization well known to them who does this routinely, it’s hard NOT to get the clearance", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456864901823078400, + "in_reply_to_status_id_str": "456864901823078400", + "in_reply_to_user_id": 216571343, + "in_reply_to_user_id_str": "216571343", + "in_reply_to_screen_name": "zauspar", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 17 22:05:38 +0000 2014", + "id": 456916419662602240, + "id_str": "456916419662602240", + "text": "@ClaudioDekker what, one retweet and six favorites? bah :p", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 456916052044423168, + "in_reply_to_status_id_str": "456916052044423168", + "in_reply_to_user_id": 78721809, + "in_reply_to_user_id_str": "78721809", + "in_reply_to_screen_name": "ClaudioDekker", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 17 22:02:54 +0000 2014", + "id": 456915732744663040, + "id_str": "456915732744663040", + "text": "@Myriachan the shortcuts for unusual letters are mapped differently on the different varieties of English keyboards in OSX", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 456915443123380224, + "in_reply_to_status_id_str": "456915443123380224", + "in_reply_to_user_id": 1556497868, + "in_reply_to_user_id_str": "1556497868", + "in_reply_to_screen_name": "Myriachan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 17 21:39:26 +0000 2014", + "id": 456909825637908480, + "id_str": "456909825637908480", + "text": "Also I just figured out the reason I couldn't type a þ is that this entire time, my keyboard has been set not to US English but Romaji", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 17 21:36:27 +0000 2014", + "id": 456909076837187584, + "id_str": "456909076837187584", + "text": "Zeroeth world problems: getting WAY too many helpful answers", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 4, + "favorite_count": 10, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 17 21:33:06 +0000 2014", + "id": 456908232532180994, + "id_str": "456908232532180994", + "text": "RT @ClaudioDekker: @0xabad1dea THATS LIKE THE SAFEST PASSWORD EVER", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Thu Apr 17 21:32:15 +0000 2014", + "id": 456908017926426624, + "id_str": "456908017926426624", + "text": "@0xabad1dea THATS LIKE THE SAFEST PASSWORD EVER", + "source": "Tweetbot for Mac", + "truncated": false, + "in_reply_to_status_id": 456907754884841472, + "in_reply_to_status_id_str": "456907754884841472", + "in_reply_to_user_id": 126030998, + "in_reply_to_user_id_str": "126030998", + "in_reply_to_screen_name": "0xabad1dea", + "user": { + "id": 78721809, + "id_str": "78721809" + }, + "geo": null, + "coordinates": null, + "place": { + "id": "0880ac2ea98368ba", + "url": "https://api.twitter.com/1.1/geo/id/0880ac2ea98368ba.json", + "place_type": "neighborhood", + "name": "District 7", + "full_name": "District 7", + "country_code": "NL", + "country": "Nederland", + "contained_within": [ + + ], + "bounding_box": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.69033506597979, + 52.4948277525159 + ], + [ + 4.74773901990242, + 52.4948277525159 + ], + [ + 4.74773901990242, + 52.5287568845006 + ], + [ + 4.69033506597979, + 52.5287568845006 + ] + ] + ] + }, + "attributes": { + } + }, + "contributors": null, + "retweet_count": 1, + "favorite_count": 8, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "0xabad1dea", + "name": "Melissa", + "id": 126030998, + "id_str": "126030998", + "indices": [ + 0, + 11 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 1, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 17 21:31:12 +0000 2014", + "id": 456907754884841472, + "id_str": "456907754884841472", + "text": "The answer is \"it's a delta, but not the delta you get when typing in Greek, it's a separate codepoint styled differently.\"", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 17 21:29:16 +0000 2014", + "id": 456907268517163009, + "id_str": "456907268517163009", + "text": "@mistydemeo the problem compounds! http://t.co/XFM1knn3Zg", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 456907143069708288, + "in_reply_to_status_id_str": "456907143069708288", + "in_reply_to_user_id": 296622166, + "in_reply_to_user_id_str": "296622166", + "in_reply_to_screen_name": "mistydemeo", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 17 21:28:02 +0000 2014", + "id": 456906959589888000, + "id_str": "456906959589888000", + "text": "Well NOW how do I find out what ∂ (alt-d on OSX keyboard) means? http://t.co/a0tCDVxO2Q", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 11, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 17 21:20:36 +0000 2014", + "id": 456905087030669312, + "id_str": "456905087030669312", + "text": "@Chispshot @eevee I know, but as eevee is lexyeevee on tumblr it's just so suspicious :p", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 456904845182914560, + "in_reply_to_status_id_str": "456904845182914560", + "in_reply_to_user_id": 615624105, + "in_reply_to_user_id_str": "615624105", + "in_reply_to_screen_name": "Chispshot", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 17 21:18:34 +0000 2014", + "id": 456904574126026752, + "id_str": "456904574126026752", + "text": "@eevee is \"zexyeevee\" on Twitch Plays you, or just someone with a very similar taste in nicks?", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 14412937, + "in_reply_to_user_id_str": "14412937", + "in_reply_to_screen_name": "eevee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 17 21:03:28 +0000 2014", + "id": 456900776288604161, + "id_str": "456900776288604161", + "text": "Hmm, I wonder how Twitch Plays Pokemon is doing.\n\n*opens tab*\n\nHahahahahahahahahahahaha\n\n*closes tab, leaves*", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 7, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 17 20:14:00 +0000 2014", + "id": 456888326201810945, + "id_str": "456888326201810945", + "text": "@m1sp am I thinking too hard about elves? http://t.co/96JTyYmPMv", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 17 17:54:18 +0000 2014", + "id": 456853170522959872, + "id_str": "456853170522959872", + "text": "@zauspar o/", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456853114243411968, + "in_reply_to_status_id_str": "456853114243411968", + "in_reply_to_user_id": 216571343, + "in_reply_to_user_id_str": "216571343", + "in_reply_to_screen_name": "zauspar", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Thu Apr 17 17:23:52 +0000 2014", + "id": 456845512453259264, + "id_str": "456845512453259264", + "text": "RT @quinnnorton: That thing when @TheOnion is just true. http://t.co/Lqun2hD8Ls", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Thu Apr 17 17:21:11 +0000 2014", + "id": 456844837715591169, + "id_str": "456844837715591169", + "text": "That thing when @TheOnion is just true. http://t.co/Lqun2hD8Ls", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 38975663, + "id_str": "38975663" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 59, + "favorite_count": 34, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/Lqun2hD8Ls", + "expanded_url": "http://www.theonion.com/articles/fbi-uncovers-alqaeda-plot-to-just-sit-back-and-enj,35788/", + "display_url": "theonion.com/articles/fbi-u…", + "indices": [ + 40, + 62 + ] + } + ], + "user_mentions": [ + { + "screen_name": "TheOnion", + "name": "The Onion", + "id": 14075928, + "id_str": "14075928", + "indices": [ + 16, + 25 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 59, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 17 17:21:48 +0000 2014", + "id": 456844990535438336, + "id_str": "456844990535438336", + "text": "@Talen_Lee I was used as a tool to raise average grades at a failing ghetto school. And that was my first breakdown, age 11!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456844693045669889, + "in_reply_to_status_id_str": "456844693045669889", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 17 17:20:19 +0000 2014", + "id": 456844618319929344, + "id_str": "456844618319929344", + "text": "@zygen you’re the atheist goat who offers children poor-quality literature", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456844370252005377, + "in_reply_to_status_id_str": "456844370252005377", + "in_reply_to_user_id": 12843182, + "in_reply_to_user_id_str": "12843182", + "in_reply_to_screen_name": "zygen", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 17 17:19:11 +0000 2014", + "id": 456844331937460224, + "id_str": "456844331937460224", + "text": "@solak @Talen_Lee only some of them. I bounced between public and private a few times.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456844190912348160, + "in_reply_to_status_id_str": "456844190912348160", + "in_reply_to_user_id": 2397051, + "in_reply_to_user_id_str": "2397051", + "in_reply_to_screen_name": "solak", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 17 17:18:09 +0000 2014", + "id": 456844074793041920, + "id_str": "456844074793041920", + "text": "RT @vogon: \"you do not want to do the things this program does\", a commit to remove OpenSSL's entire DES implementation http://t.co/PVZOqLF…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Thu Apr 17 17:12:11 +0000 2014", + "id": 456842573655851008, + "id_str": "456842573655851008", + "text": "\"you do not want to do the things this program does\", a commit to remove OpenSSL's entire DES implementation http://t.co/PVZOqLFqQX", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 6326912, + "id_str": "6326912" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 26, + "favorite_count": 13, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/PVZOqLFqQX", + "expanded_url": "http://freshbsd.org/commit/openbsd/c8c555837399afe48ac0eff30307932e5dde4c36", + "display_url": "freshbsd.org/commit/openbsd…", + "indices": [ + 109, + 131 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 26, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 17 17:16:57 +0000 2014", + "id": 456843770995032064, + "id_str": "456843770995032064", + "text": "@Talen_Lee which was SUPER GREAT for my anxiety let me tell you", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456843451834040320, + "in_reply_to_status_id_str": "456843451834040320", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 17 17:16:46 +0000 2014", + "id": 456843725906251776, + "id_str": "456843725906251776", + "text": "@Talen_Lee I was repeatedly assured about stuff like everyone gets fired if they’re ever late even once no matter the reason", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456843451834040320, + "in_reply_to_status_id_str": "456843451834040320", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 17 17:15:01 +0000 2014", + "id": 456843286414491648, + "id_str": "456843286414491648", + "text": "@Talen_Lee … but maybe that’s just my intelligence privilege ?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456840343204265984, + "in_reply_to_status_id_str": "456840343204265984", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 17 17:14:40 +0000 2014", + "id": 456843195012227073, + "id_str": "456843195012227073", + "text": ".@Talen_Lee everything a school teacher ever told me about “when you’re in college” or “when you have a job” was completely wrong.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456840343204265984, + "in_reply_to_status_id_str": "456840343204265984", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 15, + "favorite_count": 18, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 17 15:38:25 +0000 2014", + "id": 456818973636435969, + "id_str": "456818973636435969", + "text": "RT @holmesdm: What the fuck: Jews ordered to \"register\" in east Ukraine or else they'll be deported and lose their property http://t.co/jh8…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Thu Apr 17 15:27:43 +0000 2014", + "id": 456816279915991040, + "id_str": "456816279915991040", + "text": "What the fuck: Jews ordered to \"register\" in east Ukraine or else they'll be deported and lose their property http://t.co/jh8BH8OMUw", + "source": "TweetDeck", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 26757325, + "id_str": "26757325" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 187, + "favorite_count": 30, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/jh8BH8OMUw", + "expanded_url": "http://www.usatoday.com/story/news/world/2014/04/17/jews-ordered-to-register-in-east-ukraine/7816951/", + "display_url": "usatoday.com/story/news/wor…", + "indices": [ + 110, + 132 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 187, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 17 15:28:17 +0000 2014", + "id": 456816422845693952, + "id_str": "456816422845693952", + "text": "@Viss why do people always showcase guns laid out on their blankies??", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456813984071442432, + "in_reply_to_status_id_str": "456813984071442432", + "in_reply_to_user_id": 2269701, + "in_reply_to_user_id_str": "2269701", + "in_reply_to_screen_name": "Viss", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 17 14:57:19 +0000 2014", + "id": 456808629971079170, + "id_str": "456808629971079170", + "text": "RT @einaros: Netcraft's #heartbleed-check browser extension sends urls you visit, with querystring, via HTTP. Major privacy no-no! http://t…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Thu Apr 17 14:30:01 +0000 2014", + "id": 456801761924087808, + "id_str": "456801761924087808", + "text": "Netcraft's #heartbleed-check browser extension sends urls you visit, with querystring, via HTTP. Major privacy no-no! http://t.co/UNSBiBFM6Q", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 25980758, + "id_str": "25980758" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 57, + "favorite_count": 17, + "entities": { + "hashtags": [ + { + "text": "heartbleed", + "indices": [ + 11, + 22 + ] + } + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ], + "media": [ + { + "id": 456801761945059328, + "id_str": "456801761945059328", + "indices": [ + 118, + 140 + ], + "media_url": "http://pbs.twimg.com/media/BlbiyEGCAAAFTv4.png", + "media_url_https": "https://pbs.twimg.com/media/BlbiyEGCAAAFTv4.png", + "url": "http://t.co/UNSBiBFM6Q", + "display_url": "pic.twitter.com/UNSBiBFM6Q", + "expanded_url": "http://twitter.com/einaros/status/456801761924087808/photo/1", + "type": "photo", + "sizes": { + "medium": { + "w": 600, + "h": 269, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 1024, + "h": 459, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 152, + "resize": "fit" + } + } + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 57, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 17 14:48:25 +0000 2014", + "id": 456806391403929600, + "id_str": "456806391403929600", + "text": "@m1sp @zhuowei my Special Talent!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456806107126562816, + "in_reply_to_status_id_str": "456806107126562816", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 17 14:25:43 +0000 2014", + "id": 456800677055168512, + "id_str": "456800677055168512", + "text": "@jaythenerdkid @Shufflejoy “turn the other cheek” comes from the religion of suffering and self-sacrifice", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456777535649370112, + "in_reply_to_status_id_str": "456777535649370112", + "in_reply_to_user_id": 24793165, + "in_reply_to_user_id_str": "24793165", + "in_reply_to_screen_name": "jaythenerdkid", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 17 14:22:40 +0000 2014", + "id": 456799910516760576, + "id_str": "456799910516760576", + "text": "RT @tedunangst: Fun fact: You can compile OpenSSL with NO_OLD_ASN1. You can also compile with NO_ASN1_OLD. They're not the same.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue Apr 15 19:59:25 +0000 2014", + "id": 456159882199060480, + "id_str": "456159882199060480", + "text": "Fun fact: You can compile OpenSSL with NO_OLD_ASN1. You can also compile with NO_ASN1_OLD. They're not the same.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 53588173, + "id_str": "53588173" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 111, + "favorite_count": 48, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 111, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 17 13:14:22 +0000 2014", + "id": 456782723886370816, + "id_str": "456782723886370816", + "text": "@m1sp @zhuowei just to make sure — because I flooded you— you saw the one where she expositions her backstory?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456782510609805313, + "in_reply_to_status_id_str": "456782510609805313", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 17 13:12:55 +0000 2014", + "id": 456782356427190272, + "id_str": "456782356427190272", + "text": "@m1sp @zhuowei that’s what the cute parka is for!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456706419215966208, + "in_reply_to_status_id_str": "456706419215966208", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 17 05:15:37 +0000 2014", + "id": 456662241631158272, + "id_str": "456662241631158272", + "text": "@nickdepetrillo D: wtf don’t die", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456658047880798209, + "in_reply_to_status_id_str": "456658047880798209", + "in_reply_to_user_id": 40222002, + "in_reply_to_user_id_str": "40222002", + "in_reply_to_screen_name": "nickdepetrillo", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 17 05:07:06 +0000 2014", + "id": 456660098786394113, + "id_str": "456660098786394113", + "text": "RT @nelhage: While testing cert revocation, a @stripe developer instead accidentally created a page that reliably crashes the entire Chrome…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Thu Apr 17 05:00:46 +0000 2014", + "id": 456658506230153216, + "id_str": "456658506230153216", + "text": "While testing cert revocation, a @stripe developer instead accidentally created a page that reliably crashes the entire Chrome browser.", + "source": "Twitter for Android", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 11806222, + "id_str": "11806222" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 20, + "favorite_count": 23, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "stripe", + "name": "Stripe", + "id": 102812444, + "id_str": "102812444", + "indices": [ + 33, + 40 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 20, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 17 04:23:13 +0000 2014", + "id": 456649052902285312, + "id_str": "456649052902285312", + "text": "@kivikakk Does everyone get this religious holiday off except me who is not a practitioner anyway?!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456647964744630273, + "in_reply_to_status_id_str": "456647964744630273", + "in_reply_to_user_id": 67204542, + "in_reply_to_user_id_str": "67204542", + "in_reply_to_screen_name": "kivikakk", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 17 04:09:40 +0000 2014", + "id": 456645644363370496, + "id_str": "456645644363370496", + "text": "@apelad @vogon but I must admit I’m unsure why anyone would want to make “the time the firstborn all died” into a fashion statement", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456643276305477632, + "in_reply_to_status_id_str": "456643276305477632", + "in_reply_to_user_id": 6688272, + "in_reply_to_user_id_str": "6688272", + "in_reply_to_screen_name": "apelad", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 17 04:07:44 +0000 2014", + "id": 456645159908679682, + "id_str": "456645159908679682", + "text": "RT @hynek: Remember that OpenSSL-shirt y’all RTed?\n\nTurns out you can have one and support the OpenSSL Foundation: http://t.co/USst1Ghyhw", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Wed Apr 16 23:15:24 +0000 2014", + "id": 456571592345001985, + "id_str": "456571592345001985", + "text": "Remember that OpenSSL-shirt y’all RTed?\n\nTurns out you can have one and support the OpenSSL Foundation: http://t.co/USst1Ghyhw", + "source": "Tweetbot for Mac", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 14914177, + "id_str": "14914177" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 53, + "favorite_count": 25, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/USst1Ghyhw", + "expanded_url": "http://teespring.com/iheartbleedopenssl", + "display_url": "teespring.com/iheartbleedope…", + "indices": [ + 104, + 126 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 53, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 17 04:06:41 +0000 2014", + "id": 456644892978970625, + "id_str": "456644892978970625", + "text": "@zhuowei @m1sp it sure is ! \n\nBut me, let characters have what they want? Ha ha ha!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456644430087221248, + "in_reply_to_status_id_str": "456644430087221248", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 17 04:05:58 +0000 2014", + "id": 456644713425031170, + "id_str": "456644713425031170", + "text": "@apelad @vogon actually just start reading here it’s 6000% cooler than a normal bible I promise http://t.co/TP5Hsvk0i8", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456643276305477632, + "in_reply_to_status_id_str": "456643276305477632", + "in_reply_to_user_id": 6688272, + "in_reply_to_user_id_str": "6688272", + "in_reply_to_screen_name": "apelad", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 17 04:05:18 +0000 2014", + "id": 456644544583319552, + "id_str": "456644544583319552", + "text": "@apelad @vogon locusts, frogs, water to blood, boils on skin, animals drop dead, darkness, children die, um, hail, these are out of order,", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456643276305477632, + "in_reply_to_status_id_str": "456643276305477632", + "in_reply_to_user_id": 6688272, + "in_reply_to_user_id_str": "6688272", + "in_reply_to_screen_name": "apelad", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 17 04:01:36 +0000 2014", + "id": 456643614467043328, + "id_str": "456643614467043328", + "text": "@zhuowei @m1sp it’s quite possible! Clarion has studied the matter for a long time but she knows she doesn’t know everything.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456642937485398016, + "in_reply_to_status_id_str": "456642937485398016", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 17 03:56:31 +0000 2014", + "id": 456642337150468096, + "id_str": "456642337150468096", + "text": "@zhuowei @m1sp and she wouldn’t be able to salvage the aspect and wait for the next good candidate", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456641688715292674, + "in_reply_to_status_id_str": "456641688715292674", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 17 03:55:55 +0000 2014", + "id": 456642184242941952, + "id_str": "456642184242941952", + "text": "@zhuowei @m1sp the key thing being that she had a specific plan for Houri which would be spoiled if she gets stuck as a little girl", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456641688715292674, + "in_reply_to_status_id_str": "456641688715292674", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 17 03:50:49 +0000 2014", + "id": 456640901641560066, + "id_str": "456640901641560066", + "text": "@zhuowei @m1sp … this experience probably informed her decision to NOT aspect Houri at age 12 :)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456640376644698113, + "in_reply_to_status_id_str": "456640376644698113", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 17 03:50:12 +0000 2014", + "id": 456640744153817088, + "id_str": "456640744153817088", + "text": "@zhuowei @m1sp but I don’t think she *intended* for Naniki to get herself killed almost immediately", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456640376644698113, + "in_reply_to_status_id_str": "456640376644698113", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 17 03:49:44 +0000 2014", + "id": 456640629917745152, + "id_str": "456640629917745152", + "text": "@zhuowei @m1sp star compatibility is pretty low density; undying compatibility is VERY low density. And that’s kind of Clarion’s thing", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456640376644698113, + "in_reply_to_status_id_str": "456640376644698113", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 17 03:46:58 +0000 2014", + "id": 456639932505677824, + "id_str": "456639932505677824", + "text": "@zhuowei @m1sp Clarion is a horrible person who happens to be really cute.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456639704234872834, + "in_reply_to_status_id_str": "456639704234872834", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 17 03:28:34 +0000 2014", + "id": 456635302761603073, + "id_str": "456635302761603073", + "text": "@zhuowei @m1sp all right I think I know what happened. http://t.co/3ZknTSwtOT", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456628326585479168, + "in_reply_to_status_id_str": "456628326585479168", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 17 03:06:54 +0000 2014", + "id": 456629848652271616, + "id_str": "456629848652271616", + "text": "@JobVranish yeah pretty much.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456629167245631488, + "in_reply_to_status_id_str": "456629167245631488", + "in_reply_to_user_id": 328266085, + "in_reply_to_user_id_str": "328266085", + "in_reply_to_screen_name": "JobVranish", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 17 03:06:17 +0000 2014", + "id": 456629694230573056, + "id_str": "456629694230573056", + "text": "@zhuowei I’m not being coy, I’m just not 100% ready to commit to how exactly she got it, there are a few possibilities", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456629220844646401, + "in_reply_to_status_id_str": "456629220844646401", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 17 03:05:48 +0000 2014", + "id": 456629574067974145, + "id_str": "456629574067974145", + "text": "@zhuowei but they’d have already been dead of something else immediately beforehand. Someone she met on a hunting trip, maybe.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456629220844646401, + "in_reply_to_status_id_str": "456629220844646401", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 17 03:01:44 +0000 2014", + "id": 456628548795514880, + "id_str": "456628548795514880", + "text": "@zhuowei those are not the only two possibilities! She could have gotten it from a lesser, distinctly more mortal wielder of the aspect", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456628326585479168, + "in_reply_to_status_id_str": "456628326585479168", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 17 02:55:51 +0000 2014", + "id": 456627069472866304, + "id_str": "456627069472866304", + "text": "@demize95 when I had this problem I went rogue and turned in a three-page limerick collection instead. Professor graded it as poetry.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456626722356461568, + "in_reply_to_status_id_str": "456626722356461568", + "in_reply_to_user_id": 137133048, + "in_reply_to_user_id_str": "137133048", + "in_reply_to_screen_name": "demize95", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 17 02:52:41 +0000 2014", + "id": 456626272160849920, + "id_str": "456626272160849920", + "text": "Researching the weak nuclear force. For my fantasy novel. We take magic rather seriously around here", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 9, + "favorite_count": 19, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 17 02:50:00 +0000 2014", + "id": 456625595149844480, + "id_str": "456625595149844480", + "text": "@Shufflejoy @Talen_Lee lewd", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456625288114208768, + "in_reply_to_status_id_str": "456625288114208768", + "in_reply_to_user_id": 1567524811, + "in_reply_to_user_id_str": "1567524811", + "in_reply_to_screen_name": "Shufflejoy", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Thu Apr 17 02:48:36 +0000 2014", + "id": 456625244149542912, + "id_str": "456625244149542912", + "text": "@zhuowei @WhiteMageSlave @m1sp 🌟", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456624325945081856, + "in_reply_to_status_id_str": "456624325945081856", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Thu Apr 17 02:36:09 +0000 2014", + "id": 456622112354996226, + "id_str": "456622112354996226", + "text": "@WhiteMageSlave @m1sp humans succumb quickly because the first thing to fail is the most delicate part of the immune system", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456621566332125185, + "in_reply_to_status_id_str": "456621566332125185", + "in_reply_to_user_id": 90791634, + "in_reply_to_user_id_str": "90791634", + "in_reply_to_screen_name": "WhiteMageSlave", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 17 02:35:36 +0000 2014", + "id": 456621972542066691, + "id_str": "456621972542066691", + "text": "@WhiteMageSlave @m1sp but, just as a guess, it would take a lot more sustained contact to destroy a plant, they’re not as finicky", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456621566332125185, + "in_reply_to_status_id_str": "456621566332125185", + "in_reply_to_user_id": 90791634, + "in_reply_to_user_id_str": "90791634", + "in_reply_to_screen_name": "WhiteMageSlave", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 17 02:34:43 +0000 2014", + "id": 456621749816135682, + "id_str": "456621749816135682", + "text": "@WhiteMageSlave @m1sp oh probably. I imagine her clothes also eventually wear through…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456621566332125185, + "in_reply_to_status_id_str": "456621566332125185", + "in_reply_to_user_id": 90791634, + "in_reply_to_user_id_str": "90791634", + "in_reply_to_screen_name": "WhiteMageSlave", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 17 02:27:34 +0000 2014", + "id": 456619952774983681, + "id_str": "456619952774983681", + "text": "@antumbral @m1sp SUCCESS.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456618809818746881, + "in_reply_to_status_id_str": "456618809818746881", + "in_reply_to_user_id": 19837512, + "in_reply_to_user_id_str": "19837512", + "in_reply_to_screen_name": "antumbral", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "it" + }, + { + "created_at": "Thu Apr 17 02:21:38 +0000 2014", + "id": 456618459388862464, + "id_str": "456618459388862464", + "text": "@m1sp psst wake up, I bring world lore http://t.co/9yat0KZck0", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 17 02:16:30 +0000 2014", + "id": 456617166939234304, + "id_str": "456617166939234304", + "text": "@Shufflejoy @trans_lucency I think they fell prey to Generic Hotness, it’s also basically the same face as Rapunzel but I never saw that one", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456616816819716096, + "in_reply_to_status_id_str": "456616816819716096", + "in_reply_to_user_id": 1567524811, + "in_reply_to_user_id_str": "1567524811", + "in_reply_to_screen_name": "Shufflejoy", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 17 02:13:54 +0000 2014", + "id": 456616510719397888, + "id_str": "456616510719397888", + "text": "@trans_lucency @Shufflejoy on the other hand there WAS facial variety in the minor characters, and yet Elsa, Anna, their mother, identical??", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456616293399941121, + "in_reply_to_status_id_str": "456616293399941121", + "in_reply_to_user_id": 515761746, + "in_reply_to_user_id_str": "515761746", + "in_reply_to_screen_name": "trans_lucency", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 17 02:11:35 +0000 2014", + "id": 456615926637412353, + "id_str": "456615926637412353", + "text": "@trans_lucency @Shufflejoy I was kinda annoyed at how the minor characters attending the ball had obviously polygonal, non-simulated hair", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456614266888388608, + "in_reply_to_status_id_str": "456614266888388608", + "in_reply_to_user_id": 515761746, + "in_reply_to_user_id_str": "515761746", + "in_reply_to_screen_name": "trans_lucency", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 17 01:00:31 +0000 2014", + "id": 456598043672838144, + "id_str": "456598043672838144", + "text": "@antumbral http://t.co/ZSjCkkSO4V", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456596472650158080, + "in_reply_to_status_id_str": "456596472650158080", + "in_reply_to_user_id": 19837512, + "in_reply_to_user_id_str": "19837512", + "in_reply_to_screen_name": "antumbral", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Thu Apr 17 00:52:41 +0000 2014", + "id": 456596071318163456, + "id_str": "456596071318163456", + "text": "@gdead @antumbral oh, most things not checking CRLs was a conscious design decision because everything is terrible 😓", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456595835988344832, + "in_reply_to_status_id_str": "456595835988344832", + "in_reply_to_user_id": 18778944, + "in_reply_to_user_id_str": "18778944", + "in_reply_to_screen_name": "gdead", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 17 00:51:11 +0000 2014", + "id": 456595693105184768, + "id_str": "456595693105184768", + "text": "RT @antumbral: @0xabad1dea I wonder how many pieces of software were actually tested to ensure they could handle a CRL that big", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Thu Apr 17 00:50:51 +0000 2014", + "id": 456595612062871552, + "id_str": "456595612062871552", + "text": "@0xabad1dea I wonder how many pieces of software were actually tested to ensure they could handle a CRL that big", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 456595328045576192, + "in_reply_to_status_id_str": "456595328045576192", + "in_reply_to_user_id": 126030998, + "in_reply_to_user_id_str": "126030998", + "in_reply_to_screen_name": "0xabad1dea", + "user": { + "id": 19837512, + "id_str": "19837512" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 11, + "favorite_count": 9, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "0xabad1dea", + "name": "Melissa", + "id": 126030998, + "id_str": "126030998", + "indices": [ + 0, + 11 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 11, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 17 00:49:43 +0000 2014", + "id": 456595328045576192, + "id_str": "456595328045576192", + "text": "I don’t think any of the founders of the internet as we know it anticipated revoking thirty thousand certificates in one day", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 33, + "favorite_count": 24, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 17 00:48:57 +0000 2014", + "id": 456595131399802880, + "id_str": "456595131399802880", + "text": "RT @SteveD3: RT [REDACTED]: Check out the CRL data from today https://t.co/yXXLWe6aNJ crazy spike! <- Damn", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Thu Apr 17 00:37:52 +0000 2014", + "id": 456592341877260288, + "id_str": "456592341877260288", + "text": "RT [REDACTED]: Check out the CRL data from today https://t.co/yXXLWe6aNJ crazy spike! <- Damn", + "source": "TweetDeck", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 16626073, + "id_str": "16626073" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 52, + "favorite_count": 9, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "https://t.co/yXXLWe6aNJ", + "expanded_url": "https://isc.sans.edu/crls.html", + "display_url": "isc.sans.edu/crls.html", + "indices": [ + 49, + 72 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 52, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 17 00:14:08 +0000 2014", + "id": 456586369674932224, + "id_str": "456586369674932224", + "text": "@demize95 I read the whole thread I assure you :)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456586119463702528, + "in_reply_to_status_id_str": "456586119463702528", + "in_reply_to_user_id": 137133048, + "in_reply_to_user_id_str": "137133048", + "in_reply_to_screen_name": "demize95", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 17 00:13:50 +0000 2014", + "id": 456586297562263552, + "id_str": "456586297562263552", + "text": "@Jennimason0990 yes. She said she had a critical vuln in r*cksp*ce and they noticed", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456586017227538435, + "in_reply_to_status_id_str": "456586017227538435", + "in_reply_to_user_id": 485288297, + "in_reply_to_user_id_str": "485288297", + "in_reply_to_screen_name": "Jennimason0990", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 17 00:12:17 +0000 2014", + "id": 456585905969455104, + "id_str": "456585905969455104", + "text": "@demize95 now I’m trying to remember which Brandon she means…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 137133048, + "in_reply_to_user_id_str": "137133048", + "in_reply_to_screen_name": "demize95", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 17 00:11:17 +0000 2014", + "id": 456585655376543744, + "id_str": "456585655376543744", + "text": "@abby_ebooks dangit Abby you’re going to attract a security team again.\n\nHi everyone this is a bot move along", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456582850771288065, + "in_reply_to_status_id_str": "456582850771288065", + "in_reply_to_user_id": 789336668, + "in_reply_to_user_id_str": "789336668", + "in_reply_to_screen_name": "abby_ebooks", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 16 23:49:25 +0000 2014", + "id": 456580152860762112, + "id_str": "456580152860762112", + "text": "@armcannon aww.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456580066739118080, + "in_reply_to_status_id_str": "456580066739118080", + "in_reply_to_user_id": 86775045, + "in_reply_to_user_id_str": "86775045", + "in_reply_to_screen_name": "armcannon", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Wed Apr 16 23:32:58 +0000 2014", + "id": 456576012554211328, + "id_str": "456576012554211328", + "text": "@ShaneHudson @puellavulnerata I wonder how many distinct yahoo users are represented in those two bleeds which I totally didn’t do?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456575120555773952, + "in_reply_to_status_id_str": "456575120555773952", + "in_reply_to_user_id": 16168410, + "in_reply_to_user_id_str": "16168410", + "in_reply_to_screen_name": "ShaneHudson", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 16 23:20:45 +0000 2014", + "id": 456572937508622336, + "id_str": "456572937508622336", + "text": "@SeanMP I guess if it was tightly packed data that could come from just running the test? Maybe?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456572663897411587, + "in_reply_to_status_id_str": "456572663897411587", + "in_reply_to_user_id": 33440133, + "in_reply_to_user_id_str": "33440133", + "in_reply_to_screen_name": "SeanMP", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 16 23:19:47 +0000 2014", + "id": 456572694037671936, + "id_str": "456572694037671936", + "text": "@antumbral but Canada…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456572485551394816, + "in_reply_to_status_id_str": "456572485551394816", + "in_reply_to_user_id": 19837512, + "in_reply_to_user_id_str": "19837512", + "in_reply_to_screen_name": "antumbral", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "tr" + }, + { + "created_at": "Wed Apr 16 23:17:16 +0000 2014", + "id": 456572058495754241, + "id_str": "456572058495754241", + "text": "Hold on. Did this guy actually decide to gather taxpayer info or was that just what he happened to get from a test? http://t.co/faNzRtWeAe", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 15, + "favorite_count": 10, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 16 23:14:03 +0000 2014", + "id": 456571249448062978, + "id_str": "456571249448062978", + "text": "@zhuowei Chakori sure knows how to pick them :’)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456570263321075712, + "in_reply_to_status_id_str": "456570263321075712", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 16 23:08:20 +0000 2014", + "id": 456569811804254209, + "id_str": "456569811804254209", + "text": "@zhuowei -- damage that is the artificing process and still be distinctly \"them\"-like. But being literally aspected is not necessary.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 456568820677607425, + "in_reply_to_status_id_str": "456568820677607425", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 16 23:07:49 +0000 2014", + "id": 456569682376392705, + "id_str": "456569682376392705", + "text": "@zhuowei ... ! I love this theory :p it's a bit more nuanced. Not everyone's soul is, hmm, vibrant enough to persist across the massive --", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 456568820677607425, + "in_reply_to_status_id_str": "456568820677607425", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 16 22:58:15 +0000 2014", + "id": 456567273965096960, + "id_str": "456567273965096960", + "text": "@zhuowei well that doesn't mean she's RIGHT (about the other thing, not her name).", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 456566097831919617, + "in_reply_to_status_id_str": "456566097831919617", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 16 22:47:08 +0000 2014", + "id": 456564475101859840, + "id_str": "456564475101859840", + "text": "@zhuowei extremely deliberate - she's very insistent that is in fact her name :)", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 456563388147974144, + "in_reply_to_status_id_str": "456563388147974144", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 16 21:50:27 +0000 2014", + "id": 456550212069101568, + "id_str": "456550212069101568", + "text": "RT @campcreek: get a load of this sexist sign at my library - way to tell kids some books are for girls & some are for boys -_- http://t.co…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Wed Apr 16 17:14:27 +0000 2014", + "id": 456480753149165568, + "id_str": "456480753149165568", + "text": "get a load of this sexist sign at my library - way to tell kids some books are for girls & some are for boys -_- http://t.co/07oK6A4ZaN", + "source": "Camera on iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 16832251, + "id_str": "16832251" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 242, + "favorite_count": 56, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ], + "media": [ + { + "id": 456480752947826689, + "id_str": "456480752947826689", + "indices": [ + 117, + 139 + ], + "media_url": "http://pbs.twimg.com/media/BlW-04ZCEAE7MJF.jpg", + "media_url_https": "https://pbs.twimg.com/media/BlW-04ZCEAE7MJF.jpg", + "url": "http://t.co/07oK6A4ZaN", + "display_url": "pic.twitter.com/07oK6A4ZaN", + "expanded_url": "http://twitter.com/campcreek/status/456480753149165568/photo/1", + "type": "photo", + "sizes": { + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 600, + "h": 804, + "resize": "fit" + }, + "large": { + "w": 716, + "h": 960, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 456, + "resize": "fit" + } + } + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 242, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 16 21:45:11 +0000 2014", + "id": 456548888355147776, + "id_str": "456548888355147776", + "text": "@m1sp http://t.co/NdltRlnNC7", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456533251050311680, + "in_reply_to_status_id_str": "456533251050311680", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Wed Apr 16 21:30:32 +0000 2014", + "id": 456545201041854464, + "id_str": "456545201041854464", + "text": "@bobpoekert @hinanawi_chan @demize95 yes. Me. Me personally and specifically. I am at fault for all of OpenSSL. I shall die in infamy", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 456544907507662848, + "in_reply_to_status_id_str": "456544907507662848", + "in_reply_to_user_id": 191945961, + "in_reply_to_user_id_str": "191945961", + "in_reply_to_screen_name": "bobpoekert", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 16 21:14:24 +0000 2014", + "id": 456541141559562240, + "id_str": "456541141559562240", + "text": "@zhuowei @m1sp there shouldn't be!", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 456540778542555136, + "in_reply_to_status_id_str": "456540778542555136", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 16 21:12:13 +0000 2014", + "id": 456540590977466370, + "id_str": "456540590977466370", + "text": "@zhuowei @m1sp I think it's simplest to stick to the idea that people can't unintentionally hurt themselves directly with their own aspect", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 456540048930791425, + "in_reply_to_status_id_str": "456540048930791425", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 16 21:04:23 +0000 2014", + "id": 456538620707364867, + "id_str": "456538620707364867", + "text": "@zhuowei @m1sp this is going to require Research!", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 456537794320412672, + "in_reply_to_status_id_str": "456537794320412672", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 16 20:44:38 +0000 2014", + "id": 456533647898603520, + "id_str": "456533647898603520", + "text": "@m1sp but she’s emotionally twelve forever and desperately lonely and gloms onto every person she meets and OH GODS I’M SO MEAN", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456533251050311680, + "in_reply_to_status_id_str": "456533251050311680", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 16 20:39:34 +0000 2014", + "id": 456532371622227968, + "id_str": "456532371622227968", + "text": "@m1sp http://t.co/NbXHWGbLZ1", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456529157925523456, + "in_reply_to_status_id_str": "456529157925523456", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Wed Apr 16 20:27:35 +0000 2014", + "id": 456529359352762368, + "id_str": "456529359352762368", + "text": "@m1sp BAHAHAHA PERFECT.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456529157925523456, + "in_reply_to_status_id_str": "456529157925523456", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "tl" + }, + { + "created_at": "Wed Apr 16 20:22:33 +0000 2014", + "id": 456528091066540032, + "id_str": "456528091066540032", + "text": "@m1sp http://t.co/dPc3sEzuqj \n\nWhat if people get sick around her and she REALLY DOESN’T KNOW WHY", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456527210384334850, + "in_reply_to_status_id_str": "456527210384334850", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 16 20:17:24 +0000 2014", + "id": 456526794586206208, + "id_str": "456526794586206208", + "text": "@m1sp http://t.co/Qy8QfJeRXh", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456525774703431680, + "in_reply_to_status_id_str": "456525774703431680", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Wed Apr 16 20:04:38 +0000 2014", + "id": 456523583636770819, + "id_str": "456523583636770819", + "text": "@m1sp how about a goddess of the weak nuclear force", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 16 19:49:38 +0000 2014", + "id": 456519806385012736, + "id_str": "456519806385012736", + "text": "@EmilySpectacle @Shufflejoy look into universities. My legally blind friend got an IT job at one which provided walking-distance housing", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456513882807222272, + "in_reply_to_status_id_str": "456513882807222272", + "in_reply_to_user_id": 1585213766, + "in_reply_to_user_id_str": "1585213766", + "in_reply_to_screen_name": "EmilySpectacle", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 16 19:46:42 +0000 2014", + "id": 456519069907165186, + "id_str": "456519069907165186", + "text": "RT @matthew_d_green: In the future we will all be Satoshi Nakamoto for 15 minutes.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Wed Apr 16 19:15:25 +0000 2014", + "id": 456511195898331136, + "id_str": "456511195898331136", + "text": "In the future we will all be Satoshi Nakamoto for 15 minutes.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 106234268, + "id_str": "106234268" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 48, + "favorite_count": 48, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 48, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 16 19:40:57 +0000 2014", + "id": 456517624348688385, + "id_str": "456517624348688385", + "text": "@thegrugq who, @chriseng ? He insists he’s not my boss.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456517447038668801, + "in_reply_to_status_id_str": "456517447038668801", + "in_reply_to_user_id": 18983429, + "in_reply_to_user_id_str": "18983429", + "in_reply_to_screen_name": "thegrugq", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 16 19:37:06 +0000 2014", + "id": 456516652033507328, + "id_str": "456516652033507328", + "text": "@thegrugq gosh, however did you figure out what codebase I was subtweeting??", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456516425738227712, + "in_reply_to_status_id_str": "456516425738227712", + "in_reply_to_user_id": 18983429, + "in_reply_to_user_id_str": "18983429", + "in_reply_to_screen_name": "thegrugq", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 16 19:34:13 +0000 2014", + "id": 456515927220031488, + "id_str": "456515927220031488", + "text": "RT @runasand: Edward Snowden’s e-mail provider loses appeal over secret keys: http://t.co/yLYbkJvYEv", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Wed Apr 16 17:26:57 +0000 2014", + "id": 456483897971183617, + "id_str": "456483897971183617", + "text": "Edward Snowden’s e-mail provider loses appeal over secret keys: http://t.co/yLYbkJvYEv", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 19959946, + "id_str": "19959946" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 29, + "favorite_count": 4, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/yLYbkJvYEv", + "expanded_url": "http://www.wired.com/2014/04/lavabit-ruling/", + "display_url": "wired.com/2014/04/lavabi…", + "indices": [ + 64, + 86 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 29, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 16 19:30:40 +0000 2014", + "id": 456515034286288897, + "id_str": "456515034286288897", + "text": "@demize95 yeah I get to the page, it doesn’t refuse", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456514562850684930, + "in_reply_to_status_id_str": "456514562850684930", + "in_reply_to_user_id": 137133048, + "in_reply_to_user_id_str": "137133048", + "in_reply_to_screen_name": "demize95", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 16 19:30:01 +0000 2014", + "id": 456514871480180736, + "id_str": "456514871480180736", + "text": "@demize95 I didn’t tell it to accept the bad trust actually, lemme try that now", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456514562850684930, + "in_reply_to_status_id_str": "456514562850684930", + "in_reply_to_user_id": 137133048, + "in_reply_to_user_id_str": "137133048", + "in_reply_to_screen_name": "demize95", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 16 19:29:21 +0000 2014", + "id": 456514703611535361, + "id_str": "456514703611535361", + "text": "@Myriachan @ckeithray some of us are conditioned to always prefer crash bugs because they’re loud and unlikely to bleed 64kb of ram 8)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456514483892924416, + "in_reply_to_status_id_str": "456514483892924416", + "in_reply_to_user_id": 1556497868, + "in_reply_to_user_id_str": "1556497868", + "in_reply_to_screen_name": "Myriachan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 16 19:28:24 +0000 2014", + "id": 456514465165369344, + "id_str": "456514465165369344", + "text": "@demize95 @hiramiyaa well, no, it can just fake it, like it can fake everything and anything, because you’re owned", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456514288845193216, + "in_reply_to_status_id_str": "456514288845193216", + "in_reply_to_user_id": 137133048, + "in_reply_to_user_id_str": "137133048", + "in_reply_to_screen_name": "demize95", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 16 19:27:47 +0000 2014", + "id": 456514307581173760, + "id_str": "456514307581173760", + "text": "@blazingcrimson I’m pretty sure a change log fulfills that and can even come with crazy things like time stamps and reasons", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456514081977954304, + "in_reply_to_status_id_str": "456514081977954304", + "in_reply_to_user_id": 1531220689, + "in_reply_to_user_id_str": "1531220689", + "in_reply_to_screen_name": "blazingcrimson", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 16 19:27:04 +0000 2014", + "id": 456514127083470848, + "id_str": "456514127083470848", + "text": "@hiramiyaa @demize95 at that point you are so beyond that being your primary problem", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456513987392569344, + "in_reply_to_status_id_str": "456513987392569344", + "in_reply_to_user_id": 18446424, + "in_reply_to_user_id_str": "18446424", + "in_reply_to_screen_name": "hiramiyaa", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 16 19:26:33 +0000 2014", + "id": 456513998251257856, + "id_str": "456513998251257856", + "text": "@demize95 I’m pretty sure it’s simply checking trust chain before revocation", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456513889719435264, + "in_reply_to_status_id_str": "456513889719435264", + "in_reply_to_user_id": 137133048, + "in_reply_to_user_id_str": "137133048", + "in_reply_to_screen_name": "demize95", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 16 19:23:52 +0000 2014", + "id": 456513325115777026, + "id_str": "456513325115777026", + "text": "@demize95 mobile safari is primarily concerned with the lack of trust.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456479094750736384, + "in_reply_to_status_id_str": "456479094750736384", + "in_reply_to_user_id": 137133048, + "in_reply_to_user_id_str": "137133048", + "in_reply_to_screen_name": "demize95", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 16 19:13:01 +0000 2014", + "id": 456510590786093056, + "id_str": "456510590786093056", + "text": "@MechMK1 in fact if you dig in, all three comments appeared in one commit 15 years ago", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 456509994523820034, + "in_reply_to_status_id_str": "456509994523820034", + "in_reply_to_user_id": 81556825, + "in_reply_to_user_id_str": "81556825", + "in_reply_to_screen_name": "MechMK1", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 16 19:11:26 +0000 2014", + "id": 456510195061911552, + "id_str": "456510195061911552", + "text": "@MechMK1 those comments suggest a complete and total lack of auditable version control structure at the time they were made.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 456509994523820034, + "in_reply_to_status_id_str": "456509994523820034", + "in_reply_to_user_id": 81556825, + "in_reply_to_user_id_str": "81556825", + "in_reply_to_screen_name": "MechMK1", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 16 19:10:16 +0000 2014", + "id": 456509898616881152, + "id_str": "456509898616881152", + "text": "@MechMK1 is this a \"plz explain\" question mark or \"oh gods why did you make me look at that\" question mark", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 456509684443140096, + "in_reply_to_status_id_str": "456509684443140096", + "in_reply_to_user_id": 81556825, + "in_reply_to_user_id_str": "81556825", + "in_reply_to_screen_name": "MechMK1", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 16 19:05:26 +0000 2014", + "id": 456508682923020288, + "id_str": "456508682923020288", + "text": "version control dot html https://t.co/vpXU1mi2t0", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 13, + "favorite_count": 15, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "fi" + }, + { + "created_at": "Wed Apr 16 18:55:45 +0000 2014", + "id": 456506248708382721, + "id_str": "456506248708382721", + "text": "@tottinge @ckeithray what about it? We're talking about Spanish and you're talking about French :)", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 456505065948209152, + "in_reply_to_status_id_str": "456505065948209152", + "in_reply_to_user_id": 17308319, + "in_reply_to_user_id_str": "17308319", + "in_reply_to_screen_name": "tottinge", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 16 18:43:52 +0000 2014", + "id": 456503256454156289, + "id_str": "456503256454156289", + "text": "@ckeithray friend, if the government issuing a warning was all it took to get our customers to stop hitting themselves...", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 456502082489434113, + "in_reply_to_status_id_str": "456502082489434113", + "in_reply_to_user_id": 20831678, + "in_reply_to_user_id_str": "20831678", + "in_reply_to_screen_name": "ckeithray", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 16 18:19:50 +0000 2014", + "id": 456497206913024000, + "id_str": "456497206913024000", + "text": "@mirell I don't know. As long as they conform to spec I don't have to worry about it (assuming the call doesn't get inlined)", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 456496243540119553, + "in_reply_to_status_id_str": "456496243540119553", + "in_reply_to_user_id": 12733992, + "in_reply_to_user_id_str": "12733992", + "in_reply_to_screen_name": "mirell", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 16 18:08:47 +0000 2014", + "id": 456494427893010433, + "id_str": "456494427893010433", + "text": "@doubleyewdee no, no, I do, for those my job is mostly to check that they handle the case of them not finding a sane answer", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 456494008978530304, + "in_reply_to_status_id_str": "456494008978530304", + "in_reply_to_user_id": 12090712, + "in_reply_to_user_id_str": "12090712", + "in_reply_to_screen_name": "doubleyewdee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 16 18:06:35 +0000 2014", + "id": 456493872965619714, + "id_str": "456493872965619714", + "text": "I think strcat might be my least favorite function in the world in terms of verifying it's being used safely", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 7, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 16 17:20:20 +0000 2014", + "id": 456482236397678592, + "id_str": "456482236397678592", + "text": "if you're going to write a function that superficially appears to have no callers, please document inline where/how it's actually called", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 4, + "favorite_count": 11, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 16 17:00:37 +0000 2014", + "id": 456477271121874944, + "id_str": "456477271121874944", + "text": "@vathpela what you don't know is that I already spent hours on this working from the binary's point of view :)", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 456476954879721472, + "in_reply_to_status_id_str": "456476954879721472", + "in_reply_to_user_id": 14446089, + "in_reply_to_user_id_str": "14446089", + "in_reply_to_screen_name": "vathpela", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 16 16:56:24 +0000 2014", + "id": 456476211049271297, + "id_str": "456476211049271297", + "text": "@bobpoekert probably, but, I was just trying to look at their code on github, this is a dumb problem to have", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 456475133230600193, + "in_reply_to_status_id_str": "456475133230600193", + "in_reply_to_user_id": 191945961, + "in_reply_to_user_id_str": "191945961", + "in_reply_to_screen_name": "bobpoekert", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 16 16:50:40 +0000 2014", + "id": 456474770825940992, + "id_str": "456474770825940992", + "text": "\"Smart\" code searching utils completely miss instances of the strings I asked for in OpenSSL because of weirdness with macros :(", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 16 15:35:28 +0000 2014", + "id": 456455845367136256, + "id_str": "456455845367136256", + "text": "@mikko you feeling all right? https://t.co/JJWs9QSq7k", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456455156625076224, + "in_reply_to_status_id_str": "456455156625076224", + "in_reply_to_user_id": 23566038, + "in_reply_to_user_id_str": "23566038", + "in_reply_to_screen_name": "mikko", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 16 15:34:34 +0000 2014", + "id": 456455618204008448, + "id_str": "456455618204008448", + "text": "@ra6bit checking the morning news, Boston Strong guy describes himself as an artist, and his brother describes him as unwell. Exciting!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 537333195, + "in_reply_to_user_id_str": "537333195", + "in_reply_to_screen_name": "ra6bit", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 16 15:30:35 +0000 2014", + "id": 456454617119748097, + "id_str": "456454617119748097", + "text": "@attrc @ex509 disgusting and unsanitary!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456454399049478144, + "in_reply_to_status_id_str": "456454399049478144", + "in_reply_to_user_id": 119293693, + "in_reply_to_user_id_str": "119293693", + "in_reply_to_screen_name": "attrc", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 16 15:20:37 +0000 2014", + "id": 456452108892372992, + "id_str": "456452108892372992", + "text": "@m1sp http://t.co/css8I5Qj1C", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456420896563949569, + "in_reply_to_status_id_str": "456420896563949569", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Wed Apr 16 14:56:59 +0000 2014", + "id": 456446161415442434, + "id_str": "456446161415442434", + "text": "RT @BBCNewsAsia: N Korean officials visit London hair salon over Kim Jong-un's picture http://t.co/xH4RyxW1St http://t.co/S6sehzy9hc", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Wed Apr 16 04:27:30 +0000 2014", + "id": 456287745195786240, + "id_str": "456287745195786240", + "text": "N Korean officials visit London hair salon over Kim Jong-un's picture http://t.co/xH4RyxW1St http://t.co/S6sehzy9hc", + "source": "TweetDeck", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 1642135962, + "id_str": "1642135962" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1179, + "favorite_count": 410, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/xH4RyxW1St", + "expanded_url": "http://bbc.in/1hFkPuw", + "display_url": "bbc.in/1hFkPuw", + "indices": [ + 70, + 92 + ] + } + ], + "user_mentions": [ + + ], + "media": [ + { + "id": 456287744839258112, + "id_str": "456287744839258112", + "indices": [ + 93, + 115 + ], + "media_url": "http://pbs.twimg.com/media/BlUPSVKCEAAQXaA.jpg", + "media_url_https": "https://pbs.twimg.com/media/BlUPSVKCEAAQXaA.jpg", + "url": "http://t.co/S6sehzy9hc", + "display_url": "pic.twitter.com/S6sehzy9hc", + "expanded_url": "http://twitter.com/BBCNewsAsia/status/456287745195786240/photo/1", + "type": "photo", + "sizes": { + "medium": { + "w": 600, + "h": 338, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 191, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 624, + "h": 351, + "resize": "fit" + } + } + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 1179, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 16 14:43:55 +0000 2014", + "id": 456442871730565120, + "id_str": "456442871730565120", + "text": "@m1sp aspect of friendship! http://t.co/h0Q5nvsmlZ", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456442105976483840, + "in_reply_to_status_id_str": "456442105976483840", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 6, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 16 14:39:49 +0000 2014", + "id": 456441839667527680, + "id_str": "456441839667527680", + "text": "@m1sp lol I still have no idea what her aspect is", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456367518454542336, + "in_reply_to_status_id_str": "456367518454542336", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 16 04:50:03 +0000 2014", + "id": 456293419699429376, + "id_str": "456293419699429376", + "text": "@Talen_Lee @m1sp I very specifically insist she is actually my character from the roguelike Unreal World", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 456292353003626496, + "in_reply_to_status_id_str": "456292353003626496", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 16 04:36:55 +0000 2014", + "id": 456290115523190784, + "id_str": "456290115523190784", + "text": "@m1sp due to a sequence of events this character demanded I develop her from a vague idea http://t.co/a0OpZphzUF", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 16 02:32:47 +0000 2014", + "id": 456258874614378496, + "id_str": "456258874614378496", + "text": ".@ComicNeue Ah! I think I found it! That tiny button way over there on that other page! Of course not “check for available downloads” :( thx", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456257287632719872, + "in_reply_to_status_id_str": "456257287632719872", + "in_reply_to_user_id": 48633265, + "in_reply_to_user_id_str": "48633265", + "in_reply_to_screen_name": "ComicNeue", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 16 02:29:45 +0000 2014", + "id": 456258111616335872, + "id_str": "456258111616335872", + "text": "@geekgrrl nope :(", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456258015633477632, + "in_reply_to_status_id_str": "456258015633477632", + "in_reply_to_user_id": 10771142, + "in_reply_to_user_id_str": "10771142", + "in_reply_to_screen_name": "geekgrrl", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "lv" + }, + { + "created_at": "Wed Apr 16 02:27:37 +0000 2014", + "id": 456257575697518592, + "id_str": "456257575697518592", + "text": "I can see the movie in my purchase history. iTunes will only download the “making of” extra and not the movie itself :\\", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 16 02:24:59 +0000 2014", + "id": 456256914209271809, + "id_str": "456256914209271809", + "text": "Um... why on earth can't I download a movie through iTunes on OSX which I bought and paid for on iPad? Yes, same Apple ID. Not a rental.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 16 01:59:22 +0000 2014", + "id": 456250465496600576, + "id_str": "456250465496600576", + "text": "@Talen_Lee I actually read multiple real world medieval treatises for writing the Veraldo family. Sword and small shield recommended.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456250107197812736, + "in_reply_to_status_id_str": "456250107197812736", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 16 01:56:26 +0000 2014", + "id": 456249729417244672, + "id_str": "456249729417244672", + "text": "@Talen_Lee but… crossbows drastically altered the medieval threatscape by empowering the rank and file against knights with minimal training", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456248793378193408, + "in_reply_to_status_id_str": "456248793378193408", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 16 01:17:27 +0000 2014", + "id": 456239917186564097, + "id_str": "456239917186564097", + "text": "RT @zhuowei: @winocm The best anti-piracy scheme: I uploaded a fake version of my app to a piracy site. It changes the user's wallpaper to …", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Wed Apr 16 01:16:31 +0000 2014", + "id": 456239683203506176, + "id_str": "456239683203506176", + "text": "@winocm The best anti-piracy scheme: I uploaded a fake version of my app to a piracy site. It changes the user's wallpaper to Justin Bieber.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 456238597935349761, + "in_reply_to_status_id_str": "456238597935349761", + "in_reply_to_user_id": 428413732, + "in_reply_to_user_id_str": "428413732", + "in_reply_to_screen_name": "winocm", + "user": { + "id": 383083538, + "id_str": "383083538" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 71, + "favorite_count": 59, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "winocm", + "name": "winocm", + "id": 428413732, + "id_str": "428413732", + "indices": [ + 0, + 7 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 71, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 16 01:14:03 +0000 2014", + "id": 456239063050489857, + "id_str": "456239063050489857", + "text": "@alt_m1sp the short chubby one and tall bony one are a sister and brother respectively", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456238885559746560, + "in_reply_to_status_id_str": "456238885559746560", + "in_reply_to_user_id": 2401670173, + "in_reply_to_user_id_str": "2401670173", + "in_reply_to_screen_name": "alt_m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 16 01:13:11 +0000 2014", + "id": 456238844086460417, + "id_str": "456238844086460417", + "text": "@winocm pass the “nuh-uh” message", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456238642344624128, + "in_reply_to_status_id_str": "456238642344624128", + "in_reply_to_user_id": 428413732, + "in_reply_to_user_id_str": "428413732", + "in_reply_to_screen_name": "winocm", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 16 00:57:13 +0000 2014", + "id": 456234827268620288, + "id_str": "456234827268620288", + "text": "@alt_m1sp for the record I love that Scandinavian comic’s art direction and world building but the characterization feels jarringly quirky", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 2401670173, + "in_reply_to_user_id_str": "2401670173", + "in_reply_to_screen_name": "alt_m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 16 00:52:49 +0000 2014", + "id": 456233720240828416, + "id_str": "456233720240828416", + "text": "@m1sp @RichardBarrell if you sponsor you get to upload a picture of a specific animal for them to use as a character reference", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 456233415172296704, + "in_reply_to_status_id_str": "456233415172296704", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 16 00:52:14 +0000 2014", + "id": 456233571645014017, + "id_str": "456233571645014017", + "text": "@m1sp @RichardBarrell extremely recent. The patreon just opened like a week ago. Should probably get in on it", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 456233415172296704, + "in_reply_to_status_id_str": "456233415172296704", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 16 00:52:14 +0000 2014", + "id": 456233571645014017, + "id_str": "456233571645014017", + "text": "@m1sp @RichardBarrell extremely recent. The patreon just opened like a week ago. Should probably get in on it", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 456233415172296704, + "in_reply_to_status_id_str": "456233415172296704", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 16 00:51:30 +0000 2014", + "id": 456233388160974848, + "id_str": "456233388160974848", + "text": "@alt_m1sp also my depiction of you in snow bundles reminds me of this :> girl http://t.co/k8FiZoJ6TG", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 456232082927140864, + "in_reply_to_status_id_str": "456232082927140864", + "in_reply_to_user_id": 2401670173, + "in_reply_to_user_id_str": "2401670173", + "in_reply_to_screen_name": "alt_m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 16 00:43:51 +0000 2014", + "id": 456231459632603137, + "id_str": "456231459632603137", + "text": "@alt_m1sp http://t.co/JBT31qRtiD", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456227763557376000, + "in_reply_to_status_id_str": "456227763557376000", + "in_reply_to_user_id": 2401670173, + "in_reply_to_user_id_str": "2401670173", + "in_reply_to_screen_name": "alt_m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Wed Apr 16 00:34:08 +0000 2014", + "id": 456229016924475393, + "id_str": "456229016924475393", + "text": "@alt_m1sp :3", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456227763557376000, + "in_reply_to_status_id_str": "456227763557376000", + "in_reply_to_user_id": 2401670173, + "in_reply_to_user_id_str": "2401670173", + "in_reply_to_screen_name": "alt_m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Wed Apr 16 00:33:23 +0000 2014", + "id": 456228826721177601, + "id_str": "456228826721177601", + "text": "@ra6bit also just had a thought... if my grandfather (cop in Winchester) were still alive, and had the chance... would probably shoot... ...", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 456226963762737152, + "in_reply_to_status_id_str": "456226963762737152", + "in_reply_to_user_id": 537333195, + "in_reply_to_user_id_str": "537333195", + "in_reply_to_screen_name": "ra6bit", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 16 00:29:53 +0000 2014", + "id": 456227944953036800, + "id_str": "456227944953036800", + "text": "@ra6bit imagine a real 'rist giving a backpack to a drunk college kid and saying \"hey you know what'd be really funny?...\"", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 456226963762737152, + "in_reply_to_status_id_str": "456226963762737152", + "in_reply_to_user_id": 537333195, + "in_reply_to_user_id_str": "537333195", + "in_reply_to_screen_name": "ra6bit", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 16 00:27:48 +0000 2014", + "id": 456227424254967808, + "id_str": "456227424254967808", + "text": "@jack_daniel enjoy. http://t.co/sqOow3hXr7", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456226758577369088, + "in_reply_to_status_id_str": "456226758577369088", + "in_reply_to_user_id": 7025212, + "in_reply_to_user_id_str": "7025212", + "in_reply_to_screen_name": "jack_daniel", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 16 00:21:33 +0000 2014", + "id": 456225851374596096, + "id_str": "456225851374596096", + "text": "@ra6bit two different instagrams at http://t.co/06PX7jZJOK", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456225625532301312, + "in_reply_to_status_id_str": "456225625532301312", + "in_reply_to_user_id": 537333195, + "in_reply_to_user_id_str": "537333195", + "in_reply_to_screen_name": "ra6bit", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 16 00:19:47 +0000 2014", + "id": 456225405209690112, + "id_str": "456225405209690112", + "text": "@MammonMachine @vogon I’m reminded of some rather unfortunate plot twists in my Dwarf Fortress.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456223460604530688, + "in_reply_to_status_id_str": "456223460604530688", + "in_reply_to_user_id": 107478141, + "in_reply_to_user_id_str": "107478141", + "in_reply_to_screen_name": "MammonMachine", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 16 00:17:27 +0000 2014", + "id": 456224816857899008, + "id_str": "456224816857899008", + "text": "@dandean @kaepora the fix for OpenSSL?!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456223283755487232, + "in_reply_to_status_id_str": "456223283755487232", + "in_reply_to_user_id": 9525212, + "in_reply_to_user_id_str": "9525212", + "in_reply_to_screen_name": "dandean", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 15 23:56:41 +0000 2014", + "id": 456219592655126528, + "id_str": "456219592655126528", + "text": "@ra6bit looking at the video I suspect it’s someone who got totally wasted", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 537333195, + "in_reply_to_user_id_str": "537333195", + "in_reply_to_screen_name": "ra6bit", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 15 23:54:14 +0000 2014", + "id": 456218976104640512, + "id_str": "456218976104640512", + "text": "@0xdeadbabe the race wasn’t actually today, I guess it’s all just set up ahead of time.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456217143399305216, + "in_reply_to_status_id_str": "456217143399305216", + "in_reply_to_user_id": 19806908, + "in_reply_to_user_id_str": "19806908", + "in_reply_to_screen_name": "0xdeadbabe", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 15 23:48:58 +0000 2014", + "id": 456217650876940288, + "id_str": "456217650876940288", + "text": "@captcarl13 music piracy, classic style", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456217229248712705, + "in_reply_to_status_id_str": "456217229248712705", + "in_reply_to_user_id": 25856211, + "in_reply_to_user_id_str": "25856211", + "in_reply_to_screen_name": "captcarl13", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 15 23:42:44 +0000 2014", + "id": 456216080621391872, + "id_str": "456216080621391872", + "text": "Hmm well look at that smug grin, definitely suspicious http://t.co/v3NPfXrvb7", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 6, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 15 23:41:19 +0000 2014", + "id": 456215724093341696, + "id_str": "456215724093341696", + "text": "RT @bostonpolice: Public Safety Alert: #BPD asking pedestrians & motorists to avoid the area in and around the Boston Marathon Finish Line.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue Apr 15 23:35:49 +0000 2014", + "id": 456214340090474496, + "id_str": "456214340090474496", + "text": "Public Safety Alert: #BPD asking pedestrians & motorists to avoid the area in and around the Boston Marathon Finish Line.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 19185333, + "id_str": "19185333" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 675, + "favorite_count": 126, + "entities": { + "hashtags": [ + { + "text": "BPD", + "indices": [ + 21, + 25 + ] + } + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 675, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 15 23:38:34 +0000 2014", + "id": 456215031332352000, + "id_str": "456215031332352000", + "text": "RT @ra6bit: New rule: Marathon hoaxers and copy cats get \"Irish people suck\" tattooed on their face and handcuffed to a bus in Southie.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue Apr 15 23:37:10 +0000 2014", + "id": 456214680416288768, + "id_str": "456214680416288768", + "text": "New rule: Marathon hoaxers and copy cats get \"Irish people suck\" tattooed on their face and handcuffed to a bus in Southie.", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 537333195, + "id_str": "537333195" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 7, + "favorite_count": 11, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 7, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 15 23:36:30 +0000 2014", + "id": 456214511402618880, + "id_str": "456214511402618880", + "text": "@Shufflejoy I’M EMITTING VERBAL CUES BUT I’M NOT SURE THEY’RE REACHING YOU", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456214361552343040, + "in_reply_to_status_id_str": "456214361552343040", + "in_reply_to_user_id": 1567524811, + "in_reply_to_user_id_str": "1567524811", + "in_reply_to_screen_name": "Shufflejoy", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 15 23:35:02 +0000 2014", + "id": 456214144081862656, + "id_str": "456214144081862656", + "text": "@Shufflejoy wtf \n\nFile a complaint against this professor if he doesn’t reveal it was all a psych out", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456212860742287361, + "in_reply_to_status_id_str": "456212860742287361", + "in_reply_to_user_id": 1567524811, + "in_reply_to_user_id_str": "1567524811", + "in_reply_to_screen_name": "Shufflejoy", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 15 23:32:46 +0000 2014", + "id": 456213574592241665, + "id_str": "456213574592241665", + "text": "@ra6bit sounds like copycat for glory nutjob", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456212782451806208, + "in_reply_to_status_id_str": "456212782451806208", + "in_reply_to_user_id": 537333195, + "in_reply_to_user_id_str": "537333195", + "in_reply_to_screen_name": "ra6bit", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 15 23:31:29 +0000 2014", + "id": 456213249042944000, + "id_str": "456213249042944000", + "text": "@subwwwtxt @ra6bit just as a heads up “Abby eBooks” is a bot and will engage with you infinitely if you keep mentioning her :)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 211354848, + "in_reply_to_user_id_str": "211354848", + "in_reply_to_screen_name": "subwwwtxt", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 15 23:29:31 +0000 2014", + "id": 456212755981148160, + "id_str": "456212755981148160", + "text": "@Shufflejoy WHAT THE HELL this is really 101 level stuff that blanket assertions about gender roles ARE the problem", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456212189653630976, + "in_reply_to_status_id_str": "456212189653630976", + "in_reply_to_user_id": 1567524811, + "in_reply_to_user_id_str": "1567524811", + "in_reply_to_screen_name": "Shufflejoy", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 15 23:26:45 +0000 2014", + "id": 456212058070347776, + "id_str": "456212058070347776", + "text": "@Shufflejoy did the PROFESSOR say that?\n\nIn a discussion about FEMINISM?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456211850594496512, + "in_reply_to_status_id_str": "456211850594496512", + "in_reply_to_user_id": 1567524811, + "in_reply_to_user_id_str": "1567524811", + "in_reply_to_screen_name": "Shufflejoy", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 15 23:26:01 +0000 2014", + "id": 456211875815227392, + "id_str": "456211875815227392", + "text": "@ra6bit …⁉️", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456211691668111360, + "in_reply_to_status_id_str": "456211691668111360", + "in_reply_to_user_id": 537333195, + "in_reply_to_user_id_str": "537333195", + "in_reply_to_screen_name": "ra6bit", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Tue Apr 15 23:22:59 +0000 2014", + "id": 456211112187285504, + "id_str": "456211112187285504", + "text": "@expir3dcow @mralext20 ah that’s the real Silk Road, bitcoin Silk Road was a little different :p", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456210981727649792, + "in_reply_to_status_id_str": "456210981727649792", + "in_reply_to_user_id": 2253276447, + "in_reply_to_user_id_str": "2253276447", + "in_reply_to_screen_name": "expir3dcow", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 15 23:22:00 +0000 2014", + "id": 456210863788392448, + "id_str": "456210863788392448", + "text": "@Shufflejoy do women somehow not have families????\n\n❓❓❓❓❓⁉️⁉️⁉️⁉️", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456209752188407809, + "in_reply_to_status_id_str": "456209752188407809", + "in_reply_to_user_id": 1567524811, + "in_reply_to_user_id_str": "1567524811", + "in_reply_to_screen_name": "Shufflejoy", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 15 23:19:57 +0000 2014", + "id": 456210349549551616, + "id_str": "456210349549551616", + "text": "@expir3dcow @mralext20 bitcoin is ideally suited to such people who want to avoid banks, for whatever reason.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456209764796493824, + "in_reply_to_status_id_str": "456209764796493824", + "in_reply_to_user_id": 2253276447, + "in_reply_to_user_id_str": "2253276447", + "in_reply_to_screen_name": "expir3dcow", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 15 23:19:28 +0000 2014", + "id": 456210227050721281, + "id_str": "456210227050721281", + "text": "@expir3dcow @mralext20 Also, some people do not trust any bank or any crime investigation group and want to handle it themselves", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456209764796493824, + "in_reply_to_status_id_str": "456209764796493824", + "in_reply_to_user_id": 2253276447, + "in_reply_to_user_id_str": "2253276447", + "in_reply_to_screen_name": "expir3dcow", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 15 23:18:49 +0000 2014", + "id": 456210062537531392, + "id_str": "456210062537531392", + "text": "@expir3dcow @mralext20 if you burn paper money it’s gone too :) but bitcoin has cryptographic verification of ownership etc.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456209764796493824, + "in_reply_to_status_id_str": "456209764796493824", + "in_reply_to_user_id": 2253276447, + "in_reply_to_user_id_str": "2253276447", + "in_reply_to_screen_name": "expir3dcow", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 15 23:17:11 +0000 2014", + "id": 456209649721544704, + "id_str": "456209649721544704", + "text": "@mralext20 @expir3dcow whether it’s more secure depends on what you do with money. It’s not for everyone.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456209425443725312, + "in_reply_to_status_id_str": "456209425443725312", + "in_reply_to_user_id": 905041434, + "in_reply_to_user_id_str": "905041434", + "in_reply_to_screen_name": "mralext20", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 15 23:14:17 +0000 2014", + "id": 456208923150671872, + "id_str": "456208923150671872", + "text": "@mralext20 @expir3dcow I’m not super ultra bitcoin expert but the excitement is rooted in different security/convenience features than $", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456208122613215233, + "in_reply_to_status_id_str": "456208122613215233", + "in_reply_to_user_id": 905041434, + "in_reply_to_user_id_str": "905041434", + "in_reply_to_screen_name": "mralext20", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 15 23:07:34 +0000 2014", + "id": 456207232817176576, + "id_str": "456207232817176576", + "text": "@subwwwtxt this recalls the story of the military base number being listed as Santa’s workshop", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456205372252889088, + "in_reply_to_status_id_str": "456205372252889088", + "in_reply_to_user_id": 211354848, + "in_reply_to_user_id_str": "211354848", + "in_reply_to_screen_name": "subwwwtxt", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 15 21:48:00 +0000 2014", + "id": 456187206936588288, + "id_str": "456187206936588288", + "text": "@DanlAMayer I prefer not to be opened as a general guideline", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456184940728553473, + "in_reply_to_status_id_str": "456184940728553473", + "in_reply_to_user_id": 382452715, + "in_reply_to_user_id_str": "382452715", + "in_reply_to_screen_name": "DanlAMayer", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 15 21:46:20 +0000 2014", + "id": 456186786188767234, + "id_str": "456186786188767234", + "text": "@RSWestmoreland genuinely unsure if real question or joking about how it can be a real question", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456186534300254208, + "in_reply_to_status_id_str": "456186534300254208", + "in_reply_to_user_id": 242595690, + "in_reply_to_user_id_str": "242595690", + "in_reply_to_screen_name": "RSWestmoreland", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 15 21:33:20 +0000 2014", + "id": 456183518012649473, + "id_str": "456183518012649473", + "text": "RT @landley: @0xabad1dea Sure it caught on, it means \"Thread Local Storage\".", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue Apr 15 21:32:52 +0000 2014", + "id": 456183400920276994, + "id_str": "456183400920276994", + "text": "@0xabad1dea Sure it caught on, it means \"Thread Local Storage\".", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 456181280246599680, + "in_reply_to_status_id_str": "456181280246599680", + "in_reply_to_user_id": 126030998, + "in_reply_to_user_id_str": "126030998", + "in_reply_to_screen_name": "0xabad1dea", + "user": { + "id": 14326287, + "id_str": "14326287" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 3, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "0xabad1dea", + "name": "MeliSSL ", + "id": 126030998, + "id_str": "126030998", + "indices": [ + 0, + 11 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 3, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 15 21:24:27 +0000 2014", + "id": 456181280246599680, + "id_str": "456181280246599680", + "text": "I’m gonna make MeliSSL into a real library just to contribute to the problem of the name TLS not catching on", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 8, + "favorite_count": 19, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 15 21:16:15 +0000 2014", + "id": 456179217953464321, + "id_str": "456179217953464321", + "text": "@an0va @armcannon I did not stop making chiptunes :), I just stopped trying to get feedback from any place remotely “scene”", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456177801284947968, + "in_reply_to_status_id_str": "456177801284947968", + "in_reply_to_user_id": 255636382, + "in_reply_to_user_id_str": "255636382", + "in_reply_to_screen_name": "an0va", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 15 21:06:57 +0000 2014", + "id": 456176877867380736, + "id_str": "456176877867380736", + "text": "@an0va @armcannon which led to me pretty much opting out of the chiptune community…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456164218295705601, + "in_reply_to_status_id_str": "456164218295705601", + "in_reply_to_user_id": 255636382, + "in_reply_to_user_id_str": "255636382", + "in_reply_to_screen_name": "an0va", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 15 21:06:37 +0000 2014", + "id": 456176795046645761, + "id_str": "456176795046645761", + "text": "@an0va @armcannon unfortunately several people were rather mean to me about doing chiptunes “wrong” when I was getting started", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456164218295705601, + "in_reply_to_status_id_str": "456164218295705601", + "in_reply_to_user_id": 255636382, + "in_reply_to_user_id_str": "255636382", + "in_reply_to_screen_name": "an0va", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 15 21:01:58 +0000 2014", + "id": 456175622428315650, + "id_str": "456175622428315650", + "text": "@lalanl @Shufflejoy slightly tangential but I’m genuinely unsure if I was “born” bi or not", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456161445135147009, + "in_reply_to_status_id_str": "456161445135147009", + "in_reply_to_user_id": 33812686, + "in_reply_to_user_id_str": "33812686", + "in_reply_to_screen_name": "lalanl", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 15 20:57:57 +0000 2014", + "id": 456174611861078016, + "id_str": "456174611861078016", + "text": ".@rgov INTO THE HARBOR YOU GO.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456174443992076289, + "in_reply_to_status_id_str": "456174443992076289", + "in_reply_to_user_id": 16185731, + "in_reply_to_user_id_str": "16185731", + "in_reply_to_screen_name": "rgov", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 15 20:54:59 +0000 2014", + "id": 456173866218708992, + "id_str": "456173866218708992", + "text": "@antumbral we’ve never not had Maps segfault at least once on a long trip.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456164186372841472, + "in_reply_to_status_id_str": "456164186372841472", + "in_reply_to_user_id": 19837512, + "in_reply_to_user_id_str": "19837512", + "in_reply_to_screen_name": "antumbral", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 15 20:53:18 +0000 2014", + "id": 456173442065526784, + "id_str": "456173442065526784", + "text": ".@ishmaelrufus I think most Americans don’t realize this thing with 🇺🇸 being every few hundred feet— as if you might forget— is kinda weird", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456172834016882688, + "in_reply_to_status_id_str": "456172834016882688", + "in_reply_to_user_id": 7204172, + "in_reply_to_user_id_str": "7204172", + "in_reply_to_screen_name": "ishmaelrufus", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 15 20:49:43 +0000 2014", + "id": 456172538448474112, + "id_str": "456172538448474112", + "text": "Only about half of the flagpoles around here got the memo about half-staff. Why are there so many flagpoles near my house anyway?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 15 20:48:13 +0000 2014", + "id": 456172164518273025, + "id_str": "456172164518273025", + "text": "@gewt I am the worm savior", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456167832204484609, + "in_reply_to_status_id_str": "456167832204484609", + "in_reply_to_user_id": 18125825, + "in_reply_to_user_id_str": "18125825", + "in_reply_to_screen_name": "gewt", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 15 20:02:19 +0000 2014", + "id": 456160612314148864, + "id_str": "456160612314148864", + "text": "Just counted a couple hundred worms on the sidewalk. Watch your step don't squish my poor wormies", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 15 19:52:06 +0000 2014", + "id": 456158038580162560, + "id_str": "456158038580162560", + "text": "@hinanawi_chan you can ask @WhiteMageSlave about it... sudden voice difficulties described as sounding Scottish", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 456157742625865728, + "in_reply_to_status_id_str": "456157742625865728", + "in_reply_to_user_id": 2336014178, + "in_reply_to_user_id_str": "2336014178", + "in_reply_to_screen_name": "hinanawi_chan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 15 19:37:51 +0000 2014", + "id": 456154452538322944, + "id_str": "456154452538322944", + "text": "@hinanawi_chan so, um. That was the huge warning sign tipoff that my sister was about to experience serious neurological issues", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456151264770801665, + "in_reply_to_status_id_str": "456151264770801665", + "in_reply_to_user_id": 2336014178, + "in_reply_to_user_id_str": "2336014178", + "in_reply_to_screen_name": "hinanawi_chan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 15 19:30:56 +0000 2014", + "id": 456152712619384832, + "id_str": "456152712619384832", + "text": "@Shufflejoy @SomeMadHare “Being offended is a choice”\n\nBleeding after being shot is a choice! You can close up that wound if you toughen up", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456136304271441920, + "in_reply_to_status_id_str": "456136304271441920", + "in_reply_to_user_id": 1567524811, + "in_reply_to_user_id_str": "1567524811", + "in_reply_to_screen_name": "Shufflejoy", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 15 19:25:32 +0000 2014", + "id": 456151355380355072, + "id_str": "456151355380355072", + "text": ".@MarkusJ @hypatiadotca all according to plan http://t.co/zBqJMfDOuS", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455815834691072000, + "in_reply_to_status_id_str": "455815834691072000", + "in_reply_to_user_id": 19102976, + "in_reply_to_user_id_str": "19102976", + "in_reply_to_screen_name": "MarkusJ", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 15 19:24:49 +0000 2014", + "id": 456151176157745152, + "id_str": "456151176157745152", + "text": "RT @MarkusJ: i like how corporate twitter accounts basically exist to cause problems and then apologize profusely for them", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Mon Apr 14 21:12:18 +0000 2014", + "id": 455815834691072000, + "id_str": "455815834691072000", + "text": "i like how corporate twitter accounts basically exist to cause problems and then apologize profusely for them", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 19102976, + "id_str": "19102976" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 83, + "favorite_count": 79, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 83, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 15 19:24:13 +0000 2014", + "id": 456151022495219712, + "id_str": "456151022495219712", + "text": "@benadida @j4cob I bet they did… and their PR did not like the taste of mass resets relative to the extremely low risk per user", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456116433349406721, + "in_reply_to_status_id_str": "456116433349406721", + "in_reply_to_user_id": 14451083, + "in_reply_to_user_id_str": "14451083", + "in_reply_to_screen_name": "benadida", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 15 19:18:14 +0000 2014", + "id": 456149517155311616, + "id_str": "456149517155311616", + "text": "RT @sarahjeong: richard stallman is in the house and he just passed out copies of a multi-page stapled article that has NOTHING to do w/ th…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue Apr 15 16:38:58 +0000 2014", + "id": 456109437510762496, + "id_str": "456109437510762496", + "text": "richard stallman is in the house and he just passed out copies of a multi-page stapled article that has NOTHING to do w/ the presentation", + "source": "TweetDeck", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 47509268, + "id_str": "47509268" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 15, + "favorite_count": 29, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 15, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 15 19:15:53 +0000 2014", + "id": 456148924340789248, + "id_str": "456148924340789248", + "text": "RT @GeeDee215: I Was Racially Profiled in My Own Driveway\n http://t.co/wYyoWMriI8", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue Apr 15 16:26:04 +0000 2014", + "id": 456106190981042176, + "id_str": "456106190981042176", + "text": "I Was Racially Profiled in My Own Driveway\n http://t.co/wYyoWMriI8", + "source": "iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 87359651, + "id_str": "87359651" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 48, + "favorite_count": 38, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/wYyoWMriI8", + "expanded_url": "http://m.theatlantic.com/national/archive/2014/04/i-was-racially-profiled-in-my-own-driveway/360615/", + "display_url": "m.theatlantic.com/national/archi…", + "indices": [ + 44, + 66 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 48, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 15 19:04:10 +0000 2014", + "id": 456145977351495680, + "id_str": "456145977351495680", + "text": "RT @noir: For anybody curious about how @indutny was able to obtain CloudFlare’s private SSL key (short, but interesting read) https://t.co…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue Apr 15 15:13:51 +0000 2014", + "id": 456088017325678592, + "id_str": "456088017325678592", + "text": "For anybody curious about how @indutny was able to obtain CloudFlare’s private SSL key (short, but interesting read) https://t.co/ymqxcOCYVi", + "source": "Tweetbot for Mac", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 11677062, + "id_str": "11677062" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 39, + "favorite_count": 35, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "https://t.co/ymqxcOCYVi", + "expanded_url": "https://blog.indutny.com/9.heartbleed", + "display_url": "blog.indutny.com/9.heartbleed", + "indices": [ + 117, + 140 + ] + } + ], + "user_mentions": [ + { + "screen_name": "indutny", + "name": "Fedor Indutny", + "id": 92915570, + "id_str": "92915570", + "indices": [ + 30, + 38 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 39, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 15 19:01:40 +0000 2014", + "id": 456145348784713728, + "id_str": "456145348784713728", + "text": "RT @noir: @tapbot_paul http://t.co/Is42uU1AC6", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue Apr 15 15:40:00 +0000 2014", + "id": 456094599400787969, + "id_str": "456094599400787969", + "text": "@tapbot_paul http://t.co/Is42uU1AC6", + "source": "Tweetbot for Mac", + "truncated": false, + "in_reply_to_status_id": 456093430373171201, + "in_reply_to_status_id_str": "456093430373171201", + "in_reply_to_user_id": 18247541, + "in_reply_to_user_id_str": "18247541", + "in_reply_to_screen_name": "tapbot_paul", + "user": { + "id": 11677062, + "id_str": "11677062" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 37, + "favorite_count": 45, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/Is42uU1AC6", + "expanded_url": "http://cl.ly/image/282Q0M3e002p", + "display_url": "cl.ly/image/282Q0M3e…", + "indices": [ + 13, + 35 + ] + } + ], + "user_mentions": [ + { + "screen_name": "tapbot_paul", + "name": "Paul Haddad", + "id": 18247541, + "id_str": "18247541", + "indices": [ + 0, + 12 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + "retweet_count": 37, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Tue Apr 15 19:01:08 +0000 2014", + "id": 456145213077991424, + "id_str": "456145213077991424", + "text": "RT @tapbot_paul: “Did you know your current contact settings have cancelled all Microsoft email communications to your inbox?” http://t.co/…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue Apr 15 15:35:22 +0000 2014", + "id": 456093430373171201, + "id_str": "456093430373171201", + "text": "“Did you know your current contact settings have cancelled all Microsoft email communications to your inbox?” http://t.co/uQfQkQoTnr", + "source": "Tweetbot for Mac", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 18247541, + "id_str": "18247541" + }, + "geo": null, + "coordinates": null, + "place": { + "id": "d6bbfe2356aebaab", + "url": "https://api.twitter.com/1.1/geo/id/d6bbfe2356aebaab.json", + "place_type": "city", + "name": "Flower Mound", + "full_name": "Flower Mound, TX", + "country_code": "US", + "country": "United States", + "contained_within": [ + + ], + "bounding_box": { + "type": "Polygon", + "coordinates": [ + [ + [ + -97.15576, + 32.98449 + ], + [ + -97.027543, + 32.98449 + ], + [ + -97.027543, + 33.073874 + ], + [ + -97.15576, + 33.073874 + ] + ] + ] + }, + "attributes": { + } + }, + "contributors": null, + "retweet_count": 116, + "favorite_count": 80, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ], + "media": [ + { + "id": 456093430163439616, + "id_str": "456093430163439616", + "indices": [ + 110, + 132 + ], + "media_url": "http://pbs.twimg.com/media/BlRejulIAAAvhoX.png", + "media_url_https": "https://pbs.twimg.com/media/BlRejulIAAAvhoX.png", + "url": "http://t.co/uQfQkQoTnr", + "display_url": "pic.twitter.com/uQfQkQoTnr", + "expanded_url": "http://twitter.com/tapbot_paul/status/456093430373171201/photo/1", + "type": "photo", + "sizes": { + "medium": { + "w": 573, + "h": 418, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 248, + "resize": "fit" + }, + "large": { + "w": 573, + "h": 418, + "resize": "fit" + } + } + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 116, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 15 18:56:07 +0000 2014", + "id": 456143951758499840, + "id_str": "456143951758499840", + "text": ".@vogon “we’ll let the plebeians with low social media impact scores buy into this high-tech fashion statement… but only this one time”", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456087115210584064, + "in_reply_to_status_id_str": "456087115210584064", + "in_reply_to_user_id": 6326912, + "in_reply_to_user_id_str": "6326912", + "in_reply_to_screen_name": "vogon", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 15 18:11:13 +0000 2014", + "id": 456132649363701761, + "id_str": "456132649363701761", + "text": "\"Length\" and \"len\" in the same function. Murder murder kill kill.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 8, + "favorite_count": 9, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 15 18:03:26 +0000 2014", + "id": 456130694897733633, + "id_str": "456130694897733633", + "text": "@zhuowei in general I name the Occidental women with Greek roots and the men with Latin roots but this is not 100% absolute", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 456129691364384768, + "in_reply_to_status_id_str": "456129691364384768", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 15 18:02:41 +0000 2014", + "id": 456130504124030976, + "id_str": "456130504124030976", + "text": "@zhuowei the point of reference for her name was the Book of Deuteronomy but hey we already got some other elementy-sounding names", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 456129691364384768, + "in_reply_to_status_id_str": "456129691364384768", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 15 18:01:08 +0000 2014", + "id": 456130114485776384, + "id_str": "456130114485776384", + "text": "@zhuowei linguistically speaking, the double-r is significant, ser-rid-en instead of ser-i", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 456129552973328384, + "in_reply_to_status_id_str": "456129552973328384", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 15 18:00:05 +0000 2014", + "id": 456129850030690304, + "id_str": "456129850030690304", + "text": "@zhuowei It isn't; it was actually inspired by reading the name \"Ceridwen\" with a leading S instead of a K.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 456129552973328384, + "in_reply_to_status_id_str": "456129552973328384", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 15 17:58:42 +0000 2014", + "id": 456129503878991872, + "id_str": "456129503878991872", + "text": "@zhuowei I have a few other notes kicking around, like Thalass Veraldo's maiden name was Deuteron", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 456128278425010176, + "in_reply_to_status_id_str": "456128278425010176", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 15 17:56:12 +0000 2014", + "id": 456128872862711808, + "id_str": "456128872862711808", + "text": "@zhuowei ahh, you've seen the shame of first iterations before I reread them several times and edit them up a bit!", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 456128555932741632, + "in_reply_to_status_id_str": "456128555932741632", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 15 17:55:24 +0000 2014", + "id": 456128670097485824, + "id_str": "456128670097485824", + "text": "@zhuowei it mentions her father's name is Sylvan (and she gives it as part of her full name) but poor Lusin's name never appears in the text", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 456128278425010176, + "in_reply_to_status_id_str": "456128278425010176", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 15 17:53:54 +0000 2014", + "id": 456128296426934272, + "id_str": "456128296426934272", + "text": "@zhuowei Serriden gets upgraded to a proper character in book 2 btw. I apparently knew this when I put the index together :)", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 456127851595849728, + "in_reply_to_status_id_str": "456127851595849728", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 15 17:52:56 +0000 2014", + "id": 456128050242289664, + "id_str": "456128050242289664", + "text": "@zhuowei them and one other - Ismyrn's mother", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 456127851595849728, + "in_reply_to_status_id_str": "456127851595849728", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 15 17:51:03 +0000 2014", + "id": 456127578500517888, + "id_str": "456127578500517888", + "text": "@zhuowei you're probably the only one who'll notice that there are character names in the index that are never given in the story proper :)", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 456127048319111168, + "in_reply_to_status_id_str": "456127048319111168", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 15 17:47:12 +0000 2014", + "id": 456126606399258625, + "id_str": "456126606399258625", + "text": "@zhuowei I have no idea what you're talking about *whistles innocently* http://t.co/5SV6kxjxTn", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 456125053201956864, + "in_reply_to_status_id_str": "456125053201956864", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 15 17:41:42 +0000 2014", + "id": 456125222677409793, + "id_str": "456125222677409793", + "text": "@zhuowei ... ... ... !", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 456125053201956864, + "in_reply_to_status_id_str": "456125053201956864", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "da" + }, + { + "created_at": "Tue Apr 15 17:17:38 +0000 2014", + "id": 456119165624283136, + "id_str": "456119165624283136", + "text": "@Mivtachyahu yeah probably. The functions call each other too", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 456119015203962880, + "in_reply_to_status_id_str": "456119015203962880", + "in_reply_to_user_id": 18244138, + "in_reply_to_user_id_str": "18244138", + "in_reply_to_screen_name": "Mivtachyahu", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 15 17:04:51 +0000 2014", + "id": 456115952653176833, + "id_str": "456115952653176833", + "text": "Next on the OpenSSL serious critical issue list: what is WITH the inconsistent capitalization conventions?", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 9, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 15 16:06:27 +0000 2014", + "id": 456101254578855937, + "id_str": "456101254578855937", + "text": "Today at Veracode learning lunch: block chains!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 5, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 15 15:47:19 +0000 2014", + "id": 456096437517189120, + "id_str": "456096437517189120", + "text": "@needshortername I reckon you figured it out", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 456096133501431808, + "in_reply_to_status_id_str": "456096133501431808", + "in_reply_to_user_id": 26157562, + "in_reply_to_user_id_str": "26157562", + "in_reply_to_screen_name": "needshortername", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 15 15:41:13 +0000 2014", + "id": 456094903211421696, + "id_str": "456094903211421696", + "text": "@EliteHX yes?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456094282680901634, + "in_reply_to_status_id_str": "456094282680901634", + "in_reply_to_user_id": 172313008, + "in_reply_to_user_id_str": "172313008", + "in_reply_to_screen_name": "EliteHX", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Tue Apr 15 15:38:10 +0000 2014", + "id": 456094137746747392, + "id_str": "456094137746747392", + "text": "RT @hirojin: @0xabad1dea if for the better part of the project's lifetime your version control was CVS, that's what you do, I guess.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue Apr 15 15:37:41 +0000 2014", + "id": 456094014325129217, + "id_str": "456094014325129217", + "text": "@0xabad1dea if for the better part of the project's lifetime your version control was CVS, that's what you do, I guess.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 456092682956570624, + "in_reply_to_status_id_str": "456092682956570624", + "in_reply_to_user_id": 126030998, + "in_reply_to_user_id_str": "126030998", + "in_reply_to_screen_name": "0xabad1dea", + "user": { + "id": 39625343, + "id_str": "39625343" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 1, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "0xabad1dea", + "name": "MeliSSL ", + "id": 126030998, + "id_str": "126030998", + "indices": [ + 0, + 11 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 2, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 15 15:37:55 +0000 2014", + "id": 456094072219131904, + "id_str": "456094072219131904", + "text": "@dridus zero-width joiner characters also work with normal hash characters but I couldn't be bothered to learn to type one", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 456093893818609665, + "in_reply_to_status_id_str": "456093893818609665", + "in_reply_to_user_id": 117250626, + "in_reply_to_user_id_str": "117250626", + "in_reply_to_screen_name": "dridus", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 15 15:36:13 +0000 2014", + "id": 456093643309584385, + "id_str": "456093643309584385", + "text": "@olemd I usually only see binaries, so I'm spared that :)", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 456093338371104768, + "in_reply_to_status_id_str": "456093338371104768", + "in_reply_to_user_id": 13685162, + "in_reply_to_user_id_str": "13685162", + "in_reply_to_screen_name": "olemd", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 15 15:32:24 +0000 2014", + "id": 456092682956570624, + "id_str": "456092682956570624", + "text": "♯if 0\nwho ships this, I mean really\n♯endif #openssl", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 9, + "favorite_count": 18, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 15 15:25:59 +0000 2014", + "id": 456091068506058752, + "id_str": "456091068506058752", + "text": "@DarrenPMeyer yeah, I think it's also a very American thing that everyone's assuming she's going to jail b/c she got arrested", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 456090906954059777, + "in_reply_to_status_id_str": "456090906954059777", + "in_reply_to_user_id": 468928589, + "in_reply_to_user_id_str": "468928589", + "in_reply_to_screen_name": "DarrenPMeyer", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 15 15:23:44 +0000 2014", + "id": 456090503952732160, + "id_str": "456090503952732160", + "text": "@thegrugq don't you have a printer to worry about somewhere", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 456090380375584768, + "in_reply_to_status_id_str": "456090380375584768", + "in_reply_to_user_id": 18983429, + "in_reply_to_user_id_str": "18983429", + "in_reply_to_screen_name": "thegrugq", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 15 15:22:57 +0000 2014", + "id": 456090308057763840, + "id_str": "456090308057763840", + "text": "@lib_ertarian_ well, anger is definitely an emotion", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 456090140981489664, + "in_reply_to_status_id_str": "456090140981489664", + "in_reply_to_user_id": 903106754, + "in_reply_to_user_id_str": "903106754", + "in_reply_to_screen_name": "lib_ertarian_", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 15 15:19:37 +0000 2014", + "id": 456089467267203073, + "id_str": "456089467267203073", + "text": "Infosec is so much fun. Promise. http://t.co/c9KKmTkrOw", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 46, + "favorite_count": 35, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 15 15:07:40 +0000 2014", + "id": 456086460886949888, + "id_str": "456086460886949888", + "text": "@TakoArishi but interestingly, it is also only one letter off! I'm some sort of crypto prophetess", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 456086135807434753, + "in_reply_to_status_id_str": "456086135807434753", + "in_reply_to_user_id": 22107482, + "in_reply_to_user_id_str": "22107482", + "in_reply_to_screen_name": "TakoArishi", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 15 15:03:42 +0000 2014", + "id": 456085463078830080, + "id_str": "456085463078830080", + "text": "@DrPizza mine probably are, as I’ve given RSA no reason to love me 😵", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456083416434614272, + "in_reply_to_status_id_str": "456083416434614272", + "in_reply_to_user_id": 11375732, + "in_reply_to_user_id_str": "11375732", + "in_reply_to_screen_name": "DrPizza", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 15 14:54:55 +0000 2014", + "id": 456083250453438465, + "id_str": "456083250453438465", + "text": "I somehow referred to my RSA tokens as SSL keys.\n\nAnd yet my husband still knew what I meant.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 12, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 15 14:51:12 +0000 2014", + "id": 456082314456756224, + "id_str": "456082314456756224", + "text": "@m1sp something about this witch reminds me of Tsovinar… I can’t quite put my finger on it http://t.co/aZzClNfpPy", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 15 14:46:03 +0000 2014", + "id": 456081020581085184, + "id_str": "456081020581085184", + "text": "RT @thegrugq: “@XSSniper: embedded device NOT vuln to #heartbleed, cause its OpenSSL is from 2003! http://t.co/EPtgqUF4Sz”< why we can't ha…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue Apr 15 14:20:43 +0000 2014", + "id": 456074645628653568, + "id_str": "456074645628653568", + "text": "“@XSSniper: embedded device NOT vuln to #heartbleed, cause its OpenSSL is from 2003! http://t.co/EPtgqUF4Sz”< why we can't have nice things", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 18983429, + "id_str": "18983429" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 22, + "favorite_count": 22, + "entities": { + "hashtags": [ + { + "text": "heartbleed", + "indices": [ + 40, + 51 + ] + } + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "XSSniper", + "name": "Billy Rios", + "id": 15478471, + "id_str": "15478471", + "indices": [ + 1, + 10 + ] + } + ], + "media": [ + { + "id": 456064013244174336, + "id_str": "456064013244174336", + "indices": [ + 85, + 107 + ], + "media_url": "http://pbs.twimg.com/media/BlRDzcBCEAANpWz.png", + "media_url_https": "https://pbs.twimg.com/media/BlRDzcBCEAANpWz.png", + "url": "http://t.co/EPtgqUF4Sz", + "display_url": "pic.twitter.com/EPtgqUF4Sz", + "expanded_url": "http://twitter.com/XSSniper/status/456064013235785729/photo/1", + "type": "photo", + "sizes": { + "large": { + "w": 994, + "h": 220, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 600, + "h": 133, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 75, + "resize": "fit" + } + }, + "source_status_id": 456064013235785729, + "source_status_id_str": "456064013235785729" + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 22, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 15 14:43:29 +0000 2014", + "id": 456080375874592769, + "id_str": "456080375874592769", + "text": "@kortir @demize95 yeah, that’s what I meant, that the arrest was most proximately caused by how everyone, even her local police, noticed", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456071595967410176, + "in_reply_to_status_id_str": "456071595967410176", + "in_reply_to_user_id": 87390461, + "in_reply_to_user_id_str": "87390461", + "in_reply_to_screen_name": "kortir", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 15 14:05:33 +0000 2014", + "id": 456070828288143360, + "id_str": "456070828288143360", + "text": "@demize95 I don’t think they “got her” arrested per se, and this was completely inevitable, it’s a feature of the internet", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456070166149742592, + "in_reply_to_status_id_str": "456070166149742592", + "in_reply_to_user_id": 137133048, + "in_reply_to_user_id_str": "137133048", + "in_reply_to_screen_name": "demize95", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 15 13:59:34 +0000 2014", + "id": 456069322142920704, + "id_str": "456069322142920704", + "text": "@stillchip @trutherbot it’s been disputed for many years whether it’s real or not; there’s no smoking gun either way", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456067159232614401, + "in_reply_to_status_id_str": "456067159232614401", + "in_reply_to_user_id": 48889083, + "in_reply_to_user_id_str": "48889083", + "in_reply_to_screen_name": "stillchip", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 15 13:58:35 +0000 2014", + "id": 456069073261305856, + "id_str": "456069073261305856", + "text": "@DrDaxxy well, where would I get one?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456067024687751168, + "in_reply_to_status_id_str": "456067024687751168", + "in_reply_to_user_id": 15369528, + "in_reply_to_user_id_str": "15369528", + "in_reply_to_screen_name": "DrDaxxy", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 15 13:24:26 +0000 2014", + "id": 456060478960447489, + "id_str": "456060478960447489", + "text": "@SSSScomic well it’s a good panel.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 456004586055032832, + "in_reply_to_status_id_str": "456004586055032832", + "in_reply_to_user_id": 1100783148, + "in_reply_to_user_id_str": "1100783148", + "in_reply_to_screen_name": "SSSScomic", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 15 04:53:02 +0000 2014", + "id": 455931782203179008, + "id_str": "455931782203179008", + "text": "@rjsalts @frkbmb http://t.co/2p0z03tKsM", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455931558407315456, + "in_reply_to_status_id_str": "455931558407315456", + "in_reply_to_user_id": 244763282, + "in_reply_to_user_id_str": "244763282", + "in_reply_to_screen_name": "rjsalts", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Tue Apr 15 04:51:21 +0000 2014", + "id": 455931359580946432, + "id_str": "455931359580946432", + "text": "@m1sp with this this I this wed", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455912589663281152, + "in_reply_to_status_id_str": "455912589663281152", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 15 04:18:13 +0000 2014", + "id": 455923020646060032, + "id_str": "455923020646060032", + "text": "@VijayUpadhyaya on the contrary, I was one of the last children to ever have chicken pox before it was made standard in this country :)", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 455922648489275393, + "in_reply_to_status_id_str": "455922648489275393", + "in_reply_to_user_id": 162571843, + "in_reply_to_user_id_str": "162571843", + "in_reply_to_screen_name": "VijayUpadhyaya", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 15 04:05:42 +0000 2014", + "id": 455919869087981568, + "id_str": "455919869087981568", + "text": "What does this function do? What do its arguments mean? What is the purpose of the source file? Tonight on OpenSSL Mysteries #WeJustDontKnow", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 20, + "favorite_count": 30, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 15 03:58:12 +0000 2014", + "id": 455917981873491968, + "id_str": "455917981873491968", + "text": "@Kufat why you gotta make this about race", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 455915968011583488, + "in_reply_to_status_id_str": "455915968011583488", + "in_reply_to_user_id": 207691003, + "in_reply_to_user_id_str": "207691003", + "in_reply_to_screen_name": "Kufat", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 15 03:23:55 +0000 2014", + "id": 455909354731216896, + "id_str": "455909354731216896", + "text": "@Kaptain_Kaos yes actually. The remainder who aren't dumb are both smart and professionally trained anyway.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 455909150489198592, + "in_reply_to_status_id_str": "455909150489198592", + "in_reply_to_user_id": 325044007, + "in_reply_to_user_id_str": "325044007", + "in_reply_to_screen_name": "Kaptain_Kaos", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 15 03:21:29 +0000 2014", + "id": 455908744296407040, + "id_str": "455908744296407040", + "text": "\"By clicking Login, you are confirming acceptance of our Terms of Service.\" I pressed the enter key. I am bound to no law", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 385, + "favorite_count": 287, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 15 03:17:23 +0000 2014", + "id": 455907713667858432, + "id_str": "455907713667858432", + "text": "@frkbmb I refuse to believe this isn’t performance art", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455907540736299008, + "in_reply_to_status_id_str": "455907540736299008", + "in_reply_to_user_id": 540721095, + "in_reply_to_user_id_str": "540721095", + "in_reply_to_screen_name": "frkbmb", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 15 03:13:11 +0000 2014", + "id": 455906652781576192, + "id_str": "455906652781576192", + "text": "@frkbmb you’re confused, it’s the other way around. America is part of West New Netherlands", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455906513131802624, + "in_reply_to_status_id_str": "455906513131802624", + "in_reply_to_user_id": 540721095, + "in_reply_to_user_id_str": "540721095", + "in_reply_to_screen_name": "frkbmb", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 15 03:12:04 +0000 2014", + "id": 455906373734518784, + "id_str": "455906373734518784", + "text": "@Kaptain_Kaos I’ll let you in on a secret: most terrorists are in fact colossally stupid (otherwise they’d find something else to do)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455906097853771778, + "in_reply_to_status_id_str": "455906097853771778", + "in_reply_to_user_id": 325044007, + "in_reply_to_user_id_str": "325044007", + "in_reply_to_screen_name": "Kaptain_Kaos", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 15 03:07:00 +0000 2014", + "id": 455905100369002496, + "id_str": "455905100369002496", + "text": "😐 @ people who think the Dutch fake bomb threat girl was arrested by “Feds” in Rotterdam and that it’s an American constitutional crisis", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 8, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 15 02:59:40 +0000 2014", + "id": 455903252190879744, + "id_str": "455903252190879744", + "text": "RT @aatishb: How to lie with data visualization http://t.co/K7OF7KrCpC Surely this must be 1 of the most misleading figures ever! http://t.…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Mon Apr 14 22:27:38 +0000 2014", + "id": 455834791477116928, + "id_str": "455834791477116928", + "text": "How to lie with data visualization http://t.co/K7OF7KrCpC Surely this must be 1 of the most misleading figures ever! http://t.co/Dtqj8rxLuR", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 300735398, + "id_str": "300735398" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1084, + "favorite_count": 332, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/K7OF7KrCpC", + "expanded_url": "http://data.heapanalytics.com/how-to-lie-with-data-visualization/", + "display_url": "data.heapanalytics.com/how-to-lie-wit…", + "indices": [ + 35, + 57 + ] + } + ], + "user_mentions": [ + + ], + "media": [ + { + "id": 455834791485505536, + "id_str": "455834791485505536", + "indices": [ + 117, + 139 + ], + "media_url": "http://pbs.twimg.com/media/BlNzU-bCAAA-uFK.jpg", + "media_url_https": "https://pbs.twimg.com/media/BlNzU-bCAAA-uFK.jpg", + "url": "http://t.co/Dtqj8rxLuR", + "display_url": "pic.twitter.com/Dtqj8rxLuR", + "expanded_url": "http://twitter.com/aatishb/status/455834791477116928/photo/1", + "type": "photo", + "sizes": { + "small": { + "w": 340, + "h": 426, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 604, + "h": 756, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 751, + "resize": "fit" + } + } + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 1084, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 15 02:46:29 +0000 2014", + "id": 455899936400613376, + "id_str": "455899936400613376", + "text": "@Talen_Lee well looks like SOMEONE already made a judgment call on what pronoun “it” prefers", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455846565647613952, + "in_reply_to_status_id_str": "455846565647613952", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 15 02:45:46 +0000 2014", + "id": 455899756087504896, + "id_str": "455899756087504896", + "text": "@McGrewSecurity the weirding of language is inevitable", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455845050095001600, + "in_reply_to_status_id_str": "455845050095001600", + "in_reply_to_user_id": 13275122, + "in_reply_to_user_id_str": "13275122", + "in_reply_to_screen_name": "McGrewSecurity", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 15 01:36:06 +0000 2014", + "id": 455882221023670272, + "id_str": "455882221023670272", + "text": "@m1sp ..... has the situation changed that much? >.> I don't know if you know this but exorcism is totally still a thing in this country", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 455882010599256064, + "in_reply_to_status_id_str": "455882010599256064", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 15 01:13:08 +0000 2014", + "id": 455876444191997952, + "id_str": "455876444191997952", + "text": "Why do I have all these pictures on my hard drive of people with fake elf ears, what caused me to think I needed a copy of these", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 4, + "favorite_count": 8, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 15 01:06:14 +0000 2014", + "id": 455874708140212226, + "id_str": "455874708140212226", + "text": "@m1sp you may enjoy the first few paragraphs of this http://t.co/UZR1Kr3woa (the disease in question is seizures)", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 14 20:34:33 +0000 2014", + "id": 455806333485592576, + "id_str": "455806333485592576", + "text": "@WhiteMageSlave ..... is it a double-purpose button toggled by a Fn-lock? (Like Numlock but for doubling up specialty buttons on laptops)", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 455806023522324480, + "in_reply_to_status_id_str": "455806023522324480", + "in_reply_to_user_id": 90791634, + "in_reply_to_user_id_str": "90791634", + "in_reply_to_screen_name": "WhiteMageSlave", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 14 20:29:45 +0000 2014", + "id": 455805127308632064, + "id_str": "455805127308632064", + "text": "@WhiteMageSlave weird. Crumb stuck under the key??", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 455805016079876097, + "in_reply_to_status_id_str": "455805016079876097", + "in_reply_to_user_id": 90791634, + "in_reply_to_user_id_str": "90791634", + "in_reply_to_screen_name": "WhiteMageSlave", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 14 20:21:19 +0000 2014", + "id": 455803006303612928, + "id_str": "455803006303612928", + "text": "@WhiteMageSlave is it on your clipboard? Paste into mspaint?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455802442752724992, + "in_reply_to_status_id_str": "455802442752724992", + "in_reply_to_user_id": 90791634, + "in_reply_to_user_id_str": "90791634", + "in_reply_to_screen_name": "WhiteMageSlave", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 14 20:20:25 +0000 2014", + "id": 455802777823105024, + "id_str": "455802777823105024", + "text": "RT @frkbmb: Didn't @0xabad1dea mention that webtwitter now accepts clipboard input for images? Maybe that's what happened with the US Airwa…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Mon Apr 14 20:18:40 +0000 2014", + "id": 455802339421483008, + "id_str": "455802339421483008", + "text": "Didn't @0xabad1dea mention that webtwitter now accepts clipboard input for images? Maybe that's what happened with the US Airways tweet.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 540721095, + "id_str": "540721095" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 4, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "0xabad1dea", + "name": "Melissa", + "id": 126030998, + "id_str": "126030998", + "indices": [ + 7, + 18 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 3, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 14 20:11:38 +0000 2014", + "id": 455800568351834112, + "id_str": "455800568351834112", + "text": "@jaythenerdkid @Shufflejoy which to me was disturbing; such people were actively working to reinforce racial otherness of a religion", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455797935867826176, + "in_reply_to_status_id_str": "455797935867826176", + "in_reply_to_user_id": 24793165, + "in_reply_to_user_id_str": "24793165", + "in_reply_to_screen_name": "jaythenerdkid", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 14 20:10:23 +0000 2014", + "id": 455800253552541696, + "id_str": "455800253552541696", + "text": "@jaythenerdkid @Shufflejoy and when white men who are muslims bomb marathons suddenly we hear how they ain’t *really* white anyway", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455797935867826176, + "in_reply_to_status_id_str": "455797935867826176", + "in_reply_to_user_id": 24793165, + "in_reply_to_user_id_str": "24793165", + "in_reply_to_screen_name": "jaythenerdkid", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 14 20:08:18 +0000 2014", + "id": 455799729793007616, + "id_str": "455799729793007616", + "text": "@frkbmb the kind that screws into trees to support a lot of weight, or comes with a large stand for setting up without trees", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455799471742275584, + "in_reply_to_status_id_str": "455799471742275584", + "in_reply_to_user_id": 540721095, + "in_reply_to_user_id_str": "540721095", + "in_reply_to_screen_name": "frkbmb", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 14 20:04:32 +0000 2014", + "id": 455798781779640320, + "id_str": "455798781779640320", + "text": "@ButtCoin @frkbmb I think this one stands on its own without any edits 👼🔆", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455798486173118466, + "in_reply_to_status_id_str": "455798486173118466", + "in_reply_to_user_id": 305854715, + "in_reply_to_user_id_str": "305854715", + "in_reply_to_screen_name": "ButtCoin", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 14 19:59:50 +0000 2014", + "id": 455797598411313152, + "id_str": "455797598411313152", + "text": "@ButtCoin @frkbmb can I get a [citation] on its authenticity?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455738660944490496, + "in_reply_to_status_id_str": "455738660944490496", + "in_reply_to_user_id": 305854715, + "in_reply_to_user_id_str": "305854715", + "in_reply_to_screen_name": "ButtCoin", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 14 19:49:37 +0000 2014", + "id": 455795028569628672, + "id_str": "455795028569628672", + "text": "@Pete_Spence @NBCNews @frkbmb so… from about 1970 to 2050… all the Asians moved to Canada? I can draw no other conclusion", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455700021929734144, + "in_reply_to_status_id_str": "455700021929734144", + "in_reply_to_user_id": 267053655, + "in_reply_to_user_id_str": "267053655", + "in_reply_to_screen_name": "Pete_Spence", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 14 19:28:56 +0000 2014", + "id": 455789824424026112, + "id_str": "455789824424026112", + "text": "@techpractical exactly", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 455789106094940160, + "in_reply_to_status_id_str": "455789106094940160", + "in_reply_to_user_id": 26243623, + "in_reply_to_user_id_str": "26243623", + "in_reply_to_screen_name": "techpractical", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 14 19:24:22 +0000 2014", + "id": 455788674270363649, + "id_str": "455788674270363649", + "text": "Oh come on someone in this office park brought a portable hammock to set up by the pond", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 14 18:06:23 +0000 2014", + "id": 455769046794137601, + "id_str": "455769046794137601", + "text": "@Tomi_Tapio so it's probably burst capillaries or something like that...", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 455768638541553665, + "in_reply_to_status_id_str": "455768638541553665", + "in_reply_to_user_id": 43579011, + "in_reply_to_user_id_str": "43579011", + "in_reply_to_screen_name": "Tomi_Tapio", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 14 17:43:38 +0000 2014", + "id": 455763324324835328, + "id_str": "455763324324835328", + "text": "@mpdjhb @cstross I had a particular Sunday School tune in mind, but I won’t subject you to it", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455761111632318465, + "in_reply_to_status_id_str": "455761111632318465", + "in_reply_to_user_id": 131115894, + "in_reply_to_user_id_str": "131115894", + "in_reply_to_screen_name": "mpdjhb", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 14 17:41:09 +0000 2014", + "id": 455762699281260544, + "id_str": "455762699281260544", + "text": "RT @hemantmehta: Pop Quiz: Contemporary Christian Music Lyrics or Lines from 50 Shades of Grey? http://t.co/1hKm4bs9MN", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Mon Apr 14 17:31:22 +0000 2014", + "id": 455760237467672576, + "id_str": "455760237467672576", + "text": "Pop Quiz: Contemporary Christian Music Lyrics or Lines from 50 Shades of Grey? http://t.co/1hKm4bs9MN", + "source": "twitterfeed", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 23034673, + "id_str": "23034673" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 12, + "favorite_count": 7, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/1hKm4bs9MN", + "expanded_url": "http://tinyurl.com/oc859yy", + "display_url": "tinyurl.com/oc859yy", + "indices": [ + 79, + 101 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 12, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 14 17:35:38 +0000 2014", + "id": 455761307728637952, + "id_str": "455761307728637952", + "text": "@Kryptoblog @addelindh @justineaitel @cBekrar what do you want from me, I’m barely old enough to know what a VHS looks like 📼", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455761063502688256, + "in_reply_to_status_id_str": "455761063502688256", + "in_reply_to_user_id": 40498721, + "in_reply_to_user_id_str": "40498721", + "in_reply_to_screen_name": "Kryptoblog", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 14 17:33:19 +0000 2014", + "id": 455760727916445696, + "id_str": "455760727916445696", + "text": "@LiPekka up and down my arms. There doesn’t seem to be anything else wrong with me. Just very tiny blood-red dots.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455760443873964032, + "in_reply_to_status_id_str": "455760443873964032", + "in_reply_to_user_id": 1202276791, + "in_reply_to_user_id_str": "1202276791", + "in_reply_to_screen_name": "LiPekka", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 14 17:30:42 +0000 2014", + "id": 455760069205188608, + "id_str": "455760069205188608", + "text": "@averagesecguy doesn’t hives make large, raised bumps?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455758784145915905, + "in_reply_to_status_id_str": "455758784145915905", + "in_reply_to_user_id": 244128388, + "in_reply_to_user_id_str": "244128388", + "in_reply_to_screen_name": "averagesecguy", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 14 17:29:22 +0000 2014", + "id": 455759733656678400, + "id_str": "455759733656678400", + "text": "@trdarr I uh… don’t think so. Pretty sure these are actual blemishes and not tiny insects.\n\nI think.\n\nThanks.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455759399668043777, + "in_reply_to_status_id_str": "455759399668043777", + "in_reply_to_user_id": 109681611, + "in_reply_to_user_id_str": "109681611", + "in_reply_to_screen_name": "trdarr", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 14 17:26:52 +0000 2014", + "id": 455759101981892608, + "id_str": "455759101981892608", + "text": "@sakjur @runasand @zooko they were not working together, which some people might find an odd if not suspicious alignment of the stars", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455758835320647680, + "in_reply_to_status_id_str": "455758835320647680", + "in_reply_to_user_id": 63478005, + "in_reply_to_user_id_str": "63478005", + "in_reply_to_screen_name": "sakjur", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 14 17:21:51 +0000 2014", + "id": 455757842516303872, + "id_str": "455757842516303872", + "text": "@inversephase down with fakebit", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455757505210368000, + "in_reply_to_status_id_str": "455757505210368000", + "in_reply_to_user_id": 146114262, + "in_reply_to_user_id_str": "146114262", + "in_reply_to_screen_name": "inversephase", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 14 17:21:28 +0000 2014", + "id": 455757745594306561, + "id_str": "455757745594306561", + "text": "Ahh it’s that time of year that my skin is covered with dozens of pinprick-sized red dots and I have no idea why", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 14 17:17:18 +0000 2014", + "id": 455756696913477632, + "id_str": "455756696913477632", + "text": "http://t.co/FWxGabuAp5 if you are looking for some new bleep bloops check these chiptunes by @inversephase they’re authentic bleep bloops", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 7, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 14 17:16:20 +0000 2014", + "id": 455756451542495233, + "id_str": "455756451542495233", + "text": "@matthew_d_green @runasand @zooko oh can we have Shameless Conspiracy Theory Power Hour, can we", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455756203248082944, + "in_reply_to_status_id_str": "455756203248082944", + "in_reply_to_user_id": 106234268, + "in_reply_to_user_id_str": "106234268", + "in_reply_to_screen_name": "matthew_d_green", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 14 17:15:37 +0000 2014", + "id": 455756270684110848, + "id_str": "455756270684110848", + "text": "@addelindh @justineaitel @cBekrar it’s like VHS and Betamax… our ideas are better but not ENOUGH better to actually win in the real world", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455755349833035776, + "in_reply_to_status_id_str": "455755349833035776", + "in_reply_to_user_id": 161662522, + "in_reply_to_user_id_str": "161662522", + "in_reply_to_screen_name": "addelindh", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 14 17:13:21 +0000 2014", + "id": 455755702297186304, + "id_str": "455755702297186304", + "text": "@sakjur @runasand @zooko Neel Mehta at Google and a Finnish group whose name eludes me at the moment", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455755419605299200, + "in_reply_to_status_id_str": "455755419605299200", + "in_reply_to_user_id": 63478005, + "in_reply_to_user_id_str": "63478005", + "in_reply_to_screen_name": "sakjur", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 14 17:12:04 +0000 2014", + "id": 455755380774035456, + "id_str": "455755380774035456", + "text": "RT @runasand: I just filed a new #FOIA request with the NSA asking for documents about 0-day vulnerabilities which it has disclosed to vend…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Mon Apr 14 17:05:51 +0000 2014", + "id": 455753813769879552, + "id_str": "455753813769879552", + "text": "I just filed a new #FOIA request with the NSA asking for documents about 0-day vulnerabilities which it has disclosed to vendors.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 19959946, + "id_str": "19959946" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 32, + "favorite_count": 30, + "entities": { + "hashtags": [ + { + "text": "FOIA", + "indices": [ + 19, + 24 + ] + } + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 32, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 14 17:11:55 +0000 2014", + "id": 455755339577954305, + "id_str": "455755339577954305", + "text": "I’m friends with enough different sorts of political oddballs that I expect some flak for that democracy remark :)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 14 17:06:55 +0000 2014", + "id": 455754084063399937, + "id_str": "455754084063399937", + "text": ".@justineaitel @cBekrar hey, I’ve always said that SSL is terrible. Just in the way that democracy is terrible except for everything else", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455748831209324544, + "in_reply_to_status_id_str": "455748831209324544", + "in_reply_to_user_id": 194090665, + "in_reply_to_user_id_str": "194090665", + "in_reply_to_screen_name": "justineaitel", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 6, + "favorite_count": 6, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 14 17:03:25 +0000 2014", + "id": 455753201829298176, + "id_str": "455753201829298176", + "text": "@runasand @zooko they would almost certainly not do it under their own name because yadda yadda capabilities bla bla OPSEC", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455747953689640962, + "in_reply_to_status_id_str": "455747953689640962", + "in_reply_to_user_id": 19959946, + "in_reply_to_user_id_str": "19959946", + "in_reply_to_screen_name": "runasand", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 14 17:02:58 +0000 2014", + "id": 455753088012648448, + "id_str": "455753088012648448", + "text": "@runasand @zooko I theorize they are behind some portion of security disclosures which are not credited to anyone in particular", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455747953689640962, + "in_reply_to_status_id_str": "455747953689640962", + "in_reply_to_user_id": 19959946, + "in_reply_to_user_id_str": "19959946", + "in_reply_to_screen_name": "runasand", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 14 16:53:02 +0000 2014", + "id": 455750586856910848, + "id_str": "455750586856910848", + "text": "@Shufflejoy @Talen_Lee … be sure to sand down the edges…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455736441817944064, + "in_reply_to_status_id_str": "455736441817944064", + "in_reply_to_user_id": 1567524811, + "in_reply_to_user_id_str": "1567524811", + "in_reply_to_screen_name": "Shufflejoy", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 14 16:16:54 +0000 2014", + "id": 455741496185331712, + "id_str": "455741496185331712", + "text": "@m1sp *quietly mortified at typo*", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 14 15:50:23 +0000 2014", + "id": 455734822796009472, + "id_str": "455734822796009472", + "text": "@nelhage sung roughly to the tune of \"God's love is like a circle\", because my subconscious is infected with this stuff", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 11806222, + "in_reply_to_user_id_str": "11806222", + "in_reply_to_screen_name": "nelhage", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 14 15:44:46 +0000 2014", + "id": 455733410745831424, + "id_str": "455733410745831424", + "text": ".@nelhage \nSo before you add a feature, ask and answer true:\nWhat happens when this feature\nComes back just to bite you?!", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 455731492006551552, + "in_reply_to_status_id_str": "455731492006551552", + "in_reply_to_user_id": 11806222, + "in_reply_to_user_id_str": "11806222", + "in_reply_to_screen_name": "nelhage", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 84, + "favorite_count": 60, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 14 15:42:00 +0000 2014", + "id": 455732714810118145, + "id_str": "455732714810118145", + "text": ".@nelhage let's sing the attack surface song!\nA feature is forever, rather like a pet~\nFeatures bite and features take whatever they can get", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 455731492006551552, + "in_reply_to_status_id_str": "455731492006551552", + "in_reply_to_user_id": 11806222, + "in_reply_to_user_id_str": "11806222", + "in_reply_to_screen_name": "nelhage", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 88, + "favorite_count": 66, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 14 15:32:32 +0000 2014", + "id": 455730328360210432, + "id_str": "455730328360210432", + "text": "@m1sp I am pleased with this http://t.co/uVVId279Hh", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 14 15:23:09 +0000 2014", + "id": 455727968820920320, + "id_str": "455727968820920320", + "text": "Yesterday I wrote more words than I threw out. It’s English, not C, so this is a good thing.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 5, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 14 15:19:43 +0000 2014", + "id": 455727104135815168, + "id_str": "455727104135815168", + "text": "@winocm then I’ll never know :(", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455727048993304576, + "in_reply_to_status_id_str": "455727048993304576", + "in_reply_to_user_id": 428413732, + "in_reply_to_user_id_str": "428413732", + "in_reply_to_screen_name": "winocm", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 14 15:19:12 +0000 2014", + "id": 455726973885906944, + "id_str": "455726973885906944", + "text": "@winocm is there a recording?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455726661594779648, + "in_reply_to_status_id_str": "455726661594779648", + "in_reply_to_user_id": 428413732, + "in_reply_to_user_id_str": "428413732", + "in_reply_to_screen_name": "winocm", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 14 15:14:32 +0000 2014", + "id": 455725800936206336, + "id_str": "455725800936206336", + "text": "@vogon but her racist attempt at excusing herself? So American :)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455724536407674880, + "in_reply_to_status_id_str": "455724536407674880", + "in_reply_to_user_id": 6326912, + "in_reply_to_user_id_str": "6326912", + "in_reply_to_screen_name": "vogon", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 14 15:14:03 +0000 2014", + "id": 455725680823898112, + "id_str": "455725680823898112", + "text": "@vogon overall it probably makes more sense to me that a non-American teen would say this and not expect the inquisition", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455724536407674880, + "in_reply_to_status_id_str": "455724536407674880", + "in_reply_to_user_id": 6326912, + "in_reply_to_user_id_str": "6326912", + "in_reply_to_screen_name": "vogon", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 14 15:12:09 +0000 2014", + "id": 455725202488721410, + "id_str": "455725202488721410", + "text": "RT @TweetsofOld: If everybody would order his goods from the cheaper mail order houses, the local stores would soon exist only in memory. K…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Mon Apr 14 15:11:23 +0000 2014", + "id": 455725009135480832, + "id_str": "455725009135480832", + "text": "If everybody would order his goods from the cheaper mail order houses, the local stores would soon exist only in memory. KY1917", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 66666549, + "id_str": "66666549" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 47, + "favorite_count": 29, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 47, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 14 15:11:45 +0000 2014", + "id": 455725098201522177, + "id_str": "455725098201522177", + "text": "@vogon her English is very native, but this is not uncommon for the Dutch", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455724536407674880, + "in_reply_to_status_id_str": "455724536407674880", + "in_reply_to_user_id": 6326912, + "in_reply_to_user_id_str": "6326912", + "in_reply_to_screen_name": "vogon", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 14 15:05:26 +0000 2014", + "id": 455723509977976832, + "id_str": "455723509977976832", + "text": "@Talen_Lee I’m one of those people who read a practically book-length criticism review of Twilight instead of reading Twilight", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455723103306272768, + "in_reply_to_status_id_str": "455723103306272768", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 14 15:03:19 +0000 2014", + "id": 455722976613527553, + "id_str": "455722976613527553", + "text": "@Talen_Lee also I think Various Words For Not Broad Daylight has similar page count per volume but *shudder*", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455721861175734272, + "in_reply_to_status_id_str": "455721861175734272", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 14 15:01:35 +0000 2014", + "id": 455722541739671552, + "id_str": "455722541739671552", + "text": "@Talen_Lee this is all very early but I don’t think she will be in any real long term trouble for it.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455722205301575680, + "in_reply_to_status_id_str": "455722205301575680", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 14 15:00:58 +0000 2014", + "id": 455722385208250368, + "id_str": "455722385208250368", + "text": "RT @bjornkuiper: @mpoppel @0xabad1dea She was apprehended after reporting her self in at the police station. big difference if you ask me.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Mon Apr 14 15:00:44 +0000 2014", + "id": 455722328144740354, + "id_str": "455722328144740354", + "text": "@mpoppel @0xabad1dea She was apprehended after reporting her self in at the police station. big difference if you ask me.", + "source": "TweetDeck", + "truncated": false, + "in_reply_to_status_id": 455719904659136512, + "in_reply_to_status_id_str": "455719904659136512", + "in_reply_to_user_id": 17568791, + "in_reply_to_user_id_str": "17568791", + "in_reply_to_screen_name": "mpoppel", + "user": { + "id": 249676809, + "id_str": "249676809" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 4, + "favorite_count": 0, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "mpoppel", + "name": "Michael van Poppel", + "id": 17568791, + "id_str": "17568791", + "indices": [ + 0, + 8 + ] + }, + { + "screen_name": "0xabad1dea", + "name": "MeliSSL", + "id": 126030998, + "id_str": "126030998", + "indices": [ + 9, + 20 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 4, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 14 14:58:47 +0000 2014", + "id": 455721838728216576, + "id_str": "455721838728216576", + "text": "RT @mpoppel: BREAKING -- 14-year-old Dutch girl who tweeted threat to American Airlines arrested in Rotterdam, police confirm", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Mon Apr 14 14:51:06 +0000 2014", + "id": 455719904659136512, + "id_str": "455719904659136512", + "text": "BREAKING -- 14-year-old Dutch girl who tweeted threat to American Airlines arrested in Rotterdam, police confirm", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 17568791, + "id_str": "17568791" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 5137, + "favorite_count": 2130, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 5137, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 14 14:58:31 +0000 2014", + "id": 455721771845828608, + "id_str": "455721771845828608", + "text": "@Talen_Lee … Emotional Wizard and the Tribulations of Witch School?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455721595005173760, + "in_reply_to_status_id_str": "455721595005173760", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 14 14:56:02 +0000 2014", + "id": 455721143610408960, + "id_str": "455721143610408960", + "text": "@Talen_Lee I consider my story YA… but it wouldn’t pass the morality filters at many YA publishers, I think", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455719591688155136, + "in_reply_to_status_id_str": "455719591688155136", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 14 14:49:32 +0000 2014", + "id": 455719509777993728, + "id_str": "455719509777993728", + "text": "@winocm @rejectionking they are, in fact, a security feature on top of being cute!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455719242609201152, + "in_reply_to_status_id_str": "455719242609201152", + "in_reply_to_user_id": 428413732, + "in_reply_to_user_id_str": "428413732", + "in_reply_to_screen_name": "winocm", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 14 14:06:12 +0000 2014", + "id": 455708604138799104, + "id_str": "455708604138799104", + "text": "@demize95 @m1sp @protosphere_ @hinanawi_chan it’s not like your new one is that different, thematically \n\nBut now I think you’re two people", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455708405018009601, + "in_reply_to_status_id_str": "455708405018009601", + "in_reply_to_user_id": 137133048, + "in_reply_to_user_id_str": "137133048", + "in_reply_to_screen_name": "demize95", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 14 14:04:48 +0000 2014", + "id": 455708253264314368, + "id_str": "455708253264314368", + "text": ".@m1sp I hope I never go so legit I have to change my avatar.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455705213777620993, + "in_reply_to_status_id_str": "455705213777620993", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 7, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 14 14:01:20 +0000 2014", + "id": 455707380450615296, + "id_str": "455707380450615296", + "text": "@demize95 @Shufflejoy where did they get this number 296 times more? It’s a LOT more than that. Oh wait they mean 2 *to the* 96 time more", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455706877414752256, + "in_reply_to_status_id_str": "455706877414752256", + "in_reply_to_user_id": 137133048, + "in_reply_to_user_id_str": "137133048", + "in_reply_to_screen_name": "demize95", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 14 13:57:07 +0000 2014", + "id": 455706317215522816, + "id_str": "455706317215522816", + "text": "@Shufflejoy basically nothing. That’s the good thing about IPv6.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455705481718157312, + "in_reply_to_status_id_str": "455705481718157312", + "in_reply_to_user_id": 1567524811, + "in_reply_to_user_id_str": "1567524811", + "in_reply_to_screen_name": "Shufflejoy", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 14 13:53:06 +0000 2014", + "id": 455705308179218432, + "id_str": "455705308179218432", + "text": "@hinanawi_chan @protosphere_ @m1sp you’re really a… Shinto practitioner with magic powers!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455705063688642561, + "in_reply_to_status_id_str": "455705063688642561", + "in_reply_to_user_id": 2336014178, + "in_reply_to_user_id_str": "2336014178", + "in_reply_to_screen_name": "hinanawi_chan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 14 13:52:14 +0000 2014", + "id": 455705090826199040, + "id_str": "455705090826199040", + "text": "@DrPizza we got an emoji emergency 🚨", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455699159421419520, + "in_reply_to_status_id_str": "455699159421419520", + "in_reply_to_user_id": 11375732, + "in_reply_to_user_id_str": "11375732", + "in_reply_to_screen_name": "DrPizza", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 14 13:51:17 +0000 2014", + "id": 455704848810659840, + "id_str": "455704848810659840", + "text": "@protosphere_ @m1sp @hinanawi_chan Same. Though obviously someone’s choice in new avatar can’t be “wrong.” Just maybe disorienting to me", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455699341131276288, + "in_reply_to_status_id_str": "455699341131276288", + "in_reply_to_user_id": 354662280, + "in_reply_to_user_id_str": "354662280", + "in_reply_to_screen_name": "protosphere_", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 14 13:48:39 +0000 2014", + "id": 455704188513951744, + "id_str": "455704188513951744", + "text": "@FredericJacobs I thought this happened to me then I realized I was checking the wrong email account entirely (suggesting just in case)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455695026228441089, + "in_reply_to_status_id_str": "455695026228441089", + "in_reply_to_user_id": 18018877, + "in_reply_to_user_id_str": "18018877", + "in_reply_to_screen_name": "FredericJacobs", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 14 13:39:53 +0000 2014", + "id": 455701981399896065, + "id_str": "455701981399896065", + "text": "@Talen_Lee @m1sp I hope my half of the conversation isn’t too… leaky. I try to mind that.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455666523890147328, + "in_reply_to_status_id_str": "455666523890147328", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 14 13:38:06 +0000 2014", + "id": 455701531934093312, + "id_str": "455701531934093312", + "text": "@alt_m1sp let’s just settle on certain blood relatives as a canonical example :)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455701256904777728, + "in_reply_to_status_id_str": "455701256904777728", + "in_reply_to_user_id": 2401670173, + "in_reply_to_user_id_str": "2401670173", + "in_reply_to_screen_name": "alt_m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 14 13:36:28 +0000 2014", + "id": 455701122423193600, + "id_str": "455701122423193600", + "text": "@alt_m1sp the “other people” might disagree as they are hardly strangers", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455700879752982528, + "in_reply_to_status_id_str": "455700879752982528", + "in_reply_to_user_id": 2401670173, + "in_reply_to_user_id_str": "2401670173", + "in_reply_to_screen_name": "alt_m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 14 13:32:18 +0000 2014", + "id": 455700072253370368, + "id_str": "455700072253370368", + "text": "@alt_m1sp I do it sometimes too, for strangers who make demands, or… other people who come with a high emotional tax", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455638467892891649, + "in_reply_to_status_id_str": "455638467892891649", + "in_reply_to_user_id": 2401670173, + "in_reply_to_user_id_str": "2401670173", + "in_reply_to_screen_name": "alt_m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 14 12:27:34 +0000 2014", + "id": 455683781811519488, + "id_str": "455683781811519488", + "text": "@m1sp but here I just mean in the sense of an “ordinary” last name (father’s side name)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455633880804900864, + "in_reply_to_status_id_str": "455633880804900864", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 14 12:26:37 +0000 2014", + "id": 455683543814135808, + "id_str": "455683543814135808", + "text": "@m1sp well, to the governor of his province anyway; he’s distantly related to some rather important people on his father’s side too", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455633880804900864, + "in_reply_to_status_id_str": "455633880804900864", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 14 04:55:33 +0000 2014", + "id": 455570026360471552, + "id_str": "455570026360471552", + "text": "@thequux @DavidLongshore I maintain that, no matter what JavaScript might say, my name is in fact a string not an integer", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 455569776408948736, + "in_reply_to_status_id_str": "455569776408948736", + "in_reply_to_user_id": 29681044, + "in_reply_to_user_id_str": "29681044", + "in_reply_to_screen_name": "thequux", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 14 04:00:37 +0000 2014", + "id": 455556205835198464, + "id_str": "455556205835198464", + "text": "RT @DavidLongshore: Library sniped on alphabetizing @0xabad1dea. I think you ignore '0x' like 'Mc'; then is 'a' the digit after 9, or do yo…", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Mon Apr 14 03:58:04 +0000 2014", + "id": 455555560801198081, + "id_str": "455555560801198081", + "text": "Library sniped on alphabetizing @0xabad1dea. I think you ignore '0x' like 'Mc'; then is 'a' the digit after 9, or do you convert to base 10?", + "source": "Plume for Android", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 287433755, + "id_str": "287433755" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 1, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "0xabad1dea", + "name": "MeliSSL ", + "id": 126030998, + "id_str": "126030998", + "indices": [ + 32, + 43 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 2, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 14 03:37:29 +0000 2014", + "id": 455550380362186752, + "id_str": "455550380362186752", + "text": "@TweetsofOld ... that's a lot less exciting than what I was imagining.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 455550229597544448, + "in_reply_to_status_id_str": "455550229597544448", + "in_reply_to_user_id": 66666549, + "in_reply_to_user_id_str": "66666549", + "in_reply_to_screen_name": "TweetsofOld", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 14 03:32:19 +0000 2014", + "id": 455549083391123456, + "id_str": "455549083391123456", + "text": "@TweetsofOld for her what", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455548443776147456, + "in_reply_to_status_id_str": "455548443776147456", + "in_reply_to_user_id": 66666549, + "in_reply_to_user_id_str": "66666549", + "in_reply_to_screen_name": "TweetsofOld", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 14 02:55:22 +0000 2014", + "id": 455539783800864768, + "id_str": "455539783800864768", + "text": "@m1sp everyone knows what agnatic means, right? http://t.co/zNlTJKcdmx", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 14 02:53:47 +0000 2014", + "id": 455539386114121728, + "id_str": "455539386114121728", + "text": "@DavidLongshore my book is by M. B. Elliott but honestly it's because I'm not very fond of \"Melissa\" (but not enough so to change it)", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 455538878556807168, + "in_reply_to_status_id_str": "455538878556807168", + "in_reply_to_user_id": 287433755, + "in_reply_to_user_id_str": "287433755", + "in_reply_to_screen_name": "DavidLongshore", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 14 02:47:02 +0000 2014", + "id": 455537686716350465, + "id_str": "455537686716350465", + "text": "@DavidLongshore it's been mentioned to me 3001 might be his worst book, but I don't actually know, I think it's the only one I've read", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 455537396248248320, + "in_reply_to_status_id_str": "455537396248248320", + "in_reply_to_user_id": 287433755, + "in_reply_to_user_id_str": "287433755", + "in_reply_to_screen_name": "DavidLongshore", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 14 02:40:32 +0000 2014", + "id": 455536049675309057, + "id_str": "455536049675309057", + "text": "@DavidLongshore oh, or it occurs to me you might assign feminine pronouns to can't-remember-their-name authors, which is actually cool", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 455535257845256192, + "in_reply_to_status_id_str": "455535257845256192", + "in_reply_to_user_id": 287433755, + "in_reply_to_user_id_str": "287433755", + "in_reply_to_screen_name": "DavidLongshore", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 14 02:39:03 +0000 2014", + "id": 455535676839460865, + "id_str": "455535676839460865", + "text": "@DavidLongshore (I read it in 3001 by Arthur C. Clarke)", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 455535257845256192, + "in_reply_to_status_id_str": "455535257845256192", + "in_reply_to_user_id": 287433755, + "in_reply_to_user_id_str": "287433755", + "in_reply_to_screen_name": "DavidLongshore", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 14 02:38:41 +0000 2014", + "id": 455535585021923328, + "id_str": "455535585021923328", + "text": "@DavidLongshore Ah. The book I read that line in was written by a man, and you used a feminine pronoun, so maybe it's in two diff books?", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 455535257845256192, + "in_reply_to_status_id_str": "455535257845256192", + "in_reply_to_user_id": 287433755, + "in_reply_to_user_id_str": "287433755", + "in_reply_to_screen_name": "DavidLongshore", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 14 02:34:51 +0000 2014", + "id": 455534621925863425, + "id_str": "455534621925863425", + "text": "@DavidLongshore @Shufflejoy like, \"whoa I actually have opinions on Church Fathers\" level of know too much, about Christianity anyway.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 455533895526539265, + "in_reply_to_status_id_str": "455533895526539265", + "in_reply_to_user_id": 287433755, + "in_reply_to_user_id_str": "287433755", + "in_reply_to_screen_name": "DavidLongshore", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 14 02:34:08 +0000 2014", + "id": 455534440622870528, + "id_str": "455534440622870528", + "text": "@DavidLongshore @Shufflejoy ... me? What made you think I have so little knowledge of religion?! I know entirely too much!", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 455533895526539265, + "in_reply_to_status_id_str": "455533895526539265", + "in_reply_to_user_id": 287433755, + "in_reply_to_user_id_str": "287433755", + "in_reply_to_screen_name": "DavidLongshore", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 14 02:19:28 +0000 2014", + "id": 455530746963591168, + "id_str": "455530746963591168", + "text": "@m1sp actually I amend my assertion to say that Rashk does not know about the care and keeping of firearms but he has good aim :)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455529713029480448, + "in_reply_to_status_id_str": "455529713029480448", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 14 02:18:52 +0000 2014", + "id": 455530597814108160, + "id_str": "455530597814108160", + "text": "@m1sp look, she WOULD have hit Tsovinar if not for the whole goddess thing, not her fault", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455529713029480448, + "in_reply_to_status_id_str": "455529713029480448", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 14 02:17:59 +0000 2014", + "id": 455530373427257344, + "id_str": "455530373427257344", + "text": "RT @nelhage: Akamai acknowledges that their \"secure heap\" protection is insufficient, will replace all certificates after all: https://t.co…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Mon Apr 14 00:57:48 +0000 2014", + "id": 455510198363250688, + "id_str": "455510198363250688", + "text": "Akamai acknowledges that their \"secure heap\" protection is insufficient, will replace all certificates after all: https://t.co/D3G9AbcYen", + "source": "Twitter for Android", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 11806222, + "id_str": "11806222" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 38, + "favorite_count": 13, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "https://t.co/D3G9AbcYen", + "expanded_url": "https://blogs.akamai.com/2014/04/heartbleed-update-v3.html", + "display_url": "blogs.akamai.com/2014/04/heartb…", + "indices": [ + 114, + 137 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 38, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 14 02:14:39 +0000 2014", + "id": 455529534629380096, + "id_str": "455529534629380096", + "text": "@m1sp the only named character who knows how to operate a firearm is Oseni", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455529367603404800, + "in_reply_to_status_id_str": "455529367603404800", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 14 02:11:37 +0000 2014", + "id": 455528772641759232, + "id_str": "455528772641759232", + "text": "@m1sp well actually Fluens really is pretty much at fault for Eodar’s death even if it was an accident in response to reasonable fear", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455528299410644992, + "in_reply_to_status_id_str": "455528299410644992", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 14 02:10:20 +0000 2014", + "id": 455528449919430656, + "id_str": "455528449919430656", + "text": "RT @jmgosney: Updated my Cloudflare Heartbleed Challenge writeup to show that I found the prime 11 times in 314,982 requests https://t.co/…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sun Apr 13 20:39:14 +0000 2014", + "id": 455445127092129792, + "id_str": "455445127092129792", + "text": "Updated my Cloudflare Heartbleed Challenge writeup to show that I found the prime 11 times in 314,982 requests https://t.co/xSZwwsQVl6", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 312383587, + "id_str": "312383587" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 69, + "favorite_count": 65, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "https://t.co/xSZwwsQVl6", + "expanded_url": "https://gist.github.com/epixoip/10570627", + "display_url": "gist.github.com/epixoip/105706…", + "indices": [ + 112, + 135 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 69, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 14 02:07:50 +0000 2014", + "id": 455527820778045440, + "id_str": "455527820778045440", + "text": "@frkbmb most people think it means leather pants with pretty ruffles", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455491537825062913, + "in_reply_to_status_id_str": "455491537825062913", + "in_reply_to_user_id": 540721095, + "in_reply_to_user_id_str": "540721095", + "in_reply_to_screen_name": "frkbmb", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 14 02:06:54 +0000 2014", + "id": 455527584118632449, + "id_str": "455527584118632449", + "text": "@DavidLongshore @Shufflejoy whoa I read that book when I was, like, 11. I was still super Christian, and very offended.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455489837420646400, + "in_reply_to_status_id_str": "455489837420646400", + "in_reply_to_user_id": 287433755, + "in_reply_to_user_id_str": "287433755", + "in_reply_to_screen_name": "DavidLongshore", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 14 02:05:40 +0000 2014", + "id": 455527276650983425, + "id_str": "455527276650983425", + "text": "Oh and I thought my BFF down under was still asleep because New Profile hides @ replies until you manually click something #UIRage", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 14 02:03:21 +0000 2014", + "id": 455526691579101184, + "id_str": "455526691579101184", + "text": "@puellavulnerata @sergeybratus this may answer your question. You can swipe on any tweet to find alternate chains http://t.co/l4onsG6Bjy", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455526231832662016, + "in_reply_to_status_id_str": "455526231832662016", + "in_reply_to_user_id": 54666727, + "in_reply_to_user_id_str": "54666727", + "in_reply_to_screen_name": "puellavulnerata", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 14 01:50:21 +0000 2014", + "id": 455523423285178368, + "id_str": "455523423285178368", + "text": "@puellavulnerata New New New Twitter*", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 455523323376463874, + "in_reply_to_status_id_str": "455523323376463874", + "in_reply_to_user_id": 54666727, + "in_reply_to_user_id_str": "54666727", + "in_reply_to_screen_name": "puellavulnerata", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 14 01:26:37 +0000 2014", + "id": 455517449321193472, + "id_str": "455517449321193472", + "text": "@Kufat you still have Old Profile", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 455517349232525313, + "in_reply_to_status_id_str": "455517349232525313", + "in_reply_to_user_id": 207691003, + "in_reply_to_user_id_str": "207691003", + "in_reply_to_screen_name": "Kufat", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 14 01:26:37 +0000 2014", + "id": 455517449321193472, + "id_str": "455517449321193472", + "text": "@Kufat you still have Old Profile", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 455517349232525313, + "in_reply_to_status_id_str": "455517349232525313", + "in_reply_to_user_id": 207691003, + "in_reply_to_user_id_str": "207691003", + "in_reply_to_screen_name": "Kufat", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 14 01:25:48 +0000 2014", + "id": 455517241149517824, + "id_str": "455517241149517824", + "text": "@winocm @demize95 a new face appears!", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 455516990564614144, + "in_reply_to_status_id_str": "455516990564614144", + "in_reply_to_user_id": 428413732, + "in_reply_to_user_id_str": "428413732", + "in_reply_to_screen_name": "winocm", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 14 01:23:41 +0000 2014", + "id": 455516710578049024, + "id_str": "455516710578049024", + "text": "@demize95 I only see one of these things and honestly it doesn't stand out very much! http://t.co/7nCkAzPfF3", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 455516012033474560, + "in_reply_to_status_id_str": "455516012033474560", + "in_reply_to_user_id": 137133048, + "in_reply_to_user_id_str": "137133048", + "in_reply_to_screen_name": "demize95", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 14 01:19:41 +0000 2014", + "id": 455515701634412544, + "id_str": "455515701634412544", + "text": "@demize95 ... the subreddit! right! >.>", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 455515580049543169, + "in_reply_to_status_id_str": "455515580049543169", + "in_reply_to_user_id": 137133048, + "in_reply_to_user_id_str": "137133048", + "in_reply_to_screen_name": "demize95", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 14 01:19:24 +0000 2014", + "id": 455515631232634881, + "id_str": "455515631232634881", + "text": "@m1sp politics dot jpeg http://t.co/ZJ5LPPRljk", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "sl" + }, + { + "created_at": "Mon Apr 14 01:17:55 +0000 2014", + "id": 455515258002894848, + "id_str": "455515258002894848", + "text": "whose idea was it to make New Profiles use variable-sized text to reflect relative popularity of tweets? it's a visual MESS. #UIRage", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 9, + "favorite_count": 12, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 13 22:59:39 +0000 2014", + "id": 455480463327768576, + "id_str": "455480463327768576", + "text": "@jvillaga at least I have been to the mountain top of \"finished ONE book\" so I know I totally can do it if I keep at it.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 455479671631536128, + "in_reply_to_status_id_str": "455479671631536128", + "in_reply_to_user_id": 16982779, + "in_reply_to_user_id_str": "16982779", + "in_reply_to_screen_name": "jvillaga", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 13 22:59:16 +0000 2014", + "id": 455480366535835650, + "id_str": "455480366535835650", + "text": "@jvillaga I swear I do like writing when I don't feel like I'm totally stuck in a rut :)", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 455479671631536128, + "in_reply_to_status_id_str": "455479671631536128", + "in_reply_to_user_id": 16982779, + "in_reply_to_user_id_str": "16982779", + "in_reply_to_screen_name": "jvillaga", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 13 22:46:34 +0000 2014", + "id": 455477170841075712, + "id_str": "455477170841075712", + "text": "@zhuowei ... I'm melting! ... D:", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 455476808515715072, + "in_reply_to_status_id_str": "455476808515715072", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 13 22:37:49 +0000 2014", + "id": 455474967237640192, + "id_str": "455474967237640192", + "text": "Thrown out 10,000 words and kept 20,000 so far. Most of the trashed stuff is rewrites of the same chapter", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 13 22:34:07 +0000 2014", + "id": 455474035993112576, + "id_str": "455474035993112576", + "text": "Just threw out another thousand words. Writing is hard, everyone!", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 7, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 13 20:58:26 +0000 2014", + "id": 455449958540673024, + "id_str": "455449958540673024", + "text": "@MowtenDoo @ELLIOTTCABLE I see literally nothing wrong with this", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455446114372562945, + "in_reply_to_status_id_str": "455446114372562945", + "in_reply_to_user_id": 425913671, + "in_reply_to_user_id_str": "425913671", + "in_reply_to_screen_name": "MowtenDoo", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 13 20:51:43 +0000 2014", + "id": 455448267904786432, + "id_str": "455448267904786432", + "text": "RT @psobot: Last night is kind of a blur. Don't drink and search for domain names. http://t.co/WyDBhvXUd7", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sun Apr 13 19:29:57 +0000 2014", + "id": 455427689894010881, + "id_str": "455427689894010881", + "text": "Last night is kind of a blur. Don't drink and search for domain names. http://t.co/WyDBhvXUd7", + "source": "Twitter for Mac", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 19135819, + "id_str": "19135819" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 31, + "favorite_count": 47, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ], + "media": [ + { + "id": 455427689784938496, + "id_str": "455427689784938496", + "indices": [ + 71, + 93 + ], + "media_url": "http://pbs.twimg.com/media/BlIBEiaCEAAny97.png", + "media_url_https": "https://pbs.twimg.com/media/BlIBEiaCEAAny97.png", + "url": "http://t.co/WyDBhvXUd7", + "display_url": "pic.twitter.com/WyDBhvXUd7", + "expanded_url": "http://twitter.com/psobot/status/455427689894010881/photo/1", + "type": "photo", + "sizes": { + "large": { + "w": 817, + "h": 104, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 104, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 43, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 76, + "resize": "fit" + } + } + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 31, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 13 20:14:47 +0000 2014", + "id": 455438971414544384, + "id_str": "455438971414544384", + "text": "@thegrugq you can't shame me", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 455438132985339904, + "in_reply_to_status_id_str": "455438132985339904", + "in_reply_to_user_id": 18983429, + "in_reply_to_user_id_str": "18983429", + "in_reply_to_screen_name": "thegrugq", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 13 19:32:28 +0000 2014", + "id": 455428321787273216, + "id_str": "455428321787273216", + "text": "@kivikakk did you still need that CRT? http://t.co/hSaVxYAgBu", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 67204542, + "in_reply_to_user_id_str": "67204542", + "in_reply_to_screen_name": "kivikakk", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 13 18:59:39 +0000 2014", + "id": 455420064624164864, + "id_str": "455420064624164864", + "text": ".@ClaudioDekker you should see all the selfies I *don't* post http://t.co/ViEWZV0cLs", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 455419469989699584, + "in_reply_to_status_id_str": "455419469989699584", + "in_reply_to_user_id": 78721809, + "in_reply_to_user_id_str": "78721809", + "in_reply_to_screen_name": "ClaudioDekker", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 13, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 13 18:57:06 +0000 2014", + "id": 455419422057201664, + "id_str": "455419422057201664", + "text": "@bobpoekert @Shufflejoy 🏆 would work better IMO", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455418724749946880, + "in_reply_to_status_id_str": "455418724749946880", + "in_reply_to_user_id": 191945961, + "in_reply_to_user_id_str": "191945961", + "in_reply_to_screen_name": "bobpoekert", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 13 18:56:27 +0000 2014", + "id": 455419259183955968, + "id_str": "455419259183955968", + "text": "@afreak that is explicitly the intention", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 455418644743213056, + "in_reply_to_status_id_str": "455418644743213056", + "in_reply_to_user_id": 1476431, + "in_reply_to_user_id_str": "1476431", + "in_reply_to_screen_name": "afreak", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 13 18:49:35 +0000 2014", + "id": 455417529825898496, + "id_str": "455417529825898496", + "text": "but if I put a bandaid over my camera how would I waste time playing with the interstellar selfie station http://t.co/RyY3bTS5Vo", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 10, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 13 18:38:35 +0000 2014", + "id": 455414761560489984, + "id_str": "455414761560489984", + "text": "@frkbmb was it? I bought a copy and never got it to work on my computer. Just got to read the player’s guide over and over. 😐", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455414544542621696, + "in_reply_to_status_id_str": "455414544542621696", + "in_reply_to_user_id": 540721095, + "in_reply_to_user_id_str": "540721095", + "in_reply_to_screen_name": "frkbmb", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 13 18:37:36 +0000 2014", + "id": 455414514440478721, + "id_str": "455414514440478721", + "text": "RT @matthew_d_green: New blog from the OpenSSL Foundation. Worth reading. http://t.co/7fmHjrtSwL", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sun Apr 13 18:29:17 +0000 2014", + "id": 455412422116147201, + "id_str": "455412422116147201", + "text": "New blog from the OpenSSL Foundation. Worth reading. http://t.co/7fmHjrtSwL", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 106234268, + "id_str": "106234268" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 142, + "favorite_count": 89, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/7fmHjrtSwL", + "expanded_url": "http://veridicalsystems.com/blog/of-money-responsibility-and-pride/", + "display_url": "veridicalsystems.com/blog/of-money-…", + "indices": [ + 53, + 75 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 142, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 13 18:33:57 +0000 2014", + "id": 455413598941360128, + "id_str": "455413598941360128", + "text": "@WhiteMageSlave this will please you http://t.co/8HFlIHeHkQ", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 90791634, + "in_reply_to_user_id_str": "90791634", + "in_reply_to_screen_name": "WhiteMageSlave", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 13 18:28:08 +0000 2014", + "id": 455412134030360576, + "id_str": "455412134030360576", + "text": "@attritionorg I hope you haven't seen this one yet but who am I kidding http://t.co/ziu4UVlmAl", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 32625798, + "in_reply_to_user_id_str": "32625798", + "in_reply_to_screen_name": "attritionorg", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 13 17:53:22 +0000 2014", + "id": 455403383055474689, + "id_str": "455403383055474689", + "text": "@tips_fedora she says she is anyway, though I can't help notice her tweets follow the \"daddy's paypal\" pattern", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 455401092961284097, + "in_reply_to_status_id_str": "455401092961284097", + "in_reply_to_user_id": 1618762759, + "in_reply_to_user_id_str": "1618762759", + "in_reply_to_screen_name": "tips_fedora", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 13 17:39:58 +0000 2014", + "id": 455400012701515776, + "id_str": "455400012701515776", + "text": "@edcetera what is the difference between a real fake bomb threat and a fake fake bomb threat?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455399661117792256, + "in_reply_to_status_id_str": "455399661117792256", + "in_reply_to_user_id": 4662351, + "in_reply_to_user_id_str": "4662351", + "in_reply_to_screen_name": "edcetera", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 13 17:34:31 +0000 2014", + "id": 455398641805844480, + "id_str": "455398641805844480", + "text": "@demize95 @cyclerunner why do you assume he is not also a robot", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455398459831361536, + "in_reply_to_status_id_str": "455398459831361536", + "in_reply_to_user_id": 137133048, + "in_reply_to_user_id_str": "137133048", + "in_reply_to_screen_name": "demize95", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 13 17:21:12 +0000 2014", + "id": 455395291374829569, + "id_str": "455395291374829569", + "text": ".@cyclerunner the tweets are real, but everyone on twitter is fake (especially me) (I’m not even really a girl) (I’m a ROBOT)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455394770941403136, + "in_reply_to_status_id_str": "455394770941403136", + "in_reply_to_user_id": 20166253, + "in_reply_to_user_id_str": "20166253", + "in_reply_to_screen_name": "cyclerunner", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 13 17:19:28 +0000 2014", + "id": 455394852294119425, + "id_str": "455394852294119425", + "text": "@MechMK1 … yes. \n\nWhite people like to think they fixed it but they only like 60% fixed it in ways that enable ignoring the rest", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455394424244428800, + "in_reply_to_status_id_str": "455394424244428800", + "in_reply_to_user_id": 81556825, + "in_reply_to_user_id_str": "81556825", + "in_reply_to_screen_name": "MechMK1", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 13 17:16:55 +0000 2014", + "id": 455394212994093056, + "id_str": "455394212994093056", + "text": "Like all of that is fractally wrong but I think she might be a minor?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 13 17:15:22 +0000 2014", + "id": 455393821304827904, + "id_str": "455393821304827904", + "text": "Struggling with the ethics of posting pics of a girl making a fake terrorist bomb threat on twitter and then being like but I’m white", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 5, + "favorite_count": 5, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 13 16:57:04 +0000 2014", + "id": 455389215606706176, + "id_str": "455389215606706176", + "text": "@pchengi oh my gods you don’t even know \n\nMuahahaha 😈", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455388746599645185, + "in_reply_to_status_id_str": "455388746599645185", + "in_reply_to_user_id": 22619802, + "in_reply_to_user_id_str": "22619802", + "in_reply_to_screen_name": "pchengi", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 13 16:51:02 +0000 2014", + "id": 455387695771303937, + "id_str": "455387695771303937", + "text": "@pchengi I am definitely working on it and it's called resplendent in the sky :)", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 455383262404567041, + "in_reply_to_status_id_str": "455383262404567041", + "in_reply_to_user_id": 22619802, + "in_reply_to_user_id_str": "22619802", + "in_reply_to_screen_name": "pchengi", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 13 16:29:08 +0000 2014", + "id": 455382184900448257, + "id_str": "455382184900448257", + "text": "@Shufflejoy @thevitaes I hope apple updates theirs to lose the high-gloss look", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455381401068900352, + "in_reply_to_status_id_str": "455381401068900352", + "in_reply_to_user_id": 1567524811, + "in_reply_to_user_id_str": "1567524811", + "in_reply_to_screen_name": "Shufflejoy", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 13 16:28:42 +0000 2014", + "id": 455382077832462336, + "id_str": "455382077832462336", + "text": "@pchengi a little :)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455381663812694017, + "in_reply_to_status_id_str": "455381663812694017", + "in_reply_to_user_id": 22619802, + "in_reply_to_user_id_str": "22619802", + "in_reply_to_screen_name": "pchengi", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "pl" + }, + { + "created_at": "Sun Apr 13 16:24:21 +0000 2014", + "id": 455380983114895360, + "id_str": "455380983114895360", + "text": "@thevitaes @Shufflejoy it’s supposed to be ringer silenced so I don’t know why some fonts make it look like a Taco Bell", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455380164697133056, + "in_reply_to_status_id_str": "455380164697133056", + "in_reply_to_user_id": 15586240, + "in_reply_to_user_id_str": "15586240", + "in_reply_to_screen_name": "thevitaes", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 13 16:11:41 +0000 2014", + "id": 455377796899278848, + "id_str": "455377796899278848", + "text": "@demize95 “T_T”", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455377701889511424, + "in_reply_to_status_id_str": "455377701889511424", + "in_reply_to_user_id": 137133048, + "in_reply_to_user_id_str": "137133048", + "in_reply_to_screen_name": "demize95", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "tl" + }, + { + "created_at": "Sun Apr 13 16:10:59 +0000 2014", + "id": 455377619878674432, + "id_str": "455377619878674432", + "text": "@demize95 😭", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455377176343216129, + "in_reply_to_status_id_str": "455377176343216129", + "in_reply_to_user_id": 137133048, + "in_reply_to_user_id_str": "137133048", + "in_reply_to_screen_name": "demize95", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Sun Apr 13 16:04:40 +0000 2014", + "id": 455376028912078848, + "id_str": "455376028912078848", + "text": "Is there really no fire extinguisher emoji? This is a critical gap in my ability to communicate in wingdings", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 6, + "favorite_count": 8, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 13 15:57:12 +0000 2014", + "id": 455374150375587840, + "id_str": "455374150375587840", + "text": "@FredericJacobs … lol wut", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455366018844479489, + "in_reply_to_status_id_str": "455366018844479489", + "in_reply_to_user_id": 18018877, + "in_reply_to_user_id_str": "18018877", + "in_reply_to_screen_name": "FredericJacobs", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "de" + }, + { + "created_at": "Sun Apr 13 15:55:30 +0000 2014", + "id": 455373723642900480, + "id_str": "455373723642900480", + "text": "@eevee extinguish your concerns", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455359931169128448, + "in_reply_to_status_id_str": "455359931169128448", + "in_reply_to_user_id": 14412937, + "in_reply_to_user_id_str": "14412937", + "in_reply_to_screen_name": "eevee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 13 15:52:21 +0000 2014", + "id": 455372928948109312, + "id_str": "455372928948109312", + "text": "@CuteBoyHorse @frkbmb “what are you, some kind of commie?!” “Um… yes?” “… (well we’re out of retorts)”", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455352586867339264, + "in_reply_to_status_id_str": "455352586867339264", + "in_reply_to_user_id": 1265920614, + "in_reply_to_user_id_str": "1265920614", + "in_reply_to_screen_name": "CuteBoyHorse", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 13 15:51:34 +0000 2014", + "id": 455372730767269888, + "id_str": "455372730767269888", + "text": "@CuteBoyHorse @frkbmb I had a professor who was a communist and his thing was acting puzzled when the local conservatives were so shocked", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455352586867339264, + "in_reply_to_status_id_str": "455352586867339264", + "in_reply_to_user_id": 1265920614, + "in_reply_to_user_id_str": "1265920614", + "in_reply_to_screen_name": "CuteBoyHorse", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 13 15:31:53 +0000 2014", + "id": 455367777378131968, + "id_str": "455367777378131968", + "text": "@nickLbrothers @frkbmb @OLAASM I’m so 1% that my emoticons are in color 💵💵", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455254892467064832, + "in_reply_to_status_id_str": "455254892467064832", + "in_reply_to_user_id": 286826025, + "in_reply_to_user_id_str": "286826025", + "in_reply_to_screen_name": "nickLbrothers", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 13 15:18:05 +0000 2014", + "id": 455364306629316608, + "id_str": "455364306629316608", + "text": "@Kufat but… but Braintree is…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455351519546998784, + "in_reply_to_status_id_str": "455351519546998784", + "in_reply_to_user_id": 207691003, + "in_reply_to_user_id_str": "207691003", + "in_reply_to_screen_name": "Kufat", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 13 15:17:06 +0000 2014", + "id": 455364059295399936, + "id_str": "455364059295399936", + "text": "@zhuowei wow the whole thing looks really accurate now!!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455214947891281920, + "in_reply_to_status_id_str": "455214947891281920", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 13 04:21:27 +0000 2014", + "id": 455199059876540416, + "id_str": "455199059876540416", + "text": "@zhuowei ... whoa ...\n\nthe color flip effect might need to be slowed down XD", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 455198607051096064, + "in_reply_to_status_id_str": "455198607051096064", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 13 04:16:52 +0000 2014", + "id": 455197905230372865, + "id_str": "455197905230372865", + "text": "@zhuowei @m1sp lookit my hand-drawn four-color lookup table lookit. http://t.co/YEH7LffvA2", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 455188508341043200, + "in_reply_to_status_id_str": "455188508341043200", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 13 03:43:42 +0000 2014", + "id": 455189558872014848, + "id_str": "455189558872014848", + "text": "@zhuowei but it's not exactly the same.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 455188508341043200, + "in_reply_to_status_id_str": "455188508341043200", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 13 03:42:58 +0000 2014", + "id": 455189376247808000, + "id_str": "455189376247808000", + "text": "@zhuowei you may find this enlightening. It's what I based it off of. http://t.co/A29AaRK7EM", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 455188508341043200, + "in_reply_to_status_id_str": "455188508341043200", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 13 03:30:42 +0000 2014", + "id": 455186287675580416, + "id_str": "455186287675580416", + "text": "@zhuowei I am thinking about implementing a similar effect elsewhere so I was trying to remember what on earth I was doing", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 455184603431460864, + "in_reply_to_status_id_str": "455184603431460864", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 13 03:17:37 +0000 2014", + "id": 455182995218268160, + "id_str": "455182995218268160", + "text": "@zhuowei lol you're good", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 455179634837962752, + "in_reply_to_status_id_str": "455179634837962752", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 13 02:55:14 +0000 2014", + "id": 455177363501088768, + "id_str": "455177363501088768", + "text": "Dear abadidea circa 2011: document what the constants 0xfa00, 0x140, and 320 (this one's in decimal) mean. Thanks. For nothing.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 8, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 13 02:02:26 +0000 2014", + "id": 455164075174273024, + "id_str": "455164075174273024", + "text": "@eiridescent @Shufflejoy I don’t think anyone really wants their cat randomly bringing live snakes into the house 🐍", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455163834886406144, + "in_reply_to_status_id_str": "455163834886406144", + "in_reply_to_user_id": 298310874, + "in_reply_to_user_id_str": "298310874", + "in_reply_to_screen_name": "eiridescent", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 13 02:00:42 +0000 2014", + "id": 455163635950960640, + "id_str": "455163635950960640", + "text": "@eiridescent @Shufflejoy apparently so she could learn how to kill snakes…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455162745814409216, + "in_reply_to_status_id_str": "455162745814409216", + "in_reply_to_user_id": 298310874, + "in_reply_to_user_id_str": "298310874", + "in_reply_to_screen_name": "eiridescent", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 13 01:59:59 +0000 2014", + "id": 455163458468974592, + "id_str": "455163458468974592", + "text": "@eiridescent @Shufflejoy there is an anecdote about someone getting bit by a snake and her cat started bringing her not-quite-dead snakes.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455162745814409216, + "in_reply_to_status_id_str": "455162745814409216", + "in_reply_to_user_id": 298310874, + "in_reply_to_user_id_str": "298310874", + "in_reply_to_screen_name": "eiridescent", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 13 01:57:46 +0000 2014", + "id": 455162898013511680, + "id_str": "455162898013511680", + "text": "@eiridescent @Shufflejoy cats bring dead things to kittens and almost-dead things to older kittens; so it *is* an expression of providing", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455160210391171072, + "in_reply_to_status_id_str": "455160210391171072", + "in_reply_to_user_id": 298310874, + "in_reply_to_user_id_str": "298310874", + "in_reply_to_screen_name": "eiridescent", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 13 01:55:49 +0000 2014", + "id": 455162407552573440, + "id_str": "455162407552573440", + "text": "@eiridescent @Shufflejoy sort of true. The “thinks you’re a big cat” thing is a misinterpretation of the cat accepting you as its peer", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455160210391171072, + "in_reply_to_status_id_str": "455160210391171072", + "in_reply_to_user_id": 298310874, + "in_reply_to_user_id_str": "298310874", + "in_reply_to_screen_name": "eiridescent", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 13 01:19:53 +0000 2014", + "id": 455153367292325888, + "id_str": "455153367292325888", + "text": "@alt_m1sp 💖", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455152917033791488, + "in_reply_to_status_id_str": "455152917033791488", + "in_reply_to_user_id": 2401670173, + "in_reply_to_user_id_str": "2401670173", + "in_reply_to_screen_name": "alt_m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Sun Apr 13 01:11:59 +0000 2014", + "id": 455151376499503104, + "id_str": "455151376499503104", + "text": "RT @breakNenter: Finally my master's thesis has it's moment of glory: Identifying binary key material is all the rage: https://t.co/4TRFwrz…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sat Apr 12 17:01:13 +0000 2014", + "id": 455027874316427264, + "id_str": "455027874316427264", + "text": "Finally my master's thesis has it's moment of glory: Identifying binary key material is all the rage: https://t.co/4TRFwrzzK7 #heartbleed", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 175358263, + "id_str": "175358263" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 47, + "favorite_count": 40, + "entities": { + "hashtags": [ + { + "text": "heartbleed", + "indices": [ + 126, + 137 + ] + } + ], + "symbols": [ + + ], + "urls": [ + { + "url": "https://t.co/4TRFwrzzK7", + "expanded_url": "https://github.com/carmaa/interrogate", + "display_url": "github.com/carmaa/interro…", + "indices": [ + 102, + 125 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 47, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 13 01:07:12 +0000 2014", + "id": 455150176010002432, + "id_str": "455150176010002432", + "text": "@puellavulnerata @sergeybratus Hitler… and… gay guys… … … *sigh*", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455149592569339904, + "in_reply_to_status_id_str": "455149592569339904", + "in_reply_to_user_id": 54666727, + "in_reply_to_user_id_str": "54666727", + "in_reply_to_screen_name": "puellavulnerata", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 13 00:49:42 +0000 2014", + "id": 455145768564064256, + "id_str": "455145768564064256", + "text": "@RSWestmoreland … no?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455145510115217408, + "in_reply_to_status_id_str": "455145510115217408", + "in_reply_to_user_id": 242595690, + "in_reply_to_user_id_str": "242595690", + "in_reply_to_screen_name": "RSWestmoreland", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "lt" + }, + { + "created_at": "Sun Apr 13 00:43:31 +0000 2014", + "id": 455144214553436160, + "id_str": "455144214553436160", + "text": "@sergeybratus because Western Europe is… riddled… with… hyenas?…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455142979528052736, + "in_reply_to_status_id_str": "455142979528052736", + "in_reply_to_user_id": 354406010, + "in_reply_to_user_id_str": "354406010", + "in_reply_to_screen_name": "sergeybratus", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 13 00:36:43 +0000 2014", + "id": 455142503771938818, + "id_str": "455142503771938818", + "text": "<generic complaint that my funny comment has 161 points and my long, thought-out comment has 1 point> <acknowledgment that such is internet>", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 4, + "favorite_count": 11, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 13 00:32:05 +0000 2014", + "id": 455141335037935616, + "id_str": "455141335037935616", + "text": "RT @bcrypt: If you want to play with Heartbleed on a VM that is reportedly easy to exploit, try this setup: https://t.co/KAzjjsKk1L", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sun Apr 13 00:31:04 +0000 2014", + "id": 455141082750128128, + "id_str": "455141082750128128", + "text": "If you want to play with Heartbleed on a VM that is reportedly easy to exploit, try this setup: https://t.co/KAzjjsKk1L", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 968881477, + "id_str": "968881477" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 32, + "favorite_count": 48, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "https://t.co/KAzjjsKk1L", + "expanded_url": "https://github.com/diracdeltas/heartbox", + "display_url": "github.com/diracdeltas/he…", + "indices": [ + 96, + 119 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 32, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 13 00:24:29 +0000 2014", + "id": 455139423685181440, + "id_str": "455139423685181440", + "text": "My entire body is sore and I don’t know what I did to make it mad. Alternating being trapped in a car and running all over the place?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 13 00:21:20 +0000 2014", + "id": 455138630135459841, + "id_str": "455138630135459841", + "text": "@FlyingRyn @NaNoWriMo I did it last year! This can be your year! 🎉", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455137916470452224, + "in_reply_to_status_id_str": "455137916470452224", + "in_reply_to_user_id": 2440199046, + "in_reply_to_user_id_str": "2440199046", + "in_reply_to_screen_name": "FlyingRyn", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 13 00:18:15 +0000 2014", + "id": 455137856525434880, + "id_str": "455137856525434880", + "text": "@Shufflejoy when someone says that, point out the thing most associated with being a Man™ is soft, vulnerable, and one kick can take it down", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455137247806124032, + "in_reply_to_status_id_str": "455137247806124032", + "in_reply_to_user_id": 1567524811, + "in_reply_to_user_id_str": "1567524811", + "in_reply_to_screen_name": "Shufflejoy", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 6, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 13 00:01:36 +0000 2014", + "id": 455133665023234048, + "id_str": "455133665023234048", + "text": "@brozier it’s not a very good mic. I had to keep cutting the game audio volume", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455133508894457856, + "in_reply_to_status_id_str": "455133508894457856", + "in_reply_to_user_id": 14356986, + "in_reply_to_user_id_str": "14356986", + "in_reply_to_screen_name": "brozier", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 12 23:58:23 +0000 2014", + "id": 455132856982188032, + "id_str": "455132856982188032", + "text": "@_larry0 sorry! I was already way over my social capacity :(", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455132410565636096, + "in_reply_to_status_id_str": "455132410565636096", + "in_reply_to_user_id": 17055552, + "in_reply_to_user_id_str": "17055552", + "in_reply_to_screen_name": "_larry0", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 12 23:34:03 +0000 2014", + "id": 455126733164118016, + "id_str": "455126733164118016", + "text": "*streeeetch* taking a break from pokemon. If you desperately need more adventures of Heartbleed the Bulbasaur, I will be back.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 12 23:21:42 +0000 2014", + "id": 455123622798307328, + "id_str": "455123622798307328", + "text": "@adambrenecki @afreak yeah that’s definitely Twitter rendering them and not Chrome.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455122865205964800, + "in_reply_to_status_id_str": "455122865205964800", + "in_reply_to_user_id": 34226352, + "in_reply_to_user_id_str": "34226352", + "in_reply_to_screen_name": "adambrenecki", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 12 23:20:05 +0000 2014", + "id": 455123216928108544, + "id_str": "455123216928108544", + "text": "@adambrenecki @afreak because of Twitter’s workaround for you not having support 😄 unless they just launched real support as total surprise", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455122736042344448, + "in_reply_to_status_id_str": "455122736042344448", + "in_reply_to_user_id": 34226352, + "in_reply_to_user_id_str": "34226352", + "in_reply_to_screen_name": "adambrenecki", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 12 21:39:13 +0000 2014", + "id": 455097833532977152, + "id_str": "455097833532977152", + "text": "RT @lukegb: Watching @0xabad1dea's twitch stream made my phone reboot. Should I be worried? :P", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sat Apr 12 21:37:51 +0000 2014", + "id": 455097491651043329, + "id_str": "455097491651043329", + "text": "Watching @0xabad1dea's twitch stream made my phone reboot. Should I be worried? :P", + "source": "Talon for Android", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 14879702, + "id_str": "14879702" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 6, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "0xabad1dea", + "name": "Melissa", + "id": 126030998, + "id_str": "126030998", + "indices": [ + 9, + 20 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 3, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 12 21:34:49 +0000 2014", + "id": 455096726693507072, + "id_str": "455096726693507072", + "text": "I'm sorry I find this hilarious http://t.co/wY6j8y3oad", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 87, + "favorite_count": 85, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 12 21:29:50 +0000 2014", + "id": 455095471116414977, + "id_str": "455095471116414977", + "text": "@demize95 search moemon on http://t.co/rLGkGwHwwA", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455095361799876609, + "in_reply_to_status_id_str": "455095361799876609", + "in_reply_to_user_id": 137133048, + "in_reply_to_user_id_str": "137133048", + "in_reply_to_screen_name": "demize95", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 12 21:29:35 +0000 2014", + "id": 455095408042455040, + "id_str": "455095408042455040", + "text": "Great, audio works but video doesn't", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 12 21:24:23 +0000 2014", + "id": 455094100900196352, + "id_str": "455094100900196352", + "text": "@garblefart I use everything.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455093541937893376, + "in_reply_to_status_id_str": "455093541937893376", + "in_reply_to_user_id": 737104831, + "in_reply_to_user_id_str": "737104831", + "in_reply_to_screen_name": "garblefart", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 12 21:24:16 +0000 2014", + "id": 455094070139158528, + "id_str": "455094070139158528", + "text": "@CyborgCode can’t get the video to work, oddly…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455093497117540352, + "in_reply_to_status_id_str": "455093497117540352", + "in_reply_to_user_id": 130034459, + "in_reply_to_user_id_str": "130034459", + "in_reply_to_screen_name": "CyborgCode", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 12 21:19:56 +0000 2014", + "id": 455092979292577792, + "id_str": "455092979292577792", + "text": "heheheh (abusing the screenshot paste functionality - nothing on my desktop, right?) http://t.co/EKsRndA7zX", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 4, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 12 21:16:23 +0000 2014", + "id": 455092087722360832, + "id_str": "455092087722360832", + "text": "I seem to be live and I think my mic is working. http://t.co/VvHZNWqBjE let’s go on a magical journey with Bulbasaur", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 12 21:14:39 +0000 2014", + "id": 455091649442742272, + "id_str": "455091649442742272", + "text": "@JoeKSewell I have a debugger :p", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 455091423872679936, + "in_reply_to_status_id_str": "455091423872679936", + "in_reply_to_user_id": 2194671152, + "in_reply_to_user_id_str": "2194671152", + "in_reply_to_screen_name": "JoeKSewell", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 12 21:01:38 +0000 2014", + "id": 455088374567931904, + "id_str": "455088374567931904", + "text": ".@matthew_d_green !!! You’re the APT", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455088207521402881, + "in_reply_to_status_id_str": "455088207521402881", + "in_reply_to_user_id": 106234268, + "in_reply_to_user_id_str": "106234268", + "in_reply_to_screen_name": "matthew_d_green", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 5, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 12 21:01:26 +0000 2014", + "id": 455088326023073792, + "id_str": "455088326023073792", + "text": "RT @matthew_d_green: I'd completely forgotten that I wrote this. http://t.co/OQaCwgUs77 http://t.co/ckoDYPLiQW", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sat Apr 12 21:00:58 +0000 2014", + "id": 455088207521402881, + "id_str": "455088207521402881", + "text": "I'd completely forgotten that I wrote this. http://t.co/OQaCwgUs77 http://t.co/ckoDYPLiQW", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 106234268, + "id_str": "106234268" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 145, + "favorite_count": 90, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/OQaCwgUs77", + "expanded_url": "http://blog.cryptographyengineering.com/2013/12/how-does-nsa-break-ssl.html", + "display_url": "blog.cryptographyengineering.com/2013/12/how-do…", + "indices": [ + 44, + 66 + ] + } + ], + "user_mentions": [ + + ], + "media": [ + { + "id": 455088205952741376, + "id_str": "455088205952741376", + "indices": [ + 67, + 89 + ], + "media_url": "http://pbs.twimg.com/media/BlDMT-lIcAARCwW.jpg", + "media_url_https": "https://pbs.twimg.com/media/BlDMT-lIcAARCwW.jpg", + "url": "http://t.co/ckoDYPLiQW", + "display_url": "pic.twitter.com/ckoDYPLiQW", + "expanded_url": "http://twitter.com/matthew_d_green/status/455088207521402881/photo/1", + "type": "photo", + "sizes": { + "medium": { + "w": 599, + "h": 450, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 255, + "resize": "fit" + }, + "large": { + "w": 599, + "h": 450, + "resize": "fit" + } + } + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 145, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 12 20:59:48 +0000 2014", + "id": 455087912460496896, + "id_str": "455087912460496896", + "text": "For the record I “need” to speed run Pokemon because I want to experiment with the Missingno bug and I can’t use someone else’s filthy save", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 12 20:57:37 +0000 2014", + "id": 455087365628129280, + "id_str": "455087365628129280", + "text": "@Kufat yes.\n\nFor science.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455087295629361152, + "in_reply_to_status_id_str": "455087295629361152", + "in_reply_to_user_id": 207691003, + "in_reply_to_user_id_str": "207691003", + "in_reply_to_screen_name": "Kufat", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 12 20:57:03 +0000 2014", + "id": 455087221474082816, + "id_str": "455087221474082816", + "text": "All right since I need to speed run Pokemon anyway I might as well try twitch streaming. Please stand by…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 12 20:33:26 +0000 2014", + "id": 455081278967402496, + "id_str": "455081278967402496", + "text": "@Shufflejoy the whole thing with the info bar of the current team across the bottom", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 455081182615441408, + "in_reply_to_status_id_str": "455081182615441408", + "in_reply_to_user_id": 1567524811, + "in_reply_to_user_id_str": "1567524811", + "in_reply_to_screen_name": "Shufflejoy", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 12 20:29:29 +0000 2014", + "id": 455080282883104769, + "id_str": "455080282883104769", + "text": "@xkeepah it's been there for a while, but I've been basically afk for many days", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 455080133208981504, + "in_reply_to_status_id_str": "455080133208981504", + "in_reply_to_user_id": 61653331, + "in_reply_to_user_id_str": "61653331", + "in_reply_to_screen_name": "xkeepah", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 12 20:28:17 +0000 2014", + "id": 455079981207814145, + "id_str": "455079981207814145", + "text": "http://t.co/Wn2NFeoOAw has developed some extraordinarily sophisticated tooling", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 12 20:27:48 +0000 2014", + "id": 455079861737259008, + "id_str": "455079861737259008", + "text": "I just discovered that print screen key -> ctrl-v into tweet box *totally works*", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 8, + "favorite_count": 9, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 12 20:19:22 +0000 2014", + "id": 455077737070612480, + "id_str": "455077737070612480", + "text": "@FakeUnicode this is from iOS 7. My keyboard has 🇯🇵🇰🇷🇩🇪🇨🇳🇺🇸🇫🇷🇪🇸🇮🇹🇷🇺🇬🇧 In that order", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455077357737373697, + "in_reply_to_status_id_str": "455077357737373697", + "in_reply_to_user_id": 2183231114, + "in_reply_to_user_id_str": "2183231114", + "in_reply_to_screen_name": "FakeUnicode", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 12 20:15:23 +0000 2014", + "id": 455076734690680833, + "id_str": "455076734690680833", + "text": "@FakeUnicode I have bad news :/ http://t.co/WdB7Ip4dEt", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455076372923162624, + "in_reply_to_status_id_str": "455076372923162624", + "in_reply_to_user_id": 2183231114, + "in_reply_to_user_id_str": "2183231114", + "in_reply_to_screen_name": "FakeUnicode", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 12 20:11:08 +0000 2014", + "id": 455075667022196736, + "id_str": "455075667022196736", + "text": "@lib_ertarian_ at this point I may or may not remember I don’t even have Minecraft installed.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455075279548190720, + "in_reply_to_status_id_str": "455075279548190720", + "in_reply_to_user_id": 903106754, + "in_reply_to_user_id_str": "903106754", + "in_reply_to_screen_name": "lib_ertarian_", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 12 20:07:48 +0000 2014", + "id": 455074826760519680, + "id_str": "455074826760519680", + "text": "The nvidia update utility icon looks like the Minecraft icon and then I’m like “why does Minecraft want admin access all the sudden”", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 6, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 12 20:03:00 +0000 2014", + "id": 455073619639824384, + "id_str": "455073619639824384", + "text": "RT @KeionKirby: :( http://t.co/OUwQeecEwC", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sat Apr 12 19:07:54 +0000 2014", + "id": 455059753883140096, + "id_str": "455059753883140096", + "text": ":( http://t.co/OUwQeecEwC", + "source": "Twitter for iPad", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 155425592, + "id_str": "155425592" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 126, + "favorite_count": 81, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ], + "media": [ + { + "id": 455059753405005824, + "id_str": "455059753405005824", + "indices": [ + 3, + 25 + ], + "media_url": "http://pbs.twimg.com/media/BlCyb0lIQAAylh8.jpg", + "media_url_https": "https://pbs.twimg.com/media/BlCyb0lIQAAylh8.jpg", + "url": "http://t.co/OUwQeecEwC", + "display_url": "pic.twitter.com/OUwQeecEwC", + "expanded_url": "http://twitter.com/KeionKirby/status/455059753883140096/photo/1", + "type": "photo", + "sizes": { + "large": { + "w": 860, + "h": 641, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 253, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 447, + "resize": "fit" + } + } + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + "retweet_count": 126, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Sat Apr 12 19:12:54 +0000 2014", + "id": 455061011788476416, + "id_str": "455061011788476416", + "text": "@FakeUnicode was there a new version of the jsfiddle for 🇧🇪🇮🆖 🇴🇧🇳🇴🇽🇮🇴🇺­🇸 that resolves the issues around D and flag combining?", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 2183231114, + "in_reply_to_user_id_str": "2183231114", + "in_reply_to_screen_name": "FakeUnicode", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 12 19:08:28 +0000 2014", + "id": 455059898154622976, + "id_str": "455059898154622976", + "text": "@afreak @Kufat 🇨🇴🇲🇪 🇦🇹 🇲🇪 🇧🇷🇴", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 455057748187574273, + "in_reply_to_status_id_str": "455057748187574273", + "in_reply_to_user_id": 1476431, + "in_reply_to_user_id_str": "1476431", + "in_reply_to_screen_name": "afreak", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Sat Apr 12 18:58:26 +0000 2014", + "id": 455057369190658048, + "id_str": "455057369190658048", + "text": "@afreak I love emoji 😍 but I held back because most desktop users could not see them 😭 especially in chrome 💻 do you hate me yet 👼", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455056511467679744, + "in_reply_to_status_id_str": "455056511467679744", + "in_reply_to_user_id": 1476431, + "in_reply_to_user_id_str": "1476431", + "in_reply_to_screen_name": "afreak", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 12 18:55:50 +0000 2014", + "id": 455056716271722496, + "id_str": "455056716271722496", + "text": "@afreak they always have. But they implemented a workaround for missing fonts on the 2nd or so.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455056511467679744, + "in_reply_to_status_id_str": "455056511467679744", + "in_reply_to_user_id": 1476431, + "in_reply_to_user_id_str": "1476431", + "in_reply_to_screen_name": "afreak", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 12 18:52:25 +0000 2014", + "id": 455055858612064256, + "id_str": "455055858612064256", + "text": "Nuisance-class bugs can become suddenly invaluable to attackers in the right context. If you can bounce the server process at will… 💓", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 4, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 12 18:46:05 +0000 2014", + "id": 455054261710503937, + "id_str": "455054261710503937", + "text": "@thegrugq @pawel_lasek @makomk @benmmurphy well, it’d make remote crash bugs a bit more valuable: kill the service, wait a literal heartbeat", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455053547378208768, + "in_reply_to_status_id_str": "455053547378208768", + "in_reply_to_user_id": 18983429, + "in_reply_to_user_id_str": "18983429", + "in_reply_to_screen_name": "thegrugq", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 12 18:34:42 +0000 2014", + "id": 455051399186100224, + "id_str": "455051399186100224", + "text": "@eevee I can independently verify that’s ballpark accurate… they disable cert checking because ugh they’d need more UI just to return errors", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455048351663140864, + "in_reply_to_status_id_str": "455048351663140864", + "in_reply_to_user_id": 14412937, + "in_reply_to_user_id_str": "14412937", + "in_reply_to_screen_name": "eevee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 12 18:16:24 +0000 2014", + "id": 455046792317779968, + "id_str": "455046792317779968", + "text": "@makomk @thegrugq @benmmurphy are they all from the same origin point? Maybe you need more distinct IPs to hit it", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455044956777095168, + "in_reply_to_status_id_str": "455044956777095168", + "in_reply_to_user_id": 14836648, + "in_reply_to_user_id_str": "14836648", + "in_reply_to_screen_name": "makomk", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 12 18:15:43 +0000 2014", + "id": 455046621336981504, + "id_str": "455046621336981504", + "text": "RT @makomk: @0xabad1dea @thegrugq So far I haven't managed to fire enough requests at my test nginx to stop it leaking the key, dunno about…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sat Apr 12 18:09:06 +0000 2014", + "id": 455044956777095168, + "id_str": "455044956777095168", + "text": "@0xabad1dea @thegrugq So far I haven't managed to fire enough requests at my test nginx to stop it leaking the key, dunno about @benmmurphy", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 455013463296077824, + "in_reply_to_status_id_str": "455013463296077824", + "in_reply_to_user_id": 126030998, + "in_reply_to_user_id_str": "126030998", + "in_reply_to_screen_name": "0xabad1dea", + "user": { + "id": 14836648, + "id_str": "14836648" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 0, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "0xabad1dea", + "name": "Melissa", + "id": 126030998, + "id_str": "126030998", + "indices": [ + 0, + 11 + ] + }, + { + "screen_name": "thegrugq", + "name": "the grugq ", + "id": 18983429, + "id_str": "18983429", + "indices": [ + 12, + 21 + ] + }, + { + "screen_name": "benmmurphy", + "name": "benmmurphy", + "id": 17311483, + "id_str": "17311483", + "indices": [ + 128, + 139 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 1, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 12 18:01:42 +0000 2014", + "id": 455043094418059264, + "id_str": "455043094418059264", + "text": "@Wxcafe @leapingwoman it does sound a bit odd, but if someone had arbitrarily chosen it 20 years ago over \"documents\" no-one would question", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 455042909172412416, + "in_reply_to_status_id_str": "455042909172412416", + "in_reply_to_user_id": 327187863, + "in_reply_to_user_id_str": "327187863", + "in_reply_to_screen_name": "Wxcafe", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 12 17:44:23 +0000 2014", + "id": 455038734699081729, + "id_str": "455038734699081729", + "text": "I'd like to file a bug in English: \"Desktop\", \"Downloads\" and \"Documents\" all start with the same letter.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 22, + "favorite_count": 35, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 12 17:23:13 +0000 2014", + "id": 455033410332164097, + "id_str": "455033410332164097", + "text": "@gepeto42 I don't watch TV.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 455033222032662528, + "in_reply_to_status_id_str": "455033222032662528", + "in_reply_to_user_id": 17120390, + "in_reply_to_user_id_str": "17120390", + "in_reply_to_screen_name": "gepeto42", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 12 17:05:50 +0000 2014", + "id": 455029032669954048, + "id_str": "455029032669954048", + "text": "@sciencecomic apologies about your Starbucks cup, you see, a Bostonian heard “Mah” which is obviously spelled “Mar” :) have some watah :)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 222302211, + "in_reply_to_user_id_str": "222302211", + "in_reply_to_screen_name": "sciencecomic", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 12 16:56:15 +0000 2014", + "id": 455026623012933632, + "id_str": "455026623012933632", + "text": "@vogon read as miniature gamers. Was extremely disappointed.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455026490774528000, + "in_reply_to_status_id_str": "455026490774528000", + "in_reply_to_user_id": 6326912, + "in_reply_to_user_id_str": "6326912", + "in_reply_to_screen_name": "vogon", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 12 16:32:50 +0000 2014", + "id": 455020728539430912, + "id_str": "455020728539430912", + "text": "@Netbus but not, you know, a URL that doesn’t happen to be the first line of the file.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455020464734085120, + "in_reply_to_status_id_str": "455020464734085120", + "in_reply_to_user_id": 7475852, + "in_reply_to_user_id_str": "7475852", + "in_reply_to_screen_name": "Netbus", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 12 16:32:29 +0000 2014", + "id": 455020642812063746, + "id_str": "455020642812063746", + "text": "@Netbus I consistently have the problem that I can select any one word OR the first line of the file OR the entire file", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 455020464734085120, + "in_reply_to_status_id_str": "455020464734085120", + "in_reply_to_user_id": 7475852, + "in_reply_to_user_id_str": "7475852", + "in_reply_to_screen_name": "Netbus", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 12 16:29:49 +0000 2014", + "id": 455019970167332864, + "id_str": "455019970167332864", + "text": "Why does iOS’s text select just completely fall apart on .txt files or monospace code blocks in a webpage. Literally impossible to use.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 5, + "favorite_count": 5, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 12 16:14:40 +0000 2014", + "id": 455016158731968512, + "id_str": "455016158731968512", + "text": "They are having very good luck recovering keys from an nginx which experiences low activity https://t.co/2pK87364Lj got it on ONE request", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 15, + "favorite_count": 9, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 12 16:03:58 +0000 2014", + "id": 455013463296077824, + "id_str": "455013463296077824", + "text": ".@thegrugq and then it turns out Pingdom has owned all of us!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454998678361489408, + "in_reply_to_status_id_str": "454998678361489408", + "in_reply_to_user_id": 18983429, + "in_reply_to_user_id_str": "18983429", + "in_reply_to_screen_name": "thegrugq", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 12 16:03:32 +0000 2014", + "id": 455013357809328128, + "id_str": "455013357809328128", + "text": "RT @thegrugq: Anyone have IDS logs of incredibly aggressive uptime scans? Might be indicative of looking for exploitable vulnerable conditi…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sat Apr 12 15:05:13 +0000 2014", + "id": 454998678361489408, + "id_str": "454998678361489408", + "text": "Anyone have IDS logs of incredibly aggressive uptime scans? Might be indicative of looking for exploitable vulnerable conditions.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454998285061607425, + "in_reply_to_status_id_str": "454998285061607425", + "in_reply_to_user_id": 18983429, + "in_reply_to_user_id_str": "18983429", + "in_reply_to_screen_name": "thegrugq", + "user": { + "id": 18983429, + "id_str": "18983429" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 8, + "favorite_count": 3, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 8, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 12 16:01:42 +0000 2014", + "id": 455012896247132160, + "id_str": "455012896247132160", + "text": "RT @benmmurphy: i was able to recover the cloudflare key as well. made some slight modifications to the simple recover script. not sure if …", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sat Apr 12 14:30:22 +0000 2014", + "id": 454989910173560832, + "id_str": "454989910173560832", + "text": "i was able to recover the cloudflare key as well. made some slight modifications to the simple recover script. not sure if necessary.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 17311483, + "id_str": "17311483" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 8, + "favorite_count": 3, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 8, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 12 15:56:29 +0000 2014", + "id": 455011580569477121, + "id_str": "455011580569477121", + "text": "RT @dakami: http://t.co/n9hY3fPgSa Bloody Cert Certified! How you can verify @indutny's extraction of @CloudFlare's private key. #heartble…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sat Apr 12 02:32:28 +0000 2014", + "id": 454809243787345921, + "id_str": "454809243787345921", + "text": "http://t.co/n9hY3fPgSa Bloody Cert Certified! How you can verify @indutny's extraction of @CloudFlare's private key. #heartbleed", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 8917142, + "id_str": "8917142" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 89, + "favorite_count": 45, + "entities": { + "hashtags": [ + { + "text": "heartbleed", + "indices": [ + 118, + 129 + ] + } + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/n9hY3fPgSa", + "expanded_url": "http://dankaminsky.com/2014/04/12/bloody-cert-certified/", + "display_url": "dankaminsky.com/2014/04/12/blo…", + "indices": [ + 0, + 22 + ] + } + ], + "user_mentions": [ + { + "screen_name": "indutny", + "name": "Fedor Indutny", + "id": 92915570, + "id_str": "92915570", + "indices": [ + 66, + 74 + ] + }, + { + "screen_name": "CloudFlare", + "name": "CloudFlare", + "id": 32499999, + "id_str": "32499999", + "indices": [ + 91, + 102 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 89, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 12 15:48:38 +0000 2014", + "id": 455009607434641408, + "id_str": "455009607434641408", + "text": "@m1sp 😱", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454954830637699072, + "in_reply_to_status_id_str": "454954830637699072", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Sat Apr 12 15:48:15 +0000 2014", + "id": 455009509401174017, + "id_str": "455009509401174017", + "text": "RT @m1sp: Her exam questions use floats to store bank balances. STOP INSTILLING EDUCATION I HAVE TO UNDO", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sat Apr 12 12:10:58 +0000 2014", + "id": 454954830637699072, + "id_str": "454954830637699072", + "text": "Her exam questions use floats to store bank balances. STOP INSTILLING EDUCATION I HAVE TO UNDO", + "source": "Twitter for Android", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 1007638597, + "id_str": "1007638597" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 27, + "favorite_count": 32, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 27, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 12 15:44:51 +0000 2014", + "id": 455008653356335104, + "id_str": "455008653356335104", + "text": "@declanm @WeldPond as a serious answer, I believe they occasionally really do this, but anonymously or under names", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454828154159247360, + "in_reply_to_status_id_str": "454828154159247360", + "in_reply_to_user_id": 4517721, + "in_reply_to_user_id_str": "4517721", + "in_reply_to_screen_name": "declanm", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 12 15:43:39 +0000 2014", + "id": 455008351491878913, + "id_str": "455008351491878913", + "text": "@minnixio @ELLIOTTCABLE … steering wheel might be nice.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454923760357761024, + "in_reply_to_status_id_str": "454923760357761024", + "in_reply_to_user_id": 25826815, + "in_reply_to_user_id_str": "25826815", + "in_reply_to_screen_name": "minnixio", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "tl" + }, + { + "created_at": "Sat Apr 12 15:42:15 +0000 2014", + "id": 455007998659014657, + "id_str": "455007998659014657", + "text": "RT @jgrahamc: I felt a great disturbance in the net, as if millions of private keys cried out in terror and were suddenly revoked.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sat Apr 12 07:33:41 +0000 2014", + "id": 454885047632666624, + "id_str": "454885047632666624", + "text": "I felt a great disturbance in the net, as if millions of private keys cried out in terror and were suddenly revoked.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 16402446, + "id_str": "16402446" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 279, + "favorite_count": 160, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 279, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 12 15:03:34 +0000 2014", + "id": 454998264291807232, + "id_str": "454998264291807232", + "text": "@Talen_Lee … these are my legal initials", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454867239288598528, + "in_reply_to_status_id_str": "454867239288598528", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 5, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 12 14:53:31 +0000 2014", + "id": 454995737609510912, + "id_str": "454995737609510912", + "text": "@mehlitz >:)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454920050546577408, + "in_reply_to_status_id_str": "454920050546577408", + "in_reply_to_user_id": 95867486, + "in_reply_to_user_id_str": "95867486", + "in_reply_to_screen_name": "mehlitz", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "fi" + }, + { + "created_at": "Sat Apr 12 05:05:37 +0000 2014", + "id": 454847784328630272, + "id_str": "454847784328630272", + "text": "@NireBryce unfortunately I would not be surprised if they really are 100% male and he happens to know this :/", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454847522457264128, + "in_reply_to_status_id_str": "454847522457264128", + "in_reply_to_user_id": 398859493, + "in_reply_to_user_id_str": "398859493", + "in_reply_to_screen_name": "NireBryce", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 12 05:03:55 +0000 2014", + "id": 454847360062205952, + "id_str": "454847360062205952", + "text": "djb yells at NIST. http://t.co/2W9QepCwUa", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 46, + "favorite_count": 27, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "tl" + }, + { + "created_at": "Sat Apr 12 04:40:09 +0000 2014", + "id": 454841377789325312, + "id_str": "454841377789325312", + "text": "@thegrugq @mattblaze theoretically speaking, one can patch in such a way that’s indistinguishable — returning fake memory dumps", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454841161497055234, + "in_reply_to_status_id_str": "454841161497055234", + "in_reply_to_user_id": 18983429, + "in_reply_to_user_id_str": "18983429", + "in_reply_to_screen_name": "thegrugq", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 12 04:34:06 +0000 2014", + "id": 454839855105974272, + "id_str": "454839855105974272", + "text": "@thegrugq @mattblaze ain’t they got a mail server?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454839548753616896, + "in_reply_to_status_id_str": "454839548753616896", + "in_reply_to_user_id": 18983429, + "in_reply_to_user_id_str": "18983429", + "in_reply_to_screen_name": "thegrugq", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 12 04:16:35 +0000 2014", + "id": 454835446758268928, + "id_str": "454835446758268928", + "text": "@wolfoftheair @marginoferror yeah I assume the reboot was due to instability from hammering", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454835196051734528, + "in_reply_to_status_id_str": "454835196051734528", + "in_reply_to_user_id": 5142931, + "in_reply_to_user_id_str": "5142931", + "in_reply_to_screen_name": "wolfoftheair", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 12 04:13:04 +0000 2014", + "id": 454834562183741440, + "id_str": "454834562183741440", + "text": "@puellavulnerata you’ve brought your least-untruthful A game :)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454832743025618944, + "in_reply_to_status_id_str": "454832743025618944", + "in_reply_to_user_id": 54666727, + "in_reply_to_user_id_str": "54666727", + "in_reply_to_screen_name": "puellavulnerata", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 12 03:57:34 +0000 2014", + "id": 454830659597787136, + "id_str": "454830659597787136", + "text": "For the record there is no-one I was thinking of dissolving.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 12 03:54:37 +0000 2014", + "id": 454829916228694017, + "id_str": "454829916228694017", + "text": "@mike_913 no >.>", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454829852260966400, + "in_reply_to_status_id_str": "454829852260966400", + "in_reply_to_user_id": 102264133, + "in_reply_to_user_id_str": "102264133", + "in_reply_to_screen_name": "mike_913", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "vi" + }, + { + "created_at": "Sat Apr 12 03:53:48 +0000 2014", + "id": 454829713970954240, + "id_str": "454829713970954240", + "text": "“If I had enough of this clog cleaner, could I dissolve a human body?” is probably not a normal thought.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 15, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 12 03:46:55 +0000 2014", + "id": 454827981719224322, + "id_str": "454827981719224322", + "text": "@snipeyhead @HillaryMelville normal SSH is fine afaik :) dodged that bullet", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454827520547127296, + "in_reply_to_status_id_str": "454827520547127296", + "in_reply_to_user_id": 14246782, + "in_reply_to_user_id_str": "14246782", + "in_reply_to_screen_name": "snipeyhead", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 12 03:41:29 +0000 2014", + "id": 454826613684068352, + "id_str": "454826613684068352", + "text": "@nblr no, it’s a big deal, because a lot of companies said “there’s no proof it’s possible to extract actual keys, won’t replace them.”", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454825756980682752, + "in_reply_to_status_id_str": "454825756980682752", + "in_reply_to_user_id": 174052946, + "in_reply_to_user_id_str": "174052946", + "in_reply_to_screen_name": "nblr", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 12 03:39:48 +0000 2014", + "id": 454826188008325120, + "id_str": "454826188008325120", + "text": "@Talen_Lee @TakoArishi \n\n>_>", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454825214707109888, + "in_reply_to_status_id_str": "454825214707109888", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "pt" + }, + { + "created_at": "Sat Apr 12 03:27:30 +0000 2014", + "id": 454823093559906305, + "id_str": "454823093559906305", + "text": "@Talen_Lee there’s nothing wrong with you but I’d be lying if I said I wouldn’t prefer to voicechat @m1sp\n\nBut why not both?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454822770430337024, + "in_reply_to_status_id_str": "454822770430337024", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 12 03:25:13 +0000 2014", + "id": 454822520370499584, + "id_str": "454822520370499584", + "text": "@fuzztester found it. Time difference was that of providing proof, keys obtained at same time https://t.co/cl84835Egc", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454822171484123137, + "in_reply_to_status_id_str": "454822171484123137", + "in_reply_to_user_id": 172725404, + "in_reply_to_user_id_str": "172725404", + "in_reply_to_screen_name": "fuzztester", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 12 03:23:19 +0000 2014", + "id": 454822043113250816, + "id_str": "454822043113250816", + "text": "@fuzztester or perhaps it’s time key acquired vs time they realized key is acquired", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454821708114182144, + "in_reply_to_status_id_str": "454821708114182144", + "in_reply_to_user_id": 172725404, + "in_reply_to_user_id_str": "172725404", + "in_reply_to_screen_name": "fuzztester", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 12 03:22:39 +0000 2014", + "id": 454821875563372544, + "id_str": "454821875563372544", + "text": "@fuzztester one or both of us is wrong!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454821708114182144, + "in_reply_to_status_id_str": "454821708114182144", + "in_reply_to_user_id": 172725404, + "in_reply_to_user_id_str": "172725404", + "in_reply_to_screen_name": "fuzztester", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 12 03:21:56 +0000 2014", + "id": 454821692981133312, + "id_str": "454821692981133312", + "text": "@drymangobird @puellavulnerata whose is this?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454795387530788866, + "in_reply_to_status_id_str": "454795387530788866", + "in_reply_to_user_id": 892400503, + "in_reply_to_user_id_str": "892400503", + "in_reply_to_screen_name": "drymangobird", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 12 03:20:29 +0000 2014", + "id": 454821330337398784, + "id_str": "454821330337398784", + "text": "@fuzztester apparently they got it at the same time so I guess either lucky alignment or started much later", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454821127450554368, + "in_reply_to_status_id_str": "454821127450554368", + "in_reply_to_user_id": 172725404, + "in_reply_to_user_id_str": "172725404", + "in_reply_to_screen_name": "fuzztester", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 12 03:19:55 +0000 2014", + "id": 454821185860431872, + "id_str": "454821185860431872", + "text": "@kawaii_katze @Viss @sambowne surely it isn’t the real one, it’d be more than a bit strange for that to be in the server’s process space", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454799776085598210, + "in_reply_to_status_id_str": "454799776085598210", + "in_reply_to_user_id": 2236545601, + "in_reply_to_user_id_str": "2236545601", + "in_reply_to_screen_name": "kawaii_katze", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 12 03:17:01 +0000 2014", + "id": 454820453799198720, + "id_str": "454820453799198720", + "text": ".@marginoferror I guess you wouldn’t need the massive number of requests if you knew in advance when it would reboot.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454820268515819520, + "in_reply_to_status_id_str": "454820268515819520", + "in_reply_to_user_id": 22039951, + "in_reply_to_user_id_str": "22039951", + "in_reply_to_screen_name": "marginoferror", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 12 03:14:54 +0000 2014", + "id": 454819923358146560, + "id_str": "454819923358146560", + "text": "@marginoferror … except during the first few seconds of the process.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454819424718299137, + "in_reply_to_status_id_str": "454819424718299137", + "in_reply_to_user_id": 22039951, + "in_reply_to_user_id_str": "22039951", + "in_reply_to_screen_name": "marginoferror", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 12 03:14:17 +0000 2014", + "id": 454819769246810112, + "id_str": "454819769246810112", + "text": "@marginoferror it is a matter of statistical spread of allocations; the buffer you read off is unlikely to precede pointer-wise the key", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454819424718299137, + "in_reply_to_status_id_str": "454819424718299137", + "in_reply_to_user_id": 22039951, + "in_reply_to_user_id_str": "22039951", + "in_reply_to_screen_name": "marginoferror", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 12 03:10:31 +0000 2014", + "id": 454818820134563840, + "id_str": "454818820134563840", + "text": "Well I guess the “good” news is that a) the winners generated a massively obvious number of requests b) the reboot was probably necessary", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 4, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 12 03:08:10 +0000 2014", + "id": 454818228205010944, + "id_str": "454818228205010944", + "text": "@Talen_Lee … are people voice chatting? ;-;", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454789050952454145, + "in_reply_to_status_id_str": "454789050952454145", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 12 03:05:36 +0000 2014", + "id": 454817582147985409, + "id_str": "454817582147985409", + "text": "RT @indutny: So, just in case, it is really possible to extract a private key using a heartbleed vulnerability. It is not an abstract threa…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Fri Apr 11 23:53:30 +0000 2014", + "id": 454769238516203520, + "id_str": "454769238516203520", + "text": "So, just in case, it is really possible to extract a private key using a heartbleed vulnerability. It is not an abstract threat. Get new key", + "source": "Tweetbot for Mac", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 92915570, + "id_str": "92915570" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 150, + "favorite_count": 37, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 150, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 12 03:03:04 +0000 2014", + "id": 454816943711985664, + "id_str": "454816943711985664", + "text": "Cloudflare challenge was solved. Secret key was extracted by two different parties. https://t.co/WdlvZuxVpB Kind of a big deal 🔓🔑", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 162, + "favorite_count": 47, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 12 02:46:23 +0000 2014", + "id": 454812746681696256, + "id_str": "454812746681696256", + "text": "@davidjayharris @JeremyJBerg oh, \"sites\" includes web services you may access through a mobile or desktop app btw.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 454805212947959808, + "in_reply_to_status_id_str": "454805212947959808", + "in_reply_to_user_id": 308065135, + "in_reply_to_user_id_str": "308065135", + "in_reply_to_screen_name": "davidjayharris", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 12 02:45:32 +0000 2014", + "id": 454812534244388864, + "id_str": "454812534244388864", + "text": "@davidjayharris @JeremyJBerg into from Monday to Wednesday. Fortunately the odds that YOU specifically got sniped are very low. 2/2", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 454805212947959808, + "in_reply_to_status_id_str": "454805212947959808", + "in_reply_to_user_id": 308065135, + "in_reply_to_user_id_str": "308065135", + "in_reply_to_screen_name": "davidjayharris", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 12 02:44:58 +0000 2014", + "id": 454812389117296640, + "id_str": "454812389117296640", + "text": "@davidjayharris @JeremyJBerg If you do not run any websites you don't need to worry too much. Change any passwords of sites you logged 1/2", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 454805212947959808, + "in_reply_to_status_id_str": "454805212947959808", + "in_reply_to_user_id": 308065135, + "in_reply_to_user_id_str": "308065135", + "in_reply_to_screen_name": "davidjayharris", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 12 01:39:54 +0000 2014", + "id": 454796016597090304, + "id_str": "454796016597090304", + "text": "@DefuseSec @RedragonX at least it's not ponies. http://t.co/McDsWqVheQ", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 454795314575052800, + "in_reply_to_status_id_str": "454795314575052800", + "in_reply_to_user_id": 499377755, + "in_reply_to_user_id_str": "499377755", + "in_reply_to_screen_name": "DefuseSec", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 12 01:36:13 +0000 2014", + "id": 454795088385036289, + "id_str": "454795088385036289", + "text": "@DefuseSec @RedragonX (in a version that might, someday, eventually deploy to actual production!)", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 454794088290603008, + "in_reply_to_status_id_str": "454794088290603008", + "in_reply_to_user_id": 499377755, + "in_reply_to_user_id_str": "499377755", + "in_reply_to_screen_name": "DefuseSec", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 12 01:35:58 +0000 2014", + "id": 454795026271596544, + "id_str": "454795026271596544", + "text": "@DefuseSec @RedragonX so first they added more image varieties to the easter eggs... and then they finally took them out", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 454794088290603008, + "in_reply_to_status_id_str": "454794088290603008", + "in_reply_to_user_id": 499377755, + "in_reply_to_user_id_str": "499377755", + "in_reply_to_screen_name": "DefuseSec", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 12 00:49:04 +0000 2014", + "id": 454783221381996544, + "id_str": "454783221381996544", + "text": "when husband's away, skyrim will be played\n\nwhen I'm done being antagonized by OpenSSL, anyway", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 11 23:57:13 +0000 2014", + "id": 454770176421273601, + "id_str": "454770176421273601", + "text": "@chriseng You should mirror the video so we get more Brand Value out of our giant sheet of glass logo", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454768054552231937, + "in_reply_to_status_id_str": "454768054552231937", + "in_reply_to_user_id": 13752192, + "in_reply_to_user_id_str": "13752192", + "in_reply_to_screen_name": "chriseng", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 11 23:56:11 +0000 2014", + "id": 454769914478608384, + "id_str": "454769914478608384", + "text": "RT @puellavulnerata: .@munin \"LOL, n00bs, we didn't mean the *Gregorian* calendar\"", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Fri Apr 11 23:54:36 +0000 2014", + "id": 454769517969674240, + "id_str": "454769517969674240", + "text": ".@munin \"LOL, n00bs, we didn't mean the *Gregorian* calendar\"", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 454769135193698304, + "in_reply_to_status_id_str": "454769135193698304", + "in_reply_to_user_id": 8513352, + "in_reply_to_user_id_str": "8513352", + "in_reply_to_screen_name": "munin", + "user": { + "id": 54666727, + "id_str": "54666727" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 5, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "munin", + "name": "munin", + "id": 8513352, + "id_str": "8513352", + "indices": [ + 1, + 7 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 1, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 11 23:53:20 +0000 2014", + "id": 454769198930358272, + "id_str": "454769198930358272", + "text": "RT @chriseng: Did the NSA Know About the Heartbleed Bug? http://t.co/YPYQal7LRk < Me with @emilychangtv and @CoryTV", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Fri Apr 11 23:48:48 +0000 2014", + "id": 454768054552231937, + "id_str": "454768054552231937", + "text": "Did the NSA Know About the Heartbleed Bug? http://t.co/YPYQal7LRk < Me with @emilychangtv and @CoryTV", + "source": "MetroTwit", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 13752192, + "id_str": "13752192" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 5, + "favorite_count": 3, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/YPYQal7LRk", + "expanded_url": "http://www.bloomberg.com/video/did-the-nsa-know-about-the-heartbleed-bug-gvjAEKFERC69r0I~yOc~rQ.html", + "display_url": "bloomberg.com/video/did-the-…", + "indices": [ + 43, + 65 + ] + } + ], + "user_mentions": [ + { + "screen_name": "emilychangtv", + "name": "Emily Chang", + "id": 74130577, + "id_str": "74130577", + "indices": [ + 79, + 92 + ] + }, + { + "screen_name": "CoryTV", + "name": "Cory Johnson", + "id": 254136706, + "id_str": "254136706", + "indices": [ + 97, + 104 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 5, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 11 23:47:34 +0000 2014", + "id": 454767747311091713, + "id_str": "454767747311091713", + "text": ".@icontherecord @NSA_PAO if you’re still unaware of the bug by Monday, consult with a doctor", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454734134192402432, + "in_reply_to_status_id_str": "454734134192402432", + "in_reply_to_user_id": 1683318644, + "in_reply_to_user_id_str": "1683318644", + "in_reply_to_screen_name": "icontherecord", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 5, + "favorite_count": 9, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 11 23:46:43 +0000 2014", + "id": 454767531438641152, + "id_str": "454767531438641152", + "text": "RT @icontherecord: Reports that NSA or any other part of the govt were aware of the so-called #Heartbleed bug before Apr 14 are wrong: http…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Fri Apr 11 21:34:00 +0000 2014", + "id": 454734134192402432, + "id_str": "454734134192402432", + "text": "Reports that NSA or any other part of the govt were aware of the so-called #Heartbleed bug before Apr 14 are wrong: http://t.co/JhqVQOMDvE", + "source": "TweetDeck", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 1683318644, + "id_str": "1683318644" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 101, + "favorite_count": 29, + "entities": { + "hashtags": [ + { + "text": "Heartbleed", + "indices": [ + 75, + 86 + ] + } + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/JhqVQOMDvE", + "expanded_url": "http://bit.ly/1i9Bjed", + "display_url": "bit.ly/1i9Bjed", + "indices": [ + 116, + 138 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 101, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 11 23:44:55 +0000 2014", + "id": 454767077422010368, + "id_str": "454767077422010368", + "text": "@DrPizza the skies roll back like a scroll, every mountain and island is moved out of its place, and the angels proclaim:\n\n👼👼MICROSOFT KIN👼👼", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454765818278989824, + "in_reply_to_status_id_str": "454765818278989824", + "in_reply_to_user_id": 11375732, + "in_reply_to_user_id_str": "11375732", + "in_reply_to_screen_name": "DrPizza", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 11 23:41:18 +0000 2014", + "id": 454766170152108032, + "id_str": "454766170152108032", + "text": "@DrPizza this stranger doesn’t think so… https://t.co/X2Q99QpotK", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454755643837005824, + "in_reply_to_status_id_str": "454755643837005824", + "in_reply_to_user_id": 11375732, + "in_reply_to_user_id_str": "11375732", + "in_reply_to_screen_name": "DrPizza", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 11 23:21:02 +0000 2014", + "id": 454761069597433856, + "id_str": "454761069597433856", + "text": "@Ninjifox only TPP could get a mon to level 100… and still lose for days after that", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454758232272437248, + "in_reply_to_status_id_str": "454758232272437248", + "in_reply_to_user_id": 119217218, + "in_reply_to_user_id_str": "119217218", + "in_reply_to_screen_name": "Ninjifox", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 11 23:04:05 +0000 2014", + "id": 454756803713458179, + "id_str": "454756803713458179", + "text": "RT @chort0: When life gives you #Heartbleed, make #Heartbleed cake. AKA trolling the Ops team. http://t.co/u7ZPVLyzry", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Fri Apr 11 23:03:45 +0000 2014", + "id": 454756719336255488, + "id_str": "454756719336255488", + "text": "When life gives you #Heartbleed, make #Heartbleed cake. AKA trolling the Ops team. http://t.co/u7ZPVLyzry", + "source": "iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 25519088, + "id_str": "25519088" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 95, + "favorite_count": 51, + "entities": { + "hashtags": [ + { + "text": "Heartbleed", + "indices": [ + 20, + 31 + ] + }, + { + "text": "Heartbleed", + "indices": [ + 38, + 49 + ] + } + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ], + "media": [ + { + "id": 454756719071989760, + "id_str": "454756719071989760", + "indices": [ + 83, + 105 + ], + "media_url": "http://pbs.twimg.com/media/Bk-e05uCEAAnYaX.jpg", + "media_url_https": "https://pbs.twimg.com/media/Bk-e05uCEAAnYaX.jpg", + "url": "http://t.co/u7ZPVLyzry", + "display_url": "pic.twitter.com/u7ZPVLyzry", + "expanded_url": "http://twitter.com/chort0/status/454756719336255488/photo/1", + "type": "photo", + "sizes": { + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 453, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 800, + "resize": "fit" + }, + "large": { + "w": 852, + "h": 1136, + "resize": "fit" + } + } + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 95, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 11 23:01:36 +0000 2014", + "id": 454756176937635840, + "id_str": "454756176937635840", + "text": "@FakeInfosecNews starring who, exactly? ˙ ͜ʟ˙", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454752716322246656, + "in_reply_to_status_id_str": "454752716322246656", + "in_reply_to_user_id": 834678349, + "in_reply_to_user_id_str": "834678349", + "in_reply_to_screen_name": "FakeInfosecNews", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 11 22:58:35 +0000 2014", + "id": 454755420092252160, + "id_str": "454755420092252160", + "text": "@mftb 😇", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454754824999809024, + "in_reply_to_status_id_str": "454754824999809024", + "in_reply_to_user_id": 15089349, + "in_reply_to_user_id_str": "15089349", + "in_reply_to_screen_name": "mftb", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Fri Apr 11 22:53:02 +0000 2014", + "id": 454754023942668288, + "id_str": "454754023942668288", + "text": "The people who put together the bleeder test scripts missed their chance to deploy malware written in go to the wild", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 11 22:28:01 +0000 2014", + "id": 454747725821923328, + "id_str": "454747725821923328", + "text": "@bascule yes. They link it from other official sources.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454744723756814336, + "in_reply_to_status_id_str": "454744723756814336", + "in_reply_to_user_id": 6083342, + "in_reply_to_user_id_str": "6083342", + "in_reply_to_screen_name": "bascule", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 11 22:08:26 +0000 2014", + "id": 454742796625539072, + "id_str": "454742796625539072", + "text": "RT @codinghorror: OK I am trying to set up GnuPGP for the first time and I have concluded if this is the system, everyone is screwed", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Fri Apr 11 21:49:53 +0000 2014", + "id": 454738132055773184, + "id_str": "454738132055773184", + "text": "OK I am trying to set up GnuPGP for the first time and I have concluded if this is the system, everyone is screwed", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 5637652, + "id_str": "5637652" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 97, + "favorite_count": 86, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 97, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 11 21:21:46 +0000 2014", + "id": 454731053568385024, + "id_str": "454731053568385024", + "text": "What if Bloomberg completely made up the unnamed sources just to force the NSA to make a statement one way or the other? #ConspiracyHour", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 6, + "favorite_count": 10, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 11 21:16:22 +0000 2014", + "id": 454729695058489344, + "id_str": "454729695058489344", + "text": "RT @ErrataRob: I believe the NSA's statement that they didn't know about Hearbleed.\n\nI don't believe their claim they would've told us if t…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Fri Apr 11 21:16:03 +0000 2014", + "id": 454729616570060800, + "id_str": "454729616570060800", + "text": "I believe the NSA's statement that they didn't know about Hearbleed.\n\nI don't believe their claim they would've told us if they had", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 15300995, + "id_str": "15300995" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 33, + "favorite_count": 19, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 33, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 11 21:15:50 +0000 2014", + "id": 454729562224865280, + "id_str": "454729562224865280", + "text": "@DarthNull @gruber please tell me you’re not joking, I am willing to pay my way out of being an ad-served peasant", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454729398772838400, + "in_reply_to_status_id_str": "454729398772838400", + "in_reply_to_user_id": 12287142, + "in_reply_to_user_id_str": "12287142", + "in_reply_to_screen_name": "DarthNull", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 11 21:13:44 +0000 2014", + "id": 454729032337485824, + "id_str": "454729032337485824", + "text": "NSA lied to Congress and didn’t get in any real trouble which is why they can now INSIST they bled no hearts but no-one will believe them", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 44, + "favorite_count": 16, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 11 21:11:21 +0000 2014", + "id": 454728431671193600, + "id_str": "454728431671193600", + "text": "@demize95 or not. http://t.co/GYtH0F05fV", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454728082054578176, + "in_reply_to_status_id_str": "454728082054578176", + "in_reply_to_user_id": 137133048, + "in_reply_to_user_id_str": "137133048", + "in_reply_to_screen_name": "demize95", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 11 21:07:23 +0000 2014", + "id": 454727434064363520, + "id_str": "454727434064363520", + "text": "@frkbmb I know, but it’s why many people I personally know have been active in his legal case", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454727252689682432, + "in_reply_to_status_id_str": "454727252689682432", + "in_reply_to_user_id": 540721095, + "in_reply_to_user_id_str": "540721095", + "in_reply_to_screen_name": "frkbmb", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 11 21:06:42 +0000 2014", + "id": 454727262739636225, + "id_str": "454727262739636225", + "text": "@mattblaze it’s allegedly the National Security Council but their website is unhelpful http://t.co/A2EVj8OApd", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454726343918616576, + "in_reply_to_status_id_str": "454726343918616576", + "in_reply_to_user_id": 26567591, + "in_reply_to_user_id_str": "26567591", + "in_reply_to_screen_name": "mattblaze", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 11 21:06:06 +0000 2014", + "id": 454727110675136512, + "id_str": "454727110675136512", + "text": "@DarrenPMeyer glory.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454726938570276864, + "in_reply_to_status_id_str": "454726938570276864", + "in_reply_to_user_id": 468928589, + "in_reply_to_user_id_str": "468928589", + "in_reply_to_screen_name": "DarrenPMeyer", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "de" + }, + { + "created_at": "Fri Apr 11 21:02:19 +0000 2014", + "id": 454726159000141824, + "id_str": "454726159000141824", + "text": "@frkbmb in any case I am morally opposed to the current state of the American prison system itself, even for him.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454725629384994816, + "in_reply_to_status_id_str": "454725629384994816", + "in_reply_to_user_id": 540721095, + "in_reply_to_user_id_str": "540721095", + "in_reply_to_screen_name": "frkbmb", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 11 21:01:16 +0000 2014", + "id": 454725894050172928, + "id_str": "454725894050172928", + "text": "@frkbmb I think we’re seeing very different timelines — almost everyone I know thinks weev is awful but the precedent was too dangerous", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454725629384994816, + "in_reply_to_status_id_str": "454725629384994816", + "in_reply_to_user_id": 540721095, + "in_reply_to_user_id_str": "540721095", + "in_reply_to_screen_name": "frkbmb", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 11 20:59:06 +0000 2014", + "id": 454725349449154561, + "id_str": "454725349449154561", + "text": "RT @rj_gallagher: US National Security Council denies Bloomberg report that NSA knew about #Heartbleed vuln for 2yrs: http://t.co/5dMxZfDVB…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Fri Apr 11 20:57:30 +0000 2014", + "id": 454724948293320704, + "id_str": "454724948293320704", + "text": "US National Security Council denies Bloomberg report that NSA knew about #Heartbleed vuln for 2yrs: http://t.co/5dMxZfDVB1 via @zekejmiller", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 224698363, + "id_str": "224698363" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 45, + "favorite_count": 14, + "entities": { + "hashtags": [ + { + "text": "Heartbleed", + "indices": [ + 73, + 84 + ] + } + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "ZekeJMiller", + "name": "Zeke Miller", + "id": 21316253, + "id_str": "21316253", + "indices": [ + 127, + 139 + ] + } + ], + "media": [ + { + "id": 454721511090163712, + "id_str": "454721511090163712", + "indices": [ + 100, + 122 + ], + "media_url": "http://pbs.twimg.com/media/Bk9-zhxCEAA6Fgo.png", + "media_url_https": "https://pbs.twimg.com/media/Bk9-zhxCEAA6Fgo.png", + "url": "http://t.co/5dMxZfDVB1", + "display_url": "pic.twitter.com/5dMxZfDVB1", + "expanded_url": "http://twitter.com/ZekeJMiller/status/454721511283109888/photo/1", + "type": "photo", + "sizes": { + "large": { + "w": 1024, + "h": 408, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 135, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 600, + "h": 239, + "resize": "fit" + } + }, + "source_status_id": 454721511283109888, + "source_status_id_str": "454721511283109888" + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 45, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 11 20:48:35 +0000 2014", + "id": 454722703719936000, + "id_str": "454722703719936000", + "text": "Time to mull over possible least-untruthful meanings I guess", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 4, + "favorite_count": 6, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 11 20:46:48 +0000 2014", + "id": 454722254358990848, + "id_str": "454722254358990848", + "text": "@DrPizza why are we?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454721863608832000, + "in_reply_to_status_id_str": "454721863608832000", + "in_reply_to_user_id": 11375732, + "in_reply_to_user_id_str": "11375732", + "in_reply_to_screen_name": "DrPizza", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 11 20:45:34 +0000 2014", + "id": 454721945557561345, + "id_str": "454721945557561345", + "text": "RT @NSA_PAO: Statement: NSA was not aware of the recently identified Heartbleed vulnerability until it was made public.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Fri Apr 11 20:38:05 +0000 2014", + "id": 454720059156754434, + "id_str": "454720059156754434", + "text": "Statement: NSA was not aware of the recently identified Heartbleed vulnerability until it was made public.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2248872301, + "id_str": "2248872301" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 778, + "favorite_count": 170, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 778, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 11 20:45:14 +0000 2014", + "id": 454721858890641408, + "id_str": "454721858890641408", + "text": "@deezthugs @kaepora NSA? Publish? 😂\n\nUnder rare circumstances they disclose anything, seems they usually do so anonymously anyway.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454721351538843648, + "in_reply_to_status_id_str": "454721351538843648", + "in_reply_to_user_id": 15367107, + "in_reply_to_user_id_str": "15367107", + "in_reply_to_screen_name": "deezthugs", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 11 20:21:14 +0000 2014", + "id": 454715819172577280, + "id_str": "454715819172577280", + "text": "@DarrenPMeyer it’s the IE 6 thing that makes me hope you don’t mean OUR office.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454714934707109888, + "in_reply_to_status_id_str": "454714934707109888", + "in_reply_to_user_id": 468928589, + "in_reply_to_user_id_str": "468928589", + "in_reply_to_screen_name": "DarrenPMeyer", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 11 20:06:07 +0000 2014", + "id": 454712016050335744, + "id_str": "454712016050335744", + "text": "@TinkerSec @thegrugq hold on guys why don’t we settle this with a FOIA :)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454711789561708544, + "in_reply_to_status_id_str": "454711789561708544", + "in_reply_to_user_id": 2155140654, + "in_reply_to_user_id_str": "2155140654", + "in_reply_to_screen_name": "TinkerSec", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 11 20:02:33 +0000 2014", + "id": 454711118737731585, + "id_str": "454711118737731585", + "text": "@eevee @computionist @Jennimason0990 @mcclure111 most code is lucky to get this many: 👀👀", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454710588837347329, + "in_reply_to_status_id_str": "454710588837347329", + "in_reply_to_user_id": 14412937, + "in_reply_to_user_id_str": "14412937", + "in_reply_to_screen_name": "eevee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 11 19:53:43 +0000 2014", + "id": 454708895098077184, + "id_str": "454708895098077184", + "text": "RT @daveaitel: Yes, the person who put the constants in DUAL_EC is going to keynote @InfiltrateCon . Yes, you can ask him questions. It's a…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Fri Apr 11 19:43:14 +0000 2014", + "id": 454706259615567872, + "id_str": "454706259615567872", + "text": "Yes, the person who put the constants in DUAL_EC is going to keynote @InfiltrateCon . Yes, you can ask him questions. It's a good story.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 8371802, + "id_str": "8371802" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 38, + "favorite_count": 14, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "InfiltrateCon", + "name": "Infiltrate", + "id": 226628271, + "id_str": "226628271", + "indices": [ + 69, + 83 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 38, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 11 19:46:44 +0000 2014", + "id": 454707139345661952, + "id_str": "454707139345661952", + "text": "@chriseng speculation JUST now? Do you even read twitter?!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454706404629438464, + "in_reply_to_status_id_str": "454706404629438464", + "in_reply_to_user_id": 13752192, + "in_reply_to_user_id_str": "13752192", + "in_reply_to_screen_name": "chriseng", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 11 19:40:27 +0000 2014", + "id": 454705556478246912, + "id_str": "454705556478246912", + "text": "@thegrugq don’t act like they ain’t got time for both", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454705270543745024, + "in_reply_to_status_id_str": "454705270543745024", + "in_reply_to_user_id": 18983429, + "in_reply_to_user_id_str": "18983429", + "in_reply_to_screen_name": "thegrugq", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 11 19:36:05 +0000 2014", + "id": 454704459554500608, + "id_str": "454704459554500608", + "text": ".@thegrugq it’s not nice to bait poor innocent reporters", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454702863764037632, + "in_reply_to_status_id_str": "454702863764037632", + "in_reply_to_user_id": 18983429, + "in_reply_to_user_id_str": "18983429", + "in_reply_to_screen_name": "thegrugq", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 7, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 11 19:33:10 +0000 2014", + "id": 454703723236052993, + "id_str": "454703723236052993", + "text": "@duffian @thegrugq whoosh !", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454703067821522944, + "in_reply_to_status_id_str": "454703067821522944", + "in_reply_to_user_id": 15419107, + "in_reply_to_user_id_str": "15419107", + "in_reply_to_screen_name": "duffian", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 11 19:31:06 +0000 2014", + "id": 454703204291588096, + "id_str": "454703204291588096", + "text": "@demize95 @elad3 oh, they’re Not Even Wrong…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454702970819457024, + "in_reply_to_status_id_str": "454702970819457024", + "in_reply_to_user_id": 137133048, + "in_reply_to_user_id_str": "137133048", + "in_reply_to_screen_name": "demize95", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 11 19:29:14 +0000 2014", + "id": 454702733652926464, + "id_str": "454702733652926464", + "text": ".@elad3 this bloomberg thing is clearly not written by the most technical of reporters because they repeatedly call OpenSSL the protocol", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454702080448802816, + "in_reply_to_status_id_str": "454702080448802816", + "in_reply_to_user_id": 160897504, + "in_reply_to_user_id_str": "160897504", + "in_reply_to_screen_name": "elad3", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 4, + "favorite_count": 5, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 11 19:25:32 +0000 2014", + "id": 454701804086132737, + "id_str": "454701804086132737", + "text": "@zorm what else are they even doing with all those datacenters?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454701614117683200, + "in_reply_to_status_id_str": "454701614117683200", + "in_reply_to_user_id": 17954340, + "in_reply_to_user_id_str": "17954340", + "in_reply_to_screen_name": "zorm", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 11 19:23:56 +0000 2014", + "id": 454701399813918720, + "id_str": "454701399813918720", + "text": "@bcarpe211 not to imply that they’re infallible but that it’s Probably True rather than Probably Not True.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454700827832500224, + "in_reply_to_status_id_str": "454700827832500224", + "in_reply_to_user_id": 252367247, + "in_reply_to_user_id_str": "252367247", + "in_reply_to_screen_name": "bcarpe211", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 11 19:23:16 +0000 2014", + "id": 454701233941798912, + "id_str": "454701233941798912", + "text": "@bcarpe211 unfortunately naming sources causes prison sentences. Since it’s an established newspaper there is a certain trust granted.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454700827832500224, + "in_reply_to_status_id_str": "454700827832500224", + "in_reply_to_user_id": 252367247, + "in_reply_to_user_id_str": "252367247", + "in_reply_to_screen_name": "bcarpe211", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 11 19:19:39 +0000 2014", + "id": 454700322263687169, + "id_str": "454700322263687169", + "text": "*sigh*\n\nNSA, Heartbleed, no need to even read the article, you know what it says 😒\n\nhttp://t.co/ZoN6Zbcvco", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 59, + "favorite_count": 20, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 11 19:19:39 +0000 2014", + "id": 454700322263687169, + "id_str": "454700322263687169", + "text": "*sigh*\n\nNSA, Heartbleed, no need to even read the article, you know what it says 😒\n\nhttp://t.co/ZoN6Zbcvco", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 59, + "favorite_count": 20, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 11 19:08:24 +0000 2014", + "id": 454697490470944768, + "id_str": "454697490470944768", + "text": "RT @ErrataRob: I'm changing my title to \"a really swell guy\" at Errata Security, just to see reporters use that when referencing me", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Fri Apr 11 18:46:53 +0000 2014", + "id": 454692076119408641, + "id_str": "454692076119408641", + "text": "I'm changing my title to \"a really swell guy\" at Errata Security, just to see reporters use that when referencing me", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 15300995, + "id_str": "15300995" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 15, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 3, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 11 19:07:55 +0000 2014", + "id": 454697370794881024, + "id_str": "454697370794881024", + "text": "@11rcombs well, no, it’s not, but the others don’t bleed. You know, probably.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454697085074681856, + "in_reply_to_status_id_str": "454697085074681856", + "in_reply_to_user_id": 98022472, + "in_reply_to_user_id_str": "98022472", + "in_reply_to_screen_name": "11rcombs", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 11 18:53:32 +0000 2014", + "id": 454693748484890624, + "id_str": "454693748484890624", + "text": "@TweetsofOld am I more annoyed at the possibly misogynistic advertising slogan or at the mortally bad typesetting issues?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454676016498089984, + "in_reply_to_status_id_str": "454676016498089984", + "in_reply_to_user_id": 66666549, + "in_reply_to_user_id_str": "66666549", + "in_reply_to_screen_name": "TweetsofOld", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 11 18:27:49 +0000 2014", + "id": 454687277651070977, + "id_str": "454687277651070977", + "text": "CA infrastructure “never built for revocation at mass scale.” Wee oversight in planning for the worst. http://t.co/HFAU0vXrYl", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 16, + "favorite_count": 8, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 11 18:09:53 +0000 2014", + "id": 454682767155298304, + "id_str": "454682767155298304", + "text": "@joncruz I might if other thing doesn't work. Unfortunately the labyrinth of Reasons behind what I'm doing is not really tweet-sized", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 454674570872512512, + "in_reply_to_status_id_str": "454674570872512512", + "in_reply_to_user_id": 14417040, + "in_reply_to_user_id_str": "14417040", + "in_reply_to_screen_name": "joncruz", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 11 17:26:59 +0000 2014", + "id": 454671970307956736, + "id_str": "454671970307956736", + "text": "Things that weren't in the glamorous hacker job description: gettin' reeeaaaal intimate with OpenSSL's build options", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 5, + "favorite_count": 12, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 11 17:05:35 +0000 2014", + "id": 454666582854500352, + "id_str": "454666582854500352", + "text": "@mootcycle it so happens I know the recipient won’t mind :)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454666213986406401, + "in_reply_to_status_id_str": "454666213986406401", + "in_reply_to_user_id": 14504814, + "in_reply_to_user_id_str": "14504814", + "in_reply_to_screen_name": "mootcycle", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 11 17:03:20 +0000 2014", + "id": 454666015801372674, + "id_str": "454666015801372674", + "text": "@mootcycle that sounds like a lot more work than adding spaces… and seems to completely defeat the point of malware filtering anyway :)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454665645041647616, + "in_reply_to_status_id_str": "454665645041647616", + "in_reply_to_user_id": 14504814, + "in_reply_to_user_id_str": "14504814", + "in_reply_to_screen_name": "mootcycle", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 11 16:57:55 +0000 2014", + "id": 454664653118115840, + "id_str": "454664653118115840", + "text": "@Oobert yeh", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454664342655365120, + "in_reply_to_status_id_str": "454664342655365120", + "in_reply_to_user_id": 49431775, + "in_reply_to_user_id_str": "49431775", + "in_reply_to_screen_name": "Oobert", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Fri Apr 11 16:55:29 +0000 2014", + "id": 454664042909814786, + "id_str": "454664042909814786", + "text": "AHHH the server I ran heartbleed tests from is offline!! The spooks caught me!! Oh wait I turned off wifi on this laptop 😓", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 13, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 11 16:44:55 +0000 2014", + "id": 454661384576716801, + "id_str": "454661384576716801", + "text": "@hirojin @trafficserver do you, uh, mean 32-bit?", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 454661198009876480, + "in_reply_to_status_id_str": "454661198009876480", + "in_reply_to_user_id": 39625343, + "in_reply_to_user_id_str": "39625343", + "in_reply_to_screen_name": "hirojin", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 11 16:44:26 +0000 2014", + "id": 454661259779391489, + "id_str": "454661259779391489", + "text": "I'm so glad Twitter's malware protection just stopped me from DM'ing a benign link... to myself.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 4, + "favorite_count": 13, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 11 16:42:01 +0000 2014", + "id": 454660653941522433, + "id_str": "454660653941522433", + "text": "@vogon I don't know but I don't feel that would affect my assessment because we all know about the exciting bit-stages of x86 chips", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 454660390358482944, + "in_reply_to_status_id_str": "454660390358482944", + "in_reply_to_user_id": 6326912, + "in_reply_to_user_id_str": "6326912", + "in_reply_to_screen_name": "vogon", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 11 16:40:46 +0000 2014", + "id": 454660336323690496, + "id_str": "454660336323690496", + "text": "(For values of \"some point\" equal to when I swapped out an iPhone 4S for a 5S, as my desktop, laptops, iPad were all 64-bit at that point)", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 11 16:39:38 +0000 2014", + "id": 454660052100849664, + "id_str": "454660052100849664", + "text": "At some point, a raspberry pi became the only 32-bit general purpose computer I own. And yet, in my head, 32-bit is still the default.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 11, + "favorite_count": 25, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 11 16:17:39 +0000 2014", + "id": 454654521135075328, + "id_str": "454654521135075328", + "text": "@Kaptain_Kaos they have been shipping with too little RAM relative to the average use case and they know it. They murder early and often", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 454654299646074880, + "in_reply_to_status_id_str": "454654299646074880", + "in_reply_to_user_id": 325044007, + "in_reply_to_user_id_str": "325044007", + "in_reply_to_screen_name": "Kaptain_Kaos", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 11 16:16:28 +0000 2014", + "id": 454654225054978050, + "id_str": "454654225054978050", + "text": "\"Can I build OpenSSL in Visual Studio (no cygwin plz)?\" \"Well, first, you install ActivePerl...\"", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 11 16:12:39 +0000 2014", + "id": 454653264223809536, + "id_str": "454653264223809536", + "text": "While paging may be a distant memory I'm not exactly a fan of the iPad's \"who needs RAM when you can just kill processes to get more\" either", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 4, + "favorite_count": 8, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 11 16:08:41 +0000 2014", + "id": 454652265291595776, + "id_str": "454652265291595776", + "text": "@jesster_king the answer is vast and manifold. It affects whoever happens to own whatever data was in that region of RAM during a heartbeat", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 454652064988024832, + "in_reply_to_status_id_str": "454652064988024832", + "in_reply_to_user_id": 46763517, + "in_reply_to_user_id_str": "46763517", + "in_reply_to_screen_name": "jesster_king", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 11 16:06:40 +0000 2014", + "id": 454651758594506752, + "id_str": "454651758594506752", + "text": "@garblefart basically after about a gigabyte there is literally no point in making the pagefile bigger because your computer is just screwed", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 454651287645474816, + "in_reply_to_status_id_str": "454651287645474816", + "in_reply_to_user_id": 737104831, + "in_reply_to_user_id_str": "737104831", + "in_reply_to_screen_name": "garblefart", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 11 16:03:58 +0000 2014", + "id": 454651076915240960, + "id_str": "454651076915240960", + "text": "System slowdown due to paging! I forgot that was a thing that could happen on computers! Terrible Worktop sent me a love letter from 2003.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 11 15:52:53 +0000 2014", + "id": 454648289007517697, + "id_str": "454648289007517697", + "text": "RT @evacide: Good news: @rabite goes free, for now. Bad news: we don't get a ruling on CFAA, for now.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Fri Apr 11 15:49:51 +0000 2014", + "id": 454647523961876480, + "id_str": "454647523961876480", + "text": "Good news: @rabite goes free, for now. Bad news: we don't get a ruling on CFAA, for now.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 14707266, + "id_str": "14707266" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 38, + "favorite_count": 11, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "rabite", + "name": "Andrew Auernheimer", + "id": 15707229, + "id_str": "15707229", + "indices": [ + 11, + 18 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 38, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 11 15:50:24 +0000 2014", + "id": 454647661598375937, + "id_str": "454647661598375937", + "text": "Proposal for the installment of Severe Repercussions for marketers who put the word “Followup” in their email subject", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 4, + "favorite_count": 5, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 11 14:51:19 +0000 2014", + "id": 454632793583394817, + "id_str": "454632793583394817", + "text": "@hinanawi_chan special edition! Sell it!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454631596097036288, + "in_reply_to_status_id_str": "454631596097036288", + "in_reply_to_user_id": 2336014178, + "in_reply_to_user_id_str": "2336014178", + "in_reply_to_screen_name": "hinanawi_chan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 11 14:50:31 +0000 2014", + "id": 454632594668544000, + "id_str": "454632594668544000", + "text": "@thegrugq @raulsiles ugh, you left your mouse cursor in the screenshot, noob", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454630687816310784, + "in_reply_to_status_id_str": "454630687816310784", + "in_reply_to_user_id": 18983429, + "in_reply_to_user_id_str": "18983429", + "in_reply_to_screen_name": "thegrugq", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 11 14:37:13 +0000 2014", + "id": 454629244455620611, + "id_str": "454629244455620611", + "text": "@hinanawi_chan ˙ ͜ʟ˙", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454629072254291968, + "in_reply_to_status_id_str": "454629072254291968", + "in_reply_to_user_id": 2336014178, + "in_reply_to_user_id_str": "2336014178", + "in_reply_to_screen_name": "hinanawi_chan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "vi" + }, + { + "created_at": "Fri Apr 11 14:28:22 +0000 2014", + "id": 454627019964567552, + "id_str": "454627019964567552", + "text": "RT @tqbf: Google had an XXE, on production server, in a customer-facing feature. http://t.co/TOx20QY8GS", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Fri Apr 11 14:07:46 +0000 2014", + "id": 454621832608362496, + "id_str": "454621832608362496", + "text": "Google had an XXE, on production server, in a customer-facing feature. http://t.co/TOx20QY8GS", + "source": "Tweetbot for Mac", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 9395312, + "id_str": "9395312" + }, + "geo": null, + "coordinates": null, + "place": { + "id": "c8b021ffd0c94ffc", + "url": "https://api.twitter.com/1.1/geo/id/c8b021ffd0c94ffc.json", + "place_type": "city", + "name": "Oak Park", + "full_name": "Oak Park, IL", + "country_code": "US", + "country": "United States", + "contained_within": [ + + ], + "bounding_box": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.805698, + 41.865005 + ], + [ + -87.774103, + 41.865005 + ], + [ + -87.774103, + 41.909253 + ], + [ + -87.805698, + 41.909253 + ] + ] + ] + }, + "attributes": { + } + }, + "contributors": null, + "retweet_count": 58, + "favorite_count": 30, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/TOx20QY8GS", + "expanded_url": "http://blog.detectify.com/post/82370846588/how-we-got-read-access-on-googles-production-servers", + "display_url": "blog.detectify.com/post/823708465…", + "indices": [ + 71, + 93 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 58, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 11 14:21:46 +0000 2014", + "id": 454625356503592960, + "id_str": "454625356503592960", + "text": "RT @runasand: In response to my #FOIA request, the NSA just released 20 pages of contracts with Apple (hopefully more to come!): https://t.…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Fri Apr 11 13:51:04 +0000 2014", + "id": 454617632961212416, + "id_str": "454617632961212416", + "text": "In response to my #FOIA request, the NSA just released 20 pages of contracts with Apple (hopefully more to come!): https://t.co/5A6ebLWOIa", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 19959946, + "id_str": "19959946" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 36, + "favorite_count": 29, + "entities": { + "hashtags": [ + { + "text": "FOIA", + "indices": [ + 18, + 23 + ] + } + ], + "symbols": [ + + ], + "urls": [ + { + "url": "https://t.co/5A6ebLWOIa", + "expanded_url": "https://www.muckrock.com/foi/united-states-of-america-10/nsa-contracts-with-apple-inc-8808/", + "display_url": "muckrock.com/foi/united-sta…", + "indices": [ + 115, + 138 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 36, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 11 14:13:25 +0000 2014", + "id": 454623257430601728, + "id_str": "454623257430601728", + "text": "@scruffbeast @eevee special defense rose sharply!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454592811317211136, + "in_reply_to_status_id_str": "454592811317211136", + "in_reply_to_user_id": 1120837998, + "in_reply_to_user_id_str": "1120837998", + "in_reply_to_screen_name": "scruffbeast", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 11 14:09:54 +0000 2014", + "id": 454622370448556032, + "id_str": "454622370448556032", + "text": "@matthew_d_green @nickm_tor @ioerror the capacity of corporate users to fund OpenSSL is about four orders of magnitude above mine so…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454600660143849472, + "in_reply_to_status_id_str": "454600660143849472", + "in_reply_to_user_id": 106234268, + "in_reply_to_user_id_str": "106234268", + "in_reply_to_screen_name": "matthew_d_green", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 11 14:04:15 +0000 2014", + "id": 454620949011513344, + "id_str": "454620949011513344", + "text": "RT @RadioAstrology: An astrologer's life is getting increasingly difficult. We now have to factor in exomoons too. #bigdata #toomanyvariabl…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Fri Apr 11 11:51:16 +0000 2014", + "id": 454587482546659328, + "id_str": "454587482546659328", + "text": "An astrologer's life is getting increasingly difficult. We now have to factor in exomoons too. #bigdata #toomanyvariables", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 402041445, + "id_str": "402041445" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 17, + "favorite_count": 13, + "entities": { + "hashtags": [ + { + "text": "bigdata", + "indices": [ + 95, + 103 + ] + }, + { + "text": "toomanyvariables", + "indices": [ + 104, + 121 + ] + } + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 17, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 11 14:00:19 +0000 2014", + "id": 454619959352918016, + "id_str": "454619959352918016", + "text": "@kivikakk D: D:", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454566589879169024, + "in_reply_to_status_id_str": "454566589879169024", + "in_reply_to_user_id": 67204542, + "in_reply_to_user_id_str": "67204542", + "in_reply_to_screen_name": "kivikakk", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "it" + }, + { + "created_at": "Fri Apr 11 13:35:08 +0000 2014", + "id": 454613624062218240, + "id_str": "454613624062218240", + "text": "@_wirepair the author is way too nice. They were handling real money and didn’t know basic database stuff, not a yu-gi-oh trading card site", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454506002264887296, + "in_reply_to_status_id_str": "454506002264887296", + "in_reply_to_user_id": 253384212, + "in_reply_to_user_id_str": "253384212", + "in_reply_to_screen_name": "_wirepair", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 11 13:34:25 +0000 2014", + "id": 454613440716627969, + "id_str": "454613440716627969", + "text": "What do we want? Bitcoin duplicate withdrawals. When do we want it? Bitcoin duplicate withdrawals. http://t.co/VchCdhsXkE", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 20, + "favorite_count": 15, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 11 13:08:27 +0000 2014", + "id": 454606908981510144, + "id_str": "454606908981510144", + "text": "@joerocklin this is normal when you mix fonts", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454565744437514241, + "in_reply_to_status_id_str": "454565744437514241", + "in_reply_to_user_id": 14761239, + "in_reply_to_user_id_str": "14761239", + "in_reply_to_screen_name": "joerocklin", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 11 04:47:23 +0000 2014", + "id": 454480807441092608, + "id_str": "454480807441092608", + "text": "@_wirepair 👸🎤💔", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454480409003167744, + "in_reply_to_status_id_str": "454480409003167744", + "in_reply_to_user_id": 253384212, + "in_reply_to_user_id_str": "253384212", + "in_reply_to_screen_name": "_wirepair", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Fri Apr 11 03:56:49 +0000 2014", + "id": 454468086025158656, + "id_str": "454468086025158656", + "text": "Official soundtrack of trying to figure out how to fix the internet https://t.co/B9dKGkgJF3", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 6, + "favorite_count": 8, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 11 03:18:03 +0000 2014", + "id": 454458329029681152, + "id_str": "454458329029681152", + "text": "@homakov the latter cuz I can’t screw that up and don’t have to worry anymore", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454450901642534912, + "in_reply_to_status_id_str": "454450901642534912", + "in_reply_to_user_id": 86890115, + "in_reply_to_user_id_str": "86890115", + "in_reply_to_screen_name": "homakov", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 11 02:25:19 +0000 2014", + "id": 454445055554899968, + "id_str": "454445055554899968", + "text": "@Kufat @m1sp pretty much", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454444857680207873, + "in_reply_to_status_id_str": "454444857680207873", + "in_reply_to_user_id": 207691003, + "in_reply_to_user_id_str": "207691003", + "in_reply_to_screen_name": "Kufat", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 11 02:22:42 +0000 2014", + "id": 454444396990447616, + "id_str": "454444396990447616", + "text": "@Kufat @m1sp \n> examine pale quadrant \n\n(Google it)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454443947012931584, + "in_reply_to_status_id_str": "454443947012931584", + "in_reply_to_user_id": 207691003, + "in_reply_to_user_id_str": "207691003", + "in_reply_to_screen_name": "Kufat", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "fr" + }, + { + "created_at": "Fri Apr 11 02:21:09 +0000 2014", + "id": 454444009541603329, + "id_str": "454444009541603329", + "text": "@Jennimason0990 yes. Get with the emoji millennium 😉", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454443812840947712, + "in_reply_to_status_id_str": "454443812840947712", + "in_reply_to_user_id": 485288297, + "in_reply_to_user_id_str": "485288297", + "in_reply_to_screen_name": "Jennimason0990", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 11 02:19:21 +0000 2014", + "id": 454443554153459712, + "id_str": "454443554153459712", + "text": "If you noticed I’m using a lot of emoji it’s because I always wanted to but held back because they didn’t render on chrome 🎀", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 8, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 11 02:12:20 +0000 2014", + "id": 454441788259188737, + "id_str": "454441788259188737", + "text": "I’m slowly dying of OpenSSL poisoning http://t.co/1G1axZ3rAH 🙍", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 41, + "favorite_count": 19, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 11 02:09:43 +0000 2014", + "id": 454441131296976896, + "id_str": "454441131296976896", + "text": "@Talen_Lee @Shufflejoy http://t.co/hxsvaJLyzD I think the Unicode spec only requires a video game enemy of some sort.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454439990160654336, + "in_reply_to_status_id_str": "454439990160654336", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 11 02:00:57 +0000 2014", + "id": 454438924409380864, + "id_str": "454438924409380864", + "text": "@Shufflejoy 👾 <— variety in my celebratory emotes", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454437695108825088, + "in_reply_to_status_id_str": "454437695108825088", + "in_reply_to_user_id": 1567524811, + "in_reply_to_user_id_str": "1567524811", + "in_reply_to_screen_name": "Shufflejoy", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 11 01:52:19 +0000 2014", + "id": 454436752196120576, + "id_str": "454436752196120576", + "text": "RT @arstechnica: Silicon Valley attack on electric grid, fiber-optic cables unsolved a year later http://t.co/7r3fs8bERn", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Fri Apr 11 01:51:09 +0000 2014", + "id": 454436459932442624, + "id_str": "454436459932442624", + "text": "Silicon Valley attack on electric grid, fiber-optic cables unsolved a year later http://t.co/7r3fs8bERn", + "source": "Ars tweetbot", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 717313, + "id_str": "717313" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 27, + "favorite_count": 24, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/7r3fs8bERn", + "expanded_url": "http://ars.to/1lUaTQO", + "display_url": "ars.to/1lUaTQO", + "indices": [ + 81, + 103 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 27, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 11 01:51:01 +0000 2014", + "id": 454436427255021568, + "id_str": "454436427255021568", + "text": "@antumbral (as opposed to, I don’t know, objectively factual magic)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454435274982821888, + "in_reply_to_status_id_str": "454435274982821888", + "in_reply_to_user_id": 19837512, + "in_reply_to_user_id_str": "19837512", + "in_reply_to_screen_name": "antumbral", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 11 01:49:52 +0000 2014", + "id": 454436135436308480, + "id_str": "454436135436308480", + "text": "@antumbral I’ve noticed that Japanese media in general seem to find Kabbalah interesting and use it as a basis for fictional magic", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454435274982821888, + "in_reply_to_status_id_str": "454435274982821888", + "in_reply_to_user_id": 19837512, + "in_reply_to_user_id_str": "19837512", + "in_reply_to_screen_name": "antumbral", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 11 01:26:15 +0000 2014", + "id": 454430193823010816, + "id_str": "454430193823010816", + "text": "@judsontwit @mattblaze but compare the number of swiss army knives treated as Terrorism to number of incidental bugs that are Backdoors", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454429915534745600, + "in_reply_to_status_id_str": "454429915534745600", + "in_reply_to_user_id": 122836159, + "in_reply_to_user_id_str": "122836159", + "in_reply_to_screen_name": "judsontwit", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 11 01:24:09 +0000 2014", + "id": 454429664015294465, + "id_str": "454429664015294465", + "text": "@tqbf @s7ephen he genuinely believes (afaict) he can programmatically generate messages from his god this way", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454427947404128257, + "in_reply_to_status_id_str": "454427947404128257", + "in_reply_to_user_id": 9395312, + "in_reply_to_user_id_str": "9395312", + "in_reply_to_screen_name": "tqbf", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 11 01:20:31 +0000 2014", + "id": 454428747706675201, + "id_str": "454428747706675201", + "text": "RT @mattblaze: Suspecting NSA's hand behind every bug is rational in roughly the same way that the TSA's suspecting every air passenger of …", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Fri Apr 11 01:02:50 +0000 2014", + "id": 454424301224357888, + "id_str": "454424301224357888", + "text": "Suspecting NSA's hand behind every bug is rational in roughly the same way that the TSA's suspecting every air passenger of terrorism is.", + "source": "TweetDeck", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 26567591, + "id_str": "26567591" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 147, + "favorite_count": 89, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 147, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 11 01:20:18 +0000 2014", + "id": 454428694531280896, + "id_str": "454428694531280896", + "text": "@Talen_Lee source Boston. To conserve characters, I assume.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454424222543011840, + "in_reply_to_status_id_str": "454424222543011840", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 11 01:02:18 +0000 2014", + "id": 454424164523597824, + "id_str": "454424164523597824", + "text": "@dildog @rcheyne 🎉🍻", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454415039953649664, + "in_reply_to_status_id_str": "454415039953649664", + "in_reply_to_user_id": 14159456, + "in_reply_to_user_id_str": "14159456", + "in_reply_to_screen_name": "dildog", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Fri Apr 11 01:01:31 +0000 2014", + "id": 454423967139627009, + "id_str": "454423967139627009", + "text": "RT @dildog: Congratulations to @rcheyne for successfully running #srcbos this year. He knocked it out of the park.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Fri Apr 11 00:26:02 +0000 2014", + "id": 454415039953649664, + "id_str": "454415039953649664", + "text": "Congratulations to @rcheyne for successfully running #srcbos this year. He knocked it out of the park.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 14159456, + "id_str": "14159456" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 6, + "favorite_count": 4, + "entities": { + "hashtags": [ + { + "text": "srcbos", + "indices": [ + 53, + 60 + ] + } + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "rcheyne", + "name": "Rob Cheyne", + "id": 14132132, + "id_str": "14132132", + "indices": [ + 19, + 27 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 6, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 11 00:55:43 +0000 2014", + "id": 454422506703945729, + "id_str": "454422506703945729", + "text": "@Talen_Lee um…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454412945988919297, + "in_reply_to_status_id_str": "454412945988919297", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Fri Apr 11 00:48:52 +0000 2014", + "id": 454420783562231808, + "id_str": "454420783562231808", + "text": "RT @jstnkndy: Btw, to all of you folks who are posting screenshots of #heartbleed with redacted ascii but not redacted hex: -slow clap-", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Thu Apr 10 23:16:40 +0000 2014", + "id": 454397581133897728, + "id_str": "454397581133897728", + "text": "Btw, to all of you folks who are posting screenshots of #heartbleed with redacted ascii but not redacted hex: -slow clap-", + "source": "TweetDeck", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 147694099, + "id_str": "147694099" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 190, + "favorite_count": 125, + "entities": { + "hashtags": [ + { + "text": "heartbleed", + "indices": [ + 56, + 67 + ] + } + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": true, + "lang": "en" + }, + "retweet_count": 190, + "favorite_count": 0, + "favorited": false, + "retweeted": true, + "lang": "en" + }, + { + "created_at": "Fri Apr 11 00:38:05 +0000 2014", + "id": 454418069176475648, + "id_str": "454418069176475648", + "text": "@antumbral the follow button is a decoy.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454394595141382144, + "in_reply_to_status_id_str": "454394595141382144", + "in_reply_to_user_id": 19837512, + "in_reply_to_user_id_str": "19837512", + "in_reply_to_screen_name": "antumbral", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 11 00:29:35 +0000 2014", + "id": 454415931171938304, + "id_str": "454415931171938304", + "text": "RT @hypatiadotca: I've at this point stopped being surprised at how many creeps don't think we talk amongst ourselves / warn eachother abou…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Thu Apr 10 22:48:46 +0000 2014", + "id": 454390562469068800, + "id_str": "454390562469068800", + "text": "I've at this point stopped being surprised at how many creeps don't think we talk amongst ourselves / warn eachother about their creeping.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 6742522, + "id_str": "6742522" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 11, + "favorite_count": 10, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 11, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 11 00:11:25 +0000 2014", + "id": 454411361268039681, + "id_str": "454411361268039681", + "text": "@thegrugq but we still always have 🇨🇳", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454366722745569280, + "in_reply_to_status_id_str": "454366722745569280", + "in_reply_to_user_id": 18983429, + "in_reply_to_user_id_str": "18983429", + "in_reply_to_screen_name": "thegrugq", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 11 00:05:35 +0000 2014", + "id": 454409891034435584, + "id_str": "454409891034435584", + "text": "@FiloSottile forty?! Who is paying for that", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454409601715548161, + "in_reply_to_status_id_str": "454409601715548161", + "in_reply_to_user_id": 51049452, + "in_reply_to_user_id_str": "51049452", + "in_reply_to_screen_name": "FiloSottile", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 11 00:05:09 +0000 2014", + "id": 454409781974155264, + "id_str": "454409781974155264", + "text": "@captcarl13 on top of me already being extremely burnt out on social interaction it would offend a lot of my friends if I did", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454409548993146881, + "in_reply_to_status_id_str": "454409548993146881", + "in_reply_to_user_id": 25856211, + "in_reply_to_user_id_str": "25856211", + "in_reply_to_screen_name": "captcarl13", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 11 00:02:35 +0000 2014", + "id": 454409137343180800, + "id_str": "454409137343180800", + "text": "@captcarl13 o/ I assure you I am not", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454355673162461185, + "in_reply_to_status_id_str": "454355673162461185", + "in_reply_to_user_id": 25856211, + "in_reply_to_user_id_str": "25856211", + "in_reply_to_screen_name": "captcarl13", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 11 00:00:56 +0000 2014", + "id": 454408722056757248, + "id_str": "454408722056757248", + "text": "@FiloSottile how are you staying online?!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454351457450733569, + "in_reply_to_status_id_str": "454351457450733569", + "in_reply_to_user_id": 51049452, + "in_reply_to_user_id_str": "51049452", + "in_reply_to_screen_name": "FiloSottile", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 23:55:22 +0000 2014", + "id": 454407321247313920, + "id_str": "454407321247313920", + "text": "@m1sp @zhuowei literally fell over laughing", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454406965519585280, + "in_reply_to_status_id_str": "454406965519585280", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 23:52:29 +0000 2014", + "id": 454406595804659712, + "id_str": "454406595804659712", + "text": "@zhuowei @m1sp — the respawns apparently align to the nearest holy place (ie cool place)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454405920181583872, + "in_reply_to_status_id_str": "454405920181583872", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 23:51:33 +0000 2014", + "id": 454406361355653120, + "id_str": "454406361355653120", + "text": "@zhuowei @m1sp strictly speaking Tsovinar’s exact first place of death was the gate at the northeast end of Crescent Street but —", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454405920181583872, + "in_reply_to_status_id_str": "454405920181583872", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 23:50:09 +0000 2014", + "id": 454406008375619584, + "id_str": "454406008375619584", + "text": "@m1sp @zhuowei … I’m pretty sure he didn’t know.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454405559387578368, + "in_reply_to_status_id_str": "454405559387578368", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 23:48:48 +0000 2014", + "id": 454405670071439360, + "id_str": "454405670071439360", + "text": "@tangenteroja everything *was* exposed. I was using it as an example. They did patch eventually.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454405431440310272, + "in_reply_to_status_id_str": "454405431440310272", + "in_reply_to_user_id": 262371761, + "in_reply_to_user_id_str": "262371761", + "in_reply_to_screen_name": "tangenteroja", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 23:48:11 +0000 2014", + "id": 454405514257235968, + "id_str": "454405514257235968", + "text": "@m1sp @zhuowei :3", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454405058700902400, + "in_reply_to_status_id_str": "454405058700902400", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Thu Apr 10 23:47:04 +0000 2014", + "id": 454405233591189504, + "id_str": "454405233591189504", + "text": "Perfectly square region of US wiped off the earth by tragic data entry error at @NWSBoston http://t.co/XukIGzp6c7 (screenie by @josh__wood)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 10, + "favorite_count": 12, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 23:43:10 +0000 2014", + "id": 454404252702900224, + "id_str": "454404252702900224", + "text": "@tangenteroja @Viss “were” as in past tense and please do not call me dear", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454403741605961728, + "in_reply_to_status_id_str": "454403741605961728", + "in_reply_to_user_id": 262371761, + "in_reply_to_user_id_str": "262371761", + "in_reply_to_screen_name": "tangenteroja", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 23:42:25 +0000 2014", + "id": 454404060599554048, + "id_str": "454404060599554048", + "text": "@m1sp @zhuowei her respawn point is in the ruins of the town where she was born. \n\nI need to figure out what respawns are called in-world", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454403111432355840, + "in_reply_to_status_id_str": "454403111432355840", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 23:39:39 +0000 2014", + "id": 454403367134314496, + "id_str": "454403367134314496", + "text": "RT @puellavulnerata: http://t.co/jL384cVY9u Revised draft of #heartbleed probe tool which can get a full 64k of heap - thanks to observatio…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Thu Apr 10 22:11:07 +0000 2014", + "id": 454381083711131649, + "id_str": "454381083711131649", + "text": "http://t.co/jL384cVY9u Revised draft of #heartbleed probe tool which can get a full 64k of heap - thanks to observations of @ReleasePreview", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 54666727, + "id_str": "54666727" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 36, + "favorite_count": 38, + "entities": { + "hashtags": [ + { + "text": "heartbleed", + "indices": [ + 40, + 51 + ] + } + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/jL384cVY9u", + "expanded_url": "http://pastebay.net/1422064", + "display_url": "pastebay.net/1422064", + "indices": [ + 0, + 22 + ] + } + ], + "user_mentions": [ + { + "screen_name": "ReleasePreview", + "name": "Alexander Fischer", + "id": 631375730, + "id_str": "631375730", + "indices": [ + 124, + 139 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 36, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 23:36:26 +0000 2014", + "id": 454402555968499712, + "id_str": "454402555968499712", + "text": "@m1sp @zhuowei it’s a *temple* \n\nOr was", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454402021831880704, + "in_reply_to_status_id_str": "454402021831880704", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 23:32:45 +0000 2014", + "id": 454401627508989953, + "id_str": "454401627508989953", + "text": "@Kufat @FakeUnicode @mralext20 @zhuowei @m1sp they’re in Super Smash Bros. You’re so uncultured!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454400813725937664, + "in_reply_to_status_id_str": "454400813725937664", + "in_reply_to_user_id": 207691003, + "in_reply_to_user_id_str": "207691003", + "in_reply_to_screen_name": "Kufat", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 23:32:02 +0000 2014", + "id": 454401448533839872, + "id_str": "454401448533839872", + "text": "@zhuowei @m1sp the star of truth? Currently no one at all. Well, it is hanging out with Clarion", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454400904771670016, + "in_reply_to_status_id_str": "454400904771670016", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 23:27:29 +0000 2014", + "id": 454400304751329280, + "id_str": "454400304751329280", + "text": "@weems certificate revocation is an awful terrible mess and all there is for it is to connect over SSL with checking revokes turned on", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454399981018173440, + "in_reply_to_status_id_str": "454399981018173440", + "in_reply_to_user_id": 367693, + "in_reply_to_user_id_str": "367693", + "in_reply_to_screen_name": "weems", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 23:25:24 +0000 2014", + "id": 454399781264441344, + "id_str": "454399781264441344", + "text": ".@ternus you’d need a server which lets the client negotiate above the default 2^14 and I doubt there are many", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454341601536786432, + "in_reply_to_status_id_str": "454341601536786432", + "in_reply_to_user_id": 3170281, + "in_reply_to_user_id_str": "3170281", + "in_reply_to_screen_name": "ternus", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 23:24:50 +0000 2014", + "id": 454399634807721984, + "id_str": "454399634807721984", + "text": "RT @ternus: If you have or know of a Heartbleed implementation that dumps 64KB (as opposed to 16KB) of memory at once, please get in touch …", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Thu Apr 10 19:34:13 +0000 2014", + "id": 454341601536786432, + "id_str": "454341601536786432", + "text": "If you have or know of a Heartbleed implementation that dumps 64KB (as opposed to 16KB) of memory at once, please get in touch with me.", + "source": "Tweetbot for Mac", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 3170281, + "id_str": "3170281" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 5, + "favorite_count": 3, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 5, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 23:14:35 +0000 2014", + "id": 454397058632650752, + "id_str": "454397058632650752", + "text": "RT @FakeUnicode: .@mralext20 @0xabad1dea @zhuowei @m1sp \n🎊 Unicode Character 'PAC-MAN PUKING UP GHOST GUTS THE NEXT MORNING' (U+1F38A) http…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Thu Apr 10 23:14:18 +0000 2014", + "id": 454396984858669056, + "id_str": "454396984858669056", + "text": ".@mralext20 @0xabad1dea @zhuowei @m1sp \n🎊 Unicode Character 'PAC-MAN PUKING UP GHOST GUTS THE NEXT MORNING' (U+1F38A) http://t.co/6E9oB1Bpyc", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 454396687880974336, + "in_reply_to_status_id_str": "454396687880974336", + "in_reply_to_user_id": 905041434, + "in_reply_to_user_id_str": "905041434", + "in_reply_to_screen_name": "mralext20", + "user": { + "id": 2183231114, + "id_str": "2183231114" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 23, + "favorite_count": 21, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "mralext20", + "name": "Alexander", + "id": 905041434, + "id_str": "905041434", + "indices": [ + 1, + 11 + ] + }, + { + "screen_name": "0xabad1dea", + "name": "MeliSSL ", + "id": 126030998, + "id_str": "126030998", + "indices": [ + 12, + 23 + ] + }, + { + "screen_name": "zhuowei", + "name": "Zhuowei Zhang", + "id": 383083538, + "id_str": "383083538", + "indices": [ + 24, + 32 + ] + }, + { + "screen_name": "m1sp", + "name": "Mispy", + "id": 1007638597, + "id_str": "1007638597", + "indices": [ + 33, + 38 + ] + } + ], + "media": [ + { + "id": 454396984862863361, + "id_str": "454396984862863361", + "indices": [ + 118, + 140 + ], + "media_url": "http://pbs.twimg.com/media/Bk5XpnXCcAExcIB.png", + "media_url_https": "https://pbs.twimg.com/media/Bk5XpnXCcAExcIB.png", + "url": "http://t.co/6E9oB1Bpyc", + "display_url": "pic.twitter.com/6E9oB1Bpyc", + "expanded_url": "http://twitter.com/FakeUnicode/status/454396984858669056/photo/1", + "type": "photo", + "sizes": { + "small": { + "w": 289, + "h": 104, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 104, + "resize": "crop" + }, + "medium": { + "w": 289, + "h": 104, + "resize": "fit" + }, + "large": { + "w": 289, + "h": 104, + "resize": "fit" + } + } + } + ] + }, + "favorited": false, + "retweeted": true, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 23, + "favorite_count": 0, + "favorited": false, + "retweeted": true, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 23:12:10 +0000 2014", + "id": 454396451175821312, + "id_str": "454396451175821312", + "text": "@c7five absolutely… yahoo was leaking user/pass posts…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454335178442547202, + "in_reply_to_status_id_str": "454335178442547202", + "in_reply_to_user_id": 32495046, + "in_reply_to_user_id_str": "32495046", + "in_reply_to_screen_name": "c7five", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 23:10:44 +0000 2014", + "id": 454396089727455232, + "id_str": "454396089727455232", + "text": "@Viss only if you’re after one user in particular. If you were just looking for any account, just keep hammering yahoo and you’d get some", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454334054012162048, + "in_reply_to_status_id_str": "454334054012162048", + "in_reply_to_user_id": 2269701, + "in_reply_to_user_id_str": "2269701", + "in_reply_to_screen_name": "Viss", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 23:09:55 +0000 2014", + "id": 454395883157983232, + "id_str": "454395883157983232", + "text": "@zhuowei @m1sp @FakeUnicode 🎊 party ball. http://t.co/KL6ePhaz15", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454395634838405120, + "in_reply_to_status_id_str": "454395634838405120", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 23:06:40 +0000 2014", + "id": 454395066136928257, + "id_str": "454395066136928257", + "text": "@zhuowei @m1sp … it’s a party ball", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 23:05:01 +0000 2014", + "id": 454394649831280640, + "id_str": "454394649831280640", + "text": "@zhuowei @m1sp 🎊", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454394164852305920, + "in_reply_to_status_id_str": "454394164852305920", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Thu Apr 10 23:02:58 +0000 2014", + "id": 454394132799455232, + "id_str": "454394132799455232", + "text": "RT @TakoArishi: I forsee @0xabad1dea wearing the \"MeliSSL\" twitter name many more times for various reasons in the future.\n\nit's been twice…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Thu Apr 10 23:02:30 +0000 2014", + "id": 454394017451892736, + "id_str": "454394017451892736", + "text": "I forsee @0xabad1dea wearing the \"MeliSSL\" twitter name many more times for various reasons in the future.\n\nit's been twice, right?", + "source": "TweetDeck", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 22107482, + "id_str": "22107482" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 4, + "favorite_count": 5, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "0xabad1dea", + "name": "MeliSSL", + "id": 126030998, + "id_str": "126030998", + "indices": [ + 9, + 20 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 4, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 23:00:57 +0000 2014", + "id": 454393628434374657, + "id_str": "454393628434374657", + "text": "@zhuowei @m1sp yes. \n\nNot that Evren has any idea how that works.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454393476550262784, + "in_reply_to_status_id_str": "454393476550262784", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 22:50:03 +0000 2014", + "id": 454390884944338945, + "id_str": "454390884944338945", + "text": "RT @41414141: CiscOMFG jealous of #heartbleed, releases ASA SSL VPN authentication bypass to catch up:\nhttp://t.co/L6Wt18fN56", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Thu Apr 10 16:36:42 +0000 2014", + "id": 454296926411042816, + "id_str": "454296926411042816", + "text": "CiscOMFG jealous of #heartbleed, releases ASA SSL VPN authentication bypass to catch up:\nhttp://t.co/L6Wt18fN56", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 18934277, + "id_str": "18934277" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 107, + "favorite_count": 44, + "entities": { + "hashtags": [ + { + "text": "heartbleed", + "indices": [ + 20, + 31 + ] + } + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/L6Wt18fN56", + "expanded_url": "http://tools.cisco.com/security/center/content/CiscoSecurityAdvisory/cisco-sa-20140409-asa#details", + "display_url": "tools.cisco.com/security/cente…", + "indices": [ + 89, + 111 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 107, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 22:46:20 +0000 2014", + "id": 454389949811687424, + "id_str": "454389949811687424", + "text": "@gsuberland I think Americans are by and large unaware that the rest of the world considers her and her friends warmongers", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454320567374860288, + "in_reply_to_status_id_str": "454320567374860288", + "in_reply_to_user_id": 432513392, + "in_reply_to_user_id_str": "432513392", + "in_reply_to_screen_name": "gsuberland", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 22:37:38 +0000 2014", + "id": 454387757755138048, + "id_str": "454387757755138048", + "text": "@m1sp and then he dies 💀", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454386093656244224, + "in_reply_to_status_id_str": "454386093656244224", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 22:35:54 +0000 2014", + "id": 454387323426574336, + "id_str": "454387323426574336", + "text": "@Xaosopher I’ve heard they have a good reputation", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454364669730254848, + "in_reply_to_status_id_str": "454364669730254848", + "in_reply_to_user_id": 68878049, + "in_reply_to_user_id_str": "68878049", + "in_reply_to_screen_name": "Xaosopher", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 20:57:25 +0000 2014", + "id": 454362540206989312, + "id_str": "454362540206989312", + "text": "Home. For good. Forever. You can't make me leave", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 8, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 20:28:02 +0000 2014", + "id": 454355143409274880, + "id_str": "454355143409274880", + "text": "@TSWAlliance 🙋", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 454345998425657344, + "in_reply_to_status_id_str": "454345998425657344", + "in_reply_to_user_id": 1489271886, + "in_reply_to_user_id_str": "1489271886", + "in_reply_to_screen_name": "TSWAlliance", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Thu Apr 10 19:37:24 +0000 2014", + "id": 454342403525447680, + "id_str": "454342403525447680", + "text": "Sudden surge of people who look nerdy but aren't here for Source? I guess the Pax East hotel sold out...", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 19:34:28 +0000 2014", + "id": 454341664845598721, + "id_str": "454341664845598721", + "text": "We need to coordinate internet-ending bugs with the start of infosec conferences more often. Really lends a strong theme.", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 5, + "favorite_count": 9, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 19:32:42 +0000 2014", + "id": 454341217879597056, + "id_str": "454341217879597056", + "text": "Goodbye #srcbos I am in the war zone once known as the lobby waiting for my ride to Peace and Quiet Town", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 17:36:16 +0000 2014", + "id": 454311915410690049, + "id_str": "454311915410690049", + "text": "\"I am the cavalry\"\n\nRaise your hand if you actually know how to ride a horse 🙋 not so good with the sword thing though. Infosec is hard", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 5, + "favorite_count": 8, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 17:22:20 +0000 2014", + "id": 454308411765964802, + "id_str": "454308411765964802", + "text": "@christophernies yes actually", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 454308127211794432, + "in_reply_to_status_id_str": "454308127211794432", + "in_reply_to_user_id": 71343, + "in_reply_to_user_id_str": "71343", + "in_reply_to_screen_name": "christophernies", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 17:16:02 +0000 2014", + "id": 454306826218405888, + "id_str": "454306826218405888", + "text": "@jesster_king when they go to Snorlax size they’re okay… which makes me feel like a Snorlax.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454306662468186112, + "in_reply_to_status_id_str": "454306662468186112", + "in_reply_to_user_id": 46763517, + "in_reply_to_user_id_str": "46763517", + "in_reply_to_screen_name": "jesster_king", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 17:09:09 +0000 2014", + "id": 454305091944992769, + "id_str": "454305091944992769", + "text": "@MarquisO @zacharystern @bcrypt utterly mundane scanners of all sorts. We already had to throw out one report as just Errata being Errata", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454304855641698304, + "in_reply_to_status_id_str": "454304855641698304", + "in_reply_to_user_id": 154090035, + "in_reply_to_user_id_str": "154090035", + "in_reply_to_screen_name": "MarquisO", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 17:03:32 +0000 2014", + "id": 454303681505427456, + "id_str": "454303681505427456", + "text": "@andreasdotorg I want a tactical corset", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454302528189243393, + "in_reply_to_status_id_str": "454302528189243393", + "in_reply_to_user_id": 14285735, + "in_reply_to_user_id_str": "14285735", + "in_reply_to_screen_name": "andreasdotorg", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 17:03:02 +0000 2014", + "id": 454303552635424768, + "id_str": "454303552635424768", + "text": "@zorm 😐🔇", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454302523181268992, + "in_reply_to_status_id_str": "454302523181268992", + "in_reply_to_user_id": 17954340, + "in_reply_to_user_id_str": "17954340", + "in_reply_to_screen_name": "zorm", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Thu Apr 10 16:57:49 +0000 2014", + "id": 454302239751172097, + "id_str": "454302239751172097", + "text": "Come to infosec cons! We got branded camera cover freebies!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 6, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 16:49:25 +0000 2014", + "id": 454300126023286784, + "id_str": "454300126023286784", + "text": "@nelhage seems to work in iMessage. Their problem is consistent view across multiple devices…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454299862687703040, + "in_reply_to_status_id_str": "454299862687703040", + "in_reply_to_user_id": 11806222, + "in_reply_to_user_id_str": "11806222", + "in_reply_to_screen_name": "nelhage", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 16:48:36 +0000 2014", + "id": 454299923841044482, + "id_str": "454299923841044482", + "text": "@vogon burning subconscious desire for document object models?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454299144748670976, + "in_reply_to_status_id_str": "454299144748670976", + "in_reply_to_user_id": 6326912, + "in_reply_to_user_id_str": "6326912", + "in_reply_to_screen_name": "vogon", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 16:47:36 +0000 2014", + "id": 454299670458953728, + "id_str": "454299670458953728", + "text": "@gregbarbosa @leahculver not bad!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454299453110116352, + "in_reply_to_status_id_str": "454299453110116352", + "in_reply_to_user_id": 15545124, + "in_reply_to_user_id_str": "15545124", + "in_reply_to_screen_name": "gregbarbosa", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 16:41:40 +0000 2014", + "id": 454298175260852224, + "id_str": "454298175260852224", + "text": "“I use ugly fonts because I’m all about content, not presentation!” —> “LOL you can’t read my content and I take that as a point of pride”", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 5, + "favorite_count": 8, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 16:36:01 +0000 2014", + "id": 454296756650770434, + "id_str": "454296756650770434", + "text": "@sciencecomic wicked!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454296217145851904, + "in_reply_to_status_id_str": "454296217145851904", + "in_reply_to_user_id": 222302211, + "in_reply_to_user_id_str": "222302211", + "in_reply_to_screen_name": "sciencecomic", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 16:23:19 +0000 2014", + "id": 454293558577876992, + "id_str": "454293558577876992", + "text": "I need to go speed run Pokemon Blue. For science. I swear.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 4, + "favorite_count": 6, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 16:21:01 +0000 2014", + "id": 454292981139636224, + "id_str": "454292981139636224", + "text": "@savagejen there was another article who named who the reviewer was… a Dr. Someone", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454292683289161728, + "in_reply_to_status_id_str": "454292683289161728", + "in_reply_to_user_id": 11324652, + "in_reply_to_user_id_str": "11324652", + "in_reply_to_screen_name": "savagejen", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 16:13:46 +0000 2014", + "id": 454291154482515969, + "id_str": "454291154482515969", + "text": "RT @zygen: It’s worrying that all banks are like “don’t worry, we weren’t affected! *cough* our code is much too old *cough*”", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Thu Apr 10 15:43:29 +0000 2014", + "id": 454283533473689600, + "id_str": "454283533473689600", + "text": "It’s worrying that all banks are like “don’t worry, we weren’t affected! *cough* our code is much too old *cough*”", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 12843182, + "id_str": "12843182" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 64, + "favorite_count": 28, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 64, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 16:10:24 +0000 2014", + "id": 454290310223646720, + "id_str": "454290310223646720", + "text": "@samuelpepys well what else would you put on church doors…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454276679566110720, + "in_reply_to_status_id_str": "454276679566110720", + "in_reply_to_user_id": 14475268, + "in_reply_to_user_id_str": "14475268", + "in_reply_to_screen_name": "samuelpepys", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 16:09:45 +0000 2014", + "id": 454290146620604416, + "id_str": "454290146620604416", + "text": "@wimremes if you have to ask I recommend m / f / other / decline. I appreciate that you stopped to think about the complicatedness at all.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454275728264417281, + "in_reply_to_status_id_str": "454275728264417281", + "in_reply_to_user_id": 14932408, + "in_reply_to_user_id_str": "14932408", + "in_reply_to_screen_name": "wimremes", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 16:08:39 +0000 2014", + "id": 454289869897224192, + "id_str": "454289869897224192", + "text": "@nselby @wimremes oh. Trust me. Unless you are researching something strictly medical, always ask gender instead of sex.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454276424552448003, + "in_reply_to_status_id_str": "454276424552448003", + "in_reply_to_user_id": 14409894, + "in_reply_to_user_id_str": "14409894", + "in_reply_to_screen_name": "nselby", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 16:03:18 +0000 2014", + "id": 454288522871328768, + "id_str": "454288522871328768", + "text": "RT @Kufat: Which version of OpenSSL did we ship with this? And that? And this other thing?\n...Sigh.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Thu Apr 10 14:53:47 +0000 2014", + "id": 454271029071077376, + "id_str": "454271029071077376", + "text": "Which version of OpenSSL did we ship with this? And that? And this other thing?\n...Sigh.", + "source": "MetroTwit", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 207691003, + "id_str": "207691003" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 11, + "favorite_count": 3, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 11, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 15:59:30 +0000 2014", + "id": 454287566586802176, + "id_str": "454287566586802176", + "text": "@ra6bit are you here today ?", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 537333195, + "in_reply_to_user_id_str": "537333195", + "in_reply_to_screen_name": "ra6bit", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 15:37:50 +0000 2014", + "id": 454282113953849344, + "id_str": "454282113953849344", + "text": "@MarquisO @zacharystern @bcrypt that'd be way too uselessly false positivey anyway", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 454281914841448449, + "in_reply_to_status_id_str": "454281914841448449", + "in_reply_to_user_id": 154090035, + "in_reply_to_user_id_str": "154090035", + "in_reply_to_screen_name": "MarquisO", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 15:31:27 +0000 2014", + "id": 454280507250212864, + "id_str": "454280507250212864", + "text": "RT @bcrypt: @0xabad1dea @zacharystern aaaand I've just learned that it's more like \"18 03 (03 | 02 | 01) 00 03 01\"", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Thu Apr 10 15:30:33 +0000 2014", + "id": 454280279868186625, + "id_str": "454280279868186625", + "text": "@0xabad1dea @zacharystern aaaand I've just learned that it's more like \"18 03 (03 | 02 | 01) 00 03 01\"", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 454261829351378945, + "in_reply_to_status_id_str": "454261829351378945", + "in_reply_to_user_id": 968881477, + "in_reply_to_user_id_str": "968881477", + "in_reply_to_screen_name": "bcrypt", + "user": { + "id": 968881477, + "id_str": "968881477" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 5, + "favorite_count": 7, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "0xabad1dea", + "name": "Melissa", + "id": 126030998, + "id_str": "126030998", + "indices": [ + 0, + 11 + ] + }, + { + "screen_name": "zacharystern", + "name": "Zachary Alex Stern", + "id": 8191652, + "id_str": "8191652", + "indices": [ + 12, + 25 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 5, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 15:31:20 +0000 2014", + "id": 454280475369279488, + "id_str": "454280475369279488", + "text": "I might have gotten my cool Defcon CFP idea last minute at Source second year in a row. Hope they agree it's cool.", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 15:04:19 +0000 2014", + "id": 454273676071165952, + "id_str": "454273676071165952", + "text": "@dipidoo it's not a bug, they're valid phone numbers by some country's standard", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 454273257865101313, + "in_reply_to_status_id_str": "454273257865101313", + "in_reply_to_user_id": 7871862, + "in_reply_to_user_id_str": "7871862", + "in_reply_to_screen_name": "dipidoo", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 15:03:46 +0000 2014", + "id": 454273538346991616, + "id_str": "454273538346991616", + "text": "I want a woman's tee with just the heartbleed logo on it. Does anyone who's donating profits already have this?", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 5, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 14:59:44 +0000 2014", + "id": 454272525934268416, + "id_str": "454272525934268416", + "text": "@thijs ... You expect everyone in the world to add this to everything that could maybe possibly have arbitrary numbers in it?", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 454270309085216768, + "in_reply_to_status_id_str": "454270309085216768", + "in_reply_to_user_id": 797975, + "in_reply_to_user_id_str": "797975", + "in_reply_to_screen_name": "thijs", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 14:47:49 +0000 2014", + "id": 454269525052375041, + "id_str": "454269525052375041", + "text": "@Dirk_Gently it’s for “teletype” and it predates CSS etc.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454268798980620288, + "in_reply_to_status_id_str": "454268798980620288", + "in_reply_to_user_id": 15886726, + "in_reply_to_user_id_str": "15886726", + "in_reply_to_screen_name": "Dirk_Gently", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 14:44:04 +0000 2014", + "id": 454268581375922176, + "id_str": "454268581375922176", + "text": "@Dirk_Gently it could just be that using <tt> instead of <code> is still more common than I thought", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454268360424165376, + "in_reply_to_status_id_str": "454268360424165376", + "in_reply_to_user_id": 15886726, + "in_reply_to_user_id_str": "15886726", + "in_reply_to_screen_name": "Dirk_Gently", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 14:39:23 +0000 2014", + "id": 454267401811795968, + "id_str": "454267401811795968", + "text": "@rantyben @_wirepair DANGIT ISAAC", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454267167177859072, + "in_reply_to_status_id_str": "454267167177859072", + "in_reply_to_user_id": 977910404, + "in_reply_to_user_id_str": "977910404", + "in_reply_to_screen_name": "rantyben", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "tl" + }, + { + "created_at": "Thu Apr 10 14:38:44 +0000 2014", + "id": 454267241610379264, + "id_str": "454267241610379264", + "text": "@Dirk_Gently I’m not convinced iOS knows to skip <code> for this", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454267069631332352, + "in_reply_to_status_id_str": "454267069631332352", + "in_reply_to_user_id": 15886726, + "in_reply_to_user_id_str": "15886726", + "in_reply_to_screen_name": "Dirk_Gently", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 14:35:06 +0000 2014", + "id": 454266327084318720, + "id_str": "454266327084318720", + "text": "Hey #srcbos who wants to go do some wicked wardriving https://t.co/iEFniuF9wk 😈", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 14:33:23 +0000 2014", + "id": 454265892109815808, + "id_str": "454265892109815808", + "text": "iOS likes to regex things that look like phone numbers in webpages and hyperlink them. Hex dumps are the pathological corner case", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 5, + "favorite_count": 12, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 14:31:19 +0000 2014", + "id": 454265371382784000, + "id_str": "454265371382784000", + "text": ".@ITSecurity @chriseng yeah basically. *sips mocha*", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454244438454591489, + "in_reply_to_status_id_str": "454244438454591489", + "in_reply_to_user_id": 21197221, + "in_reply_to_user_id_str": "21197221", + "in_reply_to_screen_name": "ITSecurity", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 14:31:01 +0000 2014", + "id": 454265298720681985, + "id_str": "454265298720681985", + "text": "RT @ITSecurity: (cont.) \nGuest: So you guys are all here to talk about heartbleed? \n#srcbos", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Thu Apr 10 13:08:08 +0000 2014", + "id": 454244438454591489, + "id_str": "454244438454591489", + "text": "(cont.) \nGuest: So you guys are all here to talk about heartbleed? \n#srcbos", + "source": "Maske Tweet", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 21197221, + "id_str": "21197221" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 5, + "favorite_count": 8, + "entities": { + "hashtags": [ + { + "text": "srcbos", + "indices": [ + 68, + 75 + ] + } + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 5, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 14:30:58 +0000 2014", + "id": 454265285068214272, + "id_str": "454265285068214272", + "text": "RT @ITSecurity: In elevator at #srcbos\nGuest: What's SOURCE Boston? \nMe: It's a security conference. \nGuest: Cyber Security? \nMe: ...yes\n(c…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Thu Apr 10 13:07:17 +0000 2014", + "id": 454244227594354689, + "id_str": "454244227594354689", + "text": "In elevator at #srcbos\nGuest: What's SOURCE Boston? \nMe: It's a security conference. \nGuest: Cyber Security? \nMe: ...yes\n(cont.)", + "source": "Maske Tweet", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 21197221, + "id_str": "21197221" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 6, + "favorite_count": 6, + "entities": { + "hashtags": [ + { + "text": "srcbos", + "indices": [ + 15, + 22 + ] + } + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 6, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 14:17:27 +0000 2014", + "id": 454261881721860096, + "id_str": "454261881721860096", + "text": "RT @bcrypt: @0xabad1dea @zacharystern if you know anyone who does, they should be looking for \"18 03 (02 | 01) 00 03 01\" in them right now.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Thu Apr 10 14:17:14 +0000 2014", + "id": 454261829351378945, + "id_str": "454261829351378945", + "text": "@0xabad1dea @zacharystern if you know anyone who does, they should be looking for \"18 03 (02 | 01) 00 03 01\" in them right now.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 454261249661218816, + "in_reply_to_status_id_str": "454261249661218816", + "in_reply_to_user_id": 126030998, + "in_reply_to_user_id_str": "126030998", + "in_reply_to_screen_name": "0xabad1dea", + "user": { + "id": 968881477, + "id_str": "968881477" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 6, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "0xabad1dea", + "name": "MeliSSL ", + "id": 126030998, + "id_str": "126030998", + "indices": [ + 0, + 11 + ] + }, + { + "screen_name": "zacharystern", + "name": "Zachary Alex Stern", + "id": 8191652, + "id_str": "8191652", + "indices": [ + 12, + 25 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 2, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 14:14:56 +0000 2014", + "id": 454261249661218816, + "id_str": "454261249661218816", + "text": "@zacharystern @bcrypt this is the only way to retroactively detect it, yes, so there are not a lot of people out there able to do this", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 8191652, + "in_reply_to_user_id_str": "8191652", + "in_reply_to_screen_name": "zacharystern", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 14:12:20 +0000 2014", + "id": 454260597925089280, + "id_str": "454260597925089280", + "text": ".@jamesbroadhead won’t someone think of the children ?!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454260447106314240, + "in_reply_to_status_id_str": "454260447106314240", + "in_reply_to_user_id": 50653645, + "in_reply_to_user_id_str": "50653645", + "in_reply_to_screen_name": "jamesbroadhead", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 14:11:56 +0000 2014", + "id": 454260495378579456, + "id_str": "454260495378579456", + "text": "RT @jamesbroadhead: @0xabad1dea are you saying that disclosing heartbleed takes that money out of the hands of starving orphans since they …", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Thu Apr 10 14:11:45 +0000 2014", + "id": 454260447106314240, + "id_str": "454260447106314240", + "text": "@0xabad1dea are you saying that disclosing heartbleed takes that money out of the hands of starving orphans since they need a new backdoor?", + "source": "TweetDeck", + "truncated": false, + "in_reply_to_status_id": 454258741106728961, + "in_reply_to_status_id_str": "454258741106728961", + "in_reply_to_user_id": 126030998, + "in_reply_to_user_id_str": "126030998", + "in_reply_to_screen_name": "0xabad1dea", + "user": { + "id": 50653645, + "id_str": "50653645" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 3, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "0xabad1dea", + "name": "MeliSSL", + "id": 126030998, + "id_str": "126030998", + "indices": [ + 0, + 11 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 1, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 14:11:11 +0000 2014", + "id": 454260306202882048, + "id_str": "454260306202882048", + "text": "@McGrewSecurity this is a small enough and professional enough conference to ostracize for breach of trust as appropriate", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454259939939463168, + "in_reply_to_status_id_str": "454259939939463168", + "in_reply_to_user_id": 13275122, + "in_reply_to_user_id_str": "13275122", + "in_reply_to_screen_name": "McGrewSecurity", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 14:04:58 +0000 2014", + "id": 454258741106728961, + "id_str": "454258741106728961", + "text": "I’m coming to the conclusion the other $240 million of the crypto subterfuge budget was donated to charity because it wasn’t needed.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 42, + "favorite_count": 33, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 14:03:43 +0000 2014", + "id": 454258425565020160, + "id_str": "454258425565020160", + "text": "lol I love a good conspiracy but [citation freakin’ needed]\n\n(Assertion is the blogger’s, not Assange’s) http://t.co/H10a33Q4TQ", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 4, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 13:58:15 +0000 2014", + "id": 454257050139500544, + "id_str": "454257050139500544", + "text": "@m1sp did you make this just for when someone asks if you’re fabulous?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454255504902987776, + "in_reply_to_status_id_str": "454255504902987776", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 13:54:50 +0000 2014", + "id": 454256192790233088, + "id_str": "454256192790233088", + "text": "So one of the leads for a pre-public heartbleed scan was just @ErrataRob screwing with infrastructure as usual. Now about those others…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 13:53:44 +0000 2014", + "id": 454255913357279233, + "id_str": "454255913357279233", + "text": "RT @bcrypt: logs show heartbleed attack in 2013 from IPs associated w/ IRC spybots lurking in freenode. likely intel agencies? https://t.co…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Thu Apr 10 13:29:43 +0000 2014", + "id": 454249872548302848, + "id_str": "454249872548302848", + "text": "logs show heartbleed attack in 2013 from IPs associated w/ IRC spybots lurking in freenode. likely intel agencies? https://t.co/Vzz83Vxbb8", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 968881477, + "id_str": "968881477" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 156, + "favorite_count": 55, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "https://t.co/Vzz83Vxbb8", + "expanded_url": "https://eff.org/r.vcli", + "display_url": "eff.org/r.vcli", + "indices": [ + 115, + 138 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 156, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 13:47:53 +0000 2014", + "id": 454254441538277376, + "id_str": "454254441538277376", + "text": "Assured @joshcorman I did in fact read all the source of the heartbleed tool before I ran it. Admittedly I’m not a python backdoor expert… 😨", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 13:44:56 +0000 2014", + "id": 454253701017124864, + "id_str": "454253701017124864", + "text": "RT @McGrewSecurity: TODO: heartbleed honeypot that returns a Commodore 64 memory dump", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Thu Apr 10 12:54:45 +0000 2014", + "id": 454241072768897024, + "id_str": "454241072768897024", + "text": "TODO: heartbleed honeypot that returns a Commodore 64 memory dump", + "source": "Twitter for Mac", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 13275122, + "id_str": "13275122" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 75, + "favorite_count": 43, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 75, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 13:35:02 +0000 2014", + "id": 454251210196131840, + "id_str": "454251210196131840", + "text": "Ho hum a fire *yawn* http://t.co/hV3AivwP90", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 16, + "favorite_count": 25, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 12:55:10 +0000 2014", + "id": 454241178289192960, + "id_str": "454241178289192960", + "text": "@swizzlr hopefully. They are currently lacking most of the first floor due to renovations", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 454239918601277440, + "in_reply_to_status_id_str": "454239918601277440", + "in_reply_to_user_id": 1468574148, + "in_reply_to_user_id_str": "1468574148", + "in_reply_to_screen_name": "swizzlr", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 12:48:54 +0000 2014", + "id": 454239599293116417, + "id_str": "454239599293116417", + "text": "@ra6bit there was speculation if that room still exists given the state of disarray on the first floor", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454239373933174785, + "in_reply_to_status_id_str": "454239373933174785", + "in_reply_to_user_id": 537333195, + "in_reply_to_user_id_str": "537333195", + "in_reply_to_screen_name": "ra6bit", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 12:46:30 +0000 2014", + "id": 454238994889707521, + "id_str": "454238994889707521", + "text": "Now to figure out where to stash my suitcase until DH rescues me from city hell… I am not good at hotel", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 12:35:39 +0000 2014", + "id": 454236266805329921, + "id_str": "454236266805329921", + "text": "@WeldPond gee boss where would I even find one of those :)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454236106566152192, + "in_reply_to_status_id_str": "454236106566152192", + "in_reply_to_user_id": 14090906, + "in_reply_to_user_id_str": "14090906", + "in_reply_to_screen_name": "WeldPond", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 12:33:46 +0000 2014", + "id": 454235789753606144, + "id_str": "454235789753606144", + "text": "@WeldPond legality aside, if you’re vuln, it’s almost impossible to detect being scanned and if you’re not, why bother pursuing the scanner?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454221640122253312, + "in_reply_to_status_id_str": "454221640122253312", + "in_reply_to_user_id": 14090906, + "in_reply_to_user_id_str": "14090906", + "in_reply_to_screen_name": "WeldPond", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 12:06:35 +0000 2014", + "id": 454228948424339456, + "id_str": "454228948424339456", + "text": "@pchengi it was a retweet — on the 8th or 9th", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454138528990248960, + "in_reply_to_status_id_str": "454138528990248960", + "in_reply_to_user_id": 22619802, + "in_reply_to_user_id_str": "22619802", + "in_reply_to_screen_name": "pchengi", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 04:31:11 +0000 2014", + "id": 454114346747301888, + "id_str": "454114346747301888", + "text": "@m1sp I think I am satisfied with her origin story now http://t.co/grcPiLI4Q0", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 04:11:47 +0000 2014", + "id": 454109464153825280, + "id_str": "454109464153825280", + "text": "I wrote out a word — with a pen, on paper — and hesitated, waiting to see if spellcheck highlighted it.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 25, + "favorite_count": 37, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 03:32:11 +0000 2014", + "id": 454099495073349633, + "id_str": "454099495073349633", + "text": "@Talen_Lee but you speak such good English", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454098156397932544, + "in_reply_to_status_id_str": "454098156397932544", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 03:31:02 +0000 2014", + "id": 454099207230877696, + "id_str": "454099207230877696", + "text": "@izdiwho https://t.co/ejH0GYgwRp", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454098423075962880, + "in_reply_to_status_id_str": "454098423075962880", + "in_reply_to_user_id": 2197697701, + "in_reply_to_user_id_str": "2197697701", + "in_reply_to_screen_name": "izdiwho", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Thu Apr 10 03:20:46 +0000 2014", + "id": 454096624797892608, + "id_str": "454096624797892608", + "text": "@DrPizza well that would make too much sense ⏰", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454095972604186624, + "in_reply_to_status_id_str": "454095972604186624", + "in_reply_to_user_id": 11375732, + "in_reply_to_user_id_str": "11375732", + "in_reply_to_screen_name": "DrPizza", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 03:06:55 +0000 2014", + "id": 454093138626617344, + "id_str": "454093138626617344", + "text": "@eevee I can honestly say I didn’t type a password into anything during the ~24 hours after it initially dropped so I’m like… 82% safe!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454091471348432896, + "in_reply_to_status_id_str": "454091471348432896", + "in_reply_to_user_id": 14412937, + "in_reply_to_user_id_str": "14412937", + "in_reply_to_screen_name": "eevee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 03:02:56 +0000 2014", + "id": 454092135403646977, + "id_str": "454092135403646977", + "text": "@SoberBuildEng @savagejen @jennapederson that timing is conspicuous enough to imply *something* unusual. Whether party time or deadline.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454090368296820736, + "in_reply_to_status_id_str": "454090368296820736", + "in_reply_to_user_id": 356447127, + "in_reply_to_user_id_str": "356447127", + "in_reply_to_screen_name": "SoberBuildEng", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 02:48:52 +0000 2014", + "id": 454088594588966915, + "id_str": "454088594588966915", + "text": ".@zhuowei I’m glad I’m apparently a good test case for selfie bots.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 5, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 02:48:16 +0000 2014", + "id": 454088446425178112, + "id_str": "454088446425178112", + "text": "RT @Eyescaler: @zhuowei http://t.co/fdU4cYgPAY", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Thu Apr 10 01:44:00 +0000 2014", + "id": 454072271276367872, + "id_str": "454072271276367872", + "text": "@zhuowei http://t.co/fdU4cYgPAY", + "source": "is_like_a", + "truncated": false, + "in_reply_to_status_id": 454072265341030400, + "in_reply_to_status_id_str": "454072265341030400", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 2436268172, + "id_str": "2436268172" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 7, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "zhuowei", + "name": "Zhuowei Zhang", + "id": 383083538, + "id_str": "383083538", + "indices": [ + 0, + 8 + ] + } + ], + "media": [ + { + "id": 454072271003721728, + "id_str": "454072271003721728", + "indices": [ + 9, + 31 + ], + "media_url": "http://pbs.twimg.com/media/Bk0wUx-IIAAAHdA.jpg", + "media_url_https": "https://pbs.twimg.com/media/Bk0wUx-IIAAAHdA.jpg", + "url": "http://t.co/fdU4cYgPAY", + "display_url": "pic.twitter.com/fdU4cYgPAY", + "expanded_url": "http://twitter.com/Eyescaler/status/454072271276367872/photo/1", + "type": "photo", + "sizes": { + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 453, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 800, + "resize": "fit" + }, + "large": { + "w": 768, + "h": 1024, + "resize": "fit" + } + } + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + "retweet_count": 3, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Thu Apr 10 02:47:48 +0000 2014", + "id": 454088327738978304, + "id_str": "454088327738978304", + "text": "RT @Eyescaler: Tweet a selfie at this bot: get back the picture with eyes enlarged. Created by @zhuowei. Source at https://t.co/QoObTqfM0o.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Thu Apr 10 01:51:59 +0000 2014", + "id": 454074279618158594, + "id_str": "454074279618158594", + "text": "Tweet a selfie at this bot: get back the picture with eyes enlarged. Created by @zhuowei. Source at https://t.co/QoObTqfM0o.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2436268172, + "id_str": "2436268172" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 20, + "favorite_count": 17, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "https://t.co/QoObTqfM0o", + "expanded_url": "https://github.com/zhuowei/is_like_a", + "display_url": "github.com/zhuowei/is_lik…", + "indices": [ + 100, + 123 + ] + } + ], + "user_mentions": [ + { + "screen_name": "zhuowei", + "name": "Zhuowei Zhang", + "id": 383083538, + "id_str": "383083538", + "indices": [ + 80, + 88 + ] + } + ] + }, + "favorited": false, + "retweeted": true, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 20, + "favorite_count": 0, + "favorited": false, + "retweeted": true, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 02:45:44 +0000 2014", + "id": 454087807020302337, + "id_str": "454087807020302337", + "text": "RT @DonAndrewBailey: Today, I uncovered similar bug(s) to the OpenSSL #HeartBleed issue in other SSL implementations. Blog post here: http:…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Thu Apr 10 01:34:20 +0000 2014", + "id": 454069840089579520, + "id_str": "454069840089579520", + "text": "Today, I uncovered similar bug(s) to the OpenSSL #HeartBleed issue in other SSL implementations. Blog post here: http://t.co/T40UqchtOv", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 69329410, + "id_str": "69329410" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 96, + "favorite_count": 52, + "entities": { + "hashtags": [ + { + "text": "HeartBleed", + "indices": [ + 49, + 60 + ] + } + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/T40UqchtOv", + "expanded_url": "http://b.capitolhillconsultants.com", + "display_url": "b.capitolhillconsultants.com", + "indices": [ + 113, + 135 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 96, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 02:45:33 +0000 2014", + "id": 454087761658916864, + "id_str": "454087761658916864", + "text": "@mralext20 @gewt @lojikil @m1sp http://t.co/TulNC6KLnW", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454085896409600000, + "in_reply_to_status_id_str": "454085896409600000", + "in_reply_to_user_id": 905041434, + "in_reply_to_user_id_str": "905041434", + "in_reply_to_screen_name": "mralext20", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Thu Apr 10 02:18:05 +0000 2014", + "id": 454080848833159168, + "id_str": "454080848833159168", + "text": "@m1sp plot thickens dot jpeg http://t.co/MEREg2xmEP", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 01:36:29 +0000 2014", + "id": 454070382145060864, + "id_str": "454070382145060864", + "text": "@m1sp Scarynar is post-Rodomond. In between comes the elusive Happynar", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 454069886600241152, + "in_reply_to_status_id_str": "454069886600241152", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 01:32:26 +0000 2014", + "id": 454069361813508097, + "id_str": "454069361813508097", + "text": "@m1sp http://t.co/EAXE9zgXDr", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Thu Apr 10 01:10:22 +0000 2014", + "id": 454063806927634432, + "id_str": "454063806927634432", + "text": "@WIRED could you please write headlines that don’t obviously follow the clickbait pattern? *please*?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454057945329057792, + "in_reply_to_status_id_str": "454057945329057792", + "in_reply_to_user_id": 1344951, + "in_reply_to_user_id_str": "1344951", + "in_reply_to_screen_name": "WIRED", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 00:58:36 +0000 2014", + "id": 454060847514796032, + "id_str": "454060847514796032", + "text": "@eevee insert smug note that my fonts, no matter how poor quality, shipped with many accented letters and the euro sign :p", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454060370580103169, + "in_reply_to_status_id_str": "454060370580103169", + "in_reply_to_user_id": 14412937, + "in_reply_to_user_id_str": "14412937", + "in_reply_to_screen_name": "eevee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 00:57:54 +0000 2014", + "id": 454060671454699520, + "id_str": "454060671454699520", + "text": "@eevee … why would you ship a font as a major art project thing without 100% ASCII coverage? It’s not a lot of glyphs", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454060370580103169, + "in_reply_to_status_id_str": "454060370580103169", + "in_reply_to_user_id": 14412937, + "in_reply_to_user_id_str": "14412937", + "in_reply_to_screen_name": "eevee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 00:54:01 +0000 2014", + "id": 454059692990664705, + "id_str": "454059692990664705", + "text": "I can literally feel my health points dropping for every hour that I’m away from home. It’s like traveling is, itself, a poison effect", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 5, + "favorite_count": 11, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 00:50:17 +0000 2014", + "id": 454058753055539200, + "id_str": "454058753055539200", + "text": "@Talen_Lee yes yes but it’s to make a POINT, see", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454058136492453891, + "in_reply_to_status_id_str": "454058136492453891", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 00:48:23 +0000 2014", + "id": 454058274858741761, + "id_str": "454058274858741761", + "text": "@Kufat @m1sp unfortunately I suspect there is literally nothing that can be done to avert V being debased long term :/", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454058066204712961, + "in_reply_to_status_id_str": "454058066204712961", + "in_reply_to_user_id": 207691003, + "in_reply_to_user_id_str": "207691003", + "in_reply_to_screen_name": "Kufat", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 00:47:07 +0000 2014", + "id": 454057955206656000, + "id_str": "454057955206656000", + "text": "@Talen_Lee >.> \n\nDepends on the character. For some of them, it’s a religion thing. For others… it’s a sex thing", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454057619796135936, + "in_reply_to_status_id_str": "454057619796135936", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 00:43:49 +0000 2014", + "id": 454057124268892161, + "id_str": "454057124268892161", + "text": "@m1sp @Kufat I don’t even know where to find any feels to deal with this particular turn of events", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454056774450937856, + "in_reply_to_status_id_str": "454056774450937856", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 00:43:03 +0000 2014", + "id": 454056932677275649, + "id_str": "454056932677275649", + "text": "@SpinnerPete_ ahh trust me you personally don’t have to worry about that one", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454056144521424896, + "in_reply_to_status_id_str": "454056144521424896", + "in_reply_to_user_id": 174205119, + "in_reply_to_user_id_str": "174205119", + "in_reply_to_screen_name": "SpinnerPete_", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 6, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 00:29:51 +0000 2014", + "id": 454053610272587776, + "id_str": "454053610272587776", + "text": "@numberless @Tomi_Tapio I would like to see the .jp version to see if it’s different. Wildly divergent .jp/.us branding was common", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453949319997947904, + "in_reply_to_status_id_str": "453949319997947904", + "in_reply_to_user_id": 2244541, + "in_reply_to_user_id_str": "2244541", + "in_reply_to_screen_name": "numberless", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 00:27:06 +0000 2014", + "id": 454052920049541120, + "id_str": "454052920049541120", + "text": "RT @sigfpe: Couldn't remember Mathematica function. to rotate vector. Guessed 'Rotate'. Here's result. http://t.co/BNHIkkF2vi", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Thu Apr 10 00:11:19 +0000 2014", + "id": 454048946059374592, + "id_str": "454048946059374592", + "text": "Couldn't remember Mathematica function. to rotate vector. Guessed 'Rotate'. Here's result. http://t.co/BNHIkkF2vi", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 16748247, + "id_str": "16748247" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 803, + "favorite_count": 543, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ], + "media": [ + { + "id": 454048946063568896, + "id_str": "454048946063568896", + "indices": [ + 91, + 113 + ], + "media_url": "http://pbs.twimg.com/media/Bk0bHFzCcAAPcSg.png", + "media_url_https": "https://pbs.twimg.com/media/Bk0bHFzCcAAPcSg.png", + "url": "http://t.co/BNHIkkF2vi", + "display_url": "pic.twitter.com/BNHIkkF2vi", + "expanded_url": "http://twitter.com/sigfpe/status/454048946059374592/photo/1", + "type": "photo", + "sizes": { + "small": { + "w": 216, + "h": 99, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 99, + "resize": "crop" + }, + "large": { + "w": 216, + "h": 99, + "resize": "fit" + }, + "medium": { + "w": 216, + "h": 99, + "resize": "fit" + } + } + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 803, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 00:09:46 +0000 2014", + "id": 454048558409588736, + "id_str": "454048558409588736", + "text": "@_am3thyst @eevee at the infosec con we were taking about relatives who mail us the very sorts of articles we were consulted on", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454024589899624448, + "in_reply_to_status_id_str": "454024589899624448", + "in_reply_to_user_id": 423275465, + "in_reply_to_user_id_str": "423275465", + "in_reply_to_screen_name": "_am3thyst", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 00:08:57 +0000 2014", + "id": 454048353001930752, + "id_str": "454048353001930752", + "text": "RT @_am3thyst: Aaaaand my mom just e-mailed me about the \"heartbleed virus.\" Yup. This bug's gone mainstream.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Wed Apr 09 22:34:32 +0000 2014", + "id": 454024589899624448, + "id_str": "454024589899624448", + "text": "Aaaaand my mom just e-mailed me about the \"heartbleed virus.\" Yup. This bug's gone mainstream.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 423275465, + "id_str": "423275465" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 32, + "favorite_count": 22, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 32, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 10 00:06:39 +0000 2014", + "id": 454047773227487232, + "id_str": "454047773227487232", + "text": "@Talen_Lee @m1sp sometimes it will reproduce a short phrase exactly", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454046565544386560, + "in_reply_to_status_id_str": "454046565544386560", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 09 23:55:59 +0000 2014", + "id": 454045090106056704, + "id_str": "454045090106056704", + "text": "@Packetknife … 💀", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454044696969740288, + "in_reply_to_status_id_str": "454044696969740288", + "in_reply_to_user_id": 19564254, + "in_reply_to_user_id_str": "19564254", + "in_reply_to_screen_name": "Packetknife", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Wed Apr 09 23:49:00 +0000 2014", + "id": 454043329546969088, + "id_str": "454043329546969088", + "text": "RT @OxbloodRuffin: Why is Speed at #Sea Measured in Knots? https://t.co/WgZBQtsMlk #Science", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Wed Apr 09 23:46:37 +0000 2014", + "id": 454042729530404864, + "id_str": "454042729530404864", + "text": "Why is Speed at #Sea Measured in Knots? https://t.co/WgZBQtsMlk #Science", + "source": "Tweet Button", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 10027222, + "id_str": "10027222" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 8, + "favorite_count": 6, + "entities": { + "hashtags": [ + { + "text": "Sea", + "indices": [ + 16, + 20 + ] + }, + { + "text": "Science", + "indices": [ + 64, + 72 + ] + } + ], + "symbols": [ + + ], + "urls": [ + { + "url": "https://t.co/WgZBQtsMlk", + "expanded_url": "https://alum.mit.edu/pages/sliceofmit/2014/04/09/why-is-speed-at-sea-measured-in-knots/", + "display_url": "alum.mit.edu/pages/sliceofm…", + "indices": [ + 40, + 63 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 8, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 09 23:45:35 +0000 2014", + "id": 454042472109604864, + "id_str": "454042472109604864", + "text": ".@bcrypt #JustExploiterThings", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454040457127813120, + "in_reply_to_status_id_str": "454040457127813120", + "in_reply_to_user_id": 968881477, + "in_reply_to_user_id_str": "968881477", + "in_reply_to_screen_name": "bcrypt", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 09 23:45:08 +0000 2014", + "id": 454042359794515968, + "id_str": "454042359794515968", + "text": "RT @bcrypt: OH: \"UGH I read the wrong version of malloc last night.\"", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Wed Apr 09 23:37:35 +0000 2014", + "id": 454040457127813120, + "id_str": "454040457127813120", + "text": "OH: \"UGH I read the wrong version of malloc last night.\"", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 968881477, + "id_str": "968881477" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 6, + "favorite_count": 11, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 6, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 09 23:43:10 +0000 2014", + "id": 454041862790463488, + "id_str": "454041862790463488", + "text": "@KdotCdot @drymangobird my money is on someone from one of those companies tipping off govt or criminal APT", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454041530857029632, + "in_reply_to_status_id_str": "454041530857029632", + "in_reply_to_user_id": 17887037, + "in_reply_to_user_id_str": "17887037", + "in_reply_to_screen_name": "KdotCdot", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 09 23:35:15 +0000 2014", + "id": 454039871523676160, + "id_str": "454039871523676160", + "text": "@KdotCdot @drymangobird that’s entirely different from scanning presumably a large host set (to hit such a small, arbitrary place)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 454021483698737152, + "in_reply_to_status_id_str": "454021483698737152", + "in_reply_to_user_id": 17887037, + "in_reply_to_user_id_str": "17887037", + "in_reply_to_screen_name": "KdotCdot", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 09 23:33:56 +0000 2014", + "id": 454039537283764225, + "id_str": "454039537283764225", + "text": "RT @drymangobird: o.o, someone claims to have evidence that someone was scanning for the heartbleed bug before its disclosure: http://t.co/…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Wed Apr 09 22:10:10 +0000 2014", + "id": 454018457818767360, + "id_str": "454018457818767360", + "text": "o.o, someone claims to have evidence that someone was scanning for the heartbleed bug before its disclosure: http://t.co/Ah16OPQqLx", + "source": "TTYtter", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 892400503, + "id_str": "892400503" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 69, + "favorite_count": 26, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/Ah16OPQqLx", + "expanded_url": "http://www.seacat.mobi/blog/heartbleed", + "display_url": "seacat.mobi/blog/heartbleed", + "indices": [ + 109, + 131 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": true, + "lang": "en" + }, + "retweet_count": 69, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 09 23:12:27 +0000 2014", + "id": 454034131354386432, + "id_str": "454034131354386432", + "text": "Skipping out on happy hour even if it means missing my chance to see @dan_crowley drunkenly extol the virtues of the internet again", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 09 22:56:14 +0000 2014", + "id": 454030050778955777, + "id_str": "454030050778955777", + "text": "@m1sp @expir3dcow unfortunately \n\nBut one day we will achieve singularity", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 454028778562265088, + "in_reply_to_status_id_str": "454028778562265088", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 7, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 09 22:49:03 +0000 2014", + "id": 454028244468371457, + "id_str": "454028244468371457", + "text": "@expir3dcow @m1sp m1sp is Mispy", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 454028135869464579, + "in_reply_to_status_id_str": "454028135869464579", + "in_reply_to_user_id": 2253276447, + "in_reply_to_user_id_str": "2253276447", + "in_reply_to_screen_name": "expir3dcow", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 09 22:46:49 +0000 2014", + "id": 454027680707796992, + "id_str": "454027680707796992", + "text": "@expir3dcow @m1sp Mispy does", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 454027325785792512, + "in_reply_to_status_id_str": "454027325785792512", + "in_reply_to_user_id": 2253276447, + "in_reply_to_user_id_str": "2253276447", + "in_reply_to_screen_name": "expir3dcow", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 09 22:12:43 +0000 2014", + "id": 454019101204426752, + "id_str": "454019101204426752", + "text": "@m1sp @zhuowei and a little bit of flat earth atheist", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 454017875401904128, + "in_reply_to_status_id_str": "454017875401904128", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 09 22:12:22 +0000 2014", + "id": 454019014378151936, + "id_str": "454019014378151936", + "text": "@m1sp @zhuowei today was a concentrated effort to nail her as a young person: Occidental honor and a permanent sense of being an outsider", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 454017875401904128, + "in_reply_to_status_id_str": "454017875401904128", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 09 22:06:31 +0000 2014", + "id": 454017539375661056, + "id_str": "454017539375661056", + "text": "@zhuowei @m1sp he was but he keeps getting older", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 454017337466052608, + "in_reply_to_status_id_str": "454017337466052608", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 09 22:05:49 +0000 2014", + "id": 454017364800307200, + "id_str": "454017364800307200", + "text": "@m1sp Rashk is in his 40s in this pic, what does he look like in your opinion ?", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 454017099250167809, + "in_reply_to_status_id_str": "454017099250167809", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 09 22:02:34 +0000 2014", + "id": 454016548135768064, + "id_str": "454016548135768064", + "text": "@zhuowei @m1sp\nRashk Solornel Vlinder\nNhangberial Diadem Bradamant \nShanlar Clarion Tsovinar", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 454015492207149056, + "in_reply_to_status_id_str": "454015492207149056", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "de" + }, + { + "created_at": "Wed Apr 09 21:50:16 +0000 2014", + "id": 454013450701012993, + "id_str": "454013450701012993", + "text": "@m1sp LOL I drew the Soronanin cast and reflexively drew in a massive continuity error http://t.co/SiyteELwNG", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 09 20:57:15 +0000 2014", + "id": 454000107810459648, + "id_str": "454000107810459648", + "text": "Never tell @chriseng anything", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 09 20:30:41 +0000 2014", + "id": 453993423906045953, + "id_str": "453993423906045953", + "text": "@gewt @lunavis @m1sp known bug with Wikipedia images in Tweetbot, have to open it externally", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 453993243588304896, + "in_reply_to_status_id_str": "453993243588304896", + "in_reply_to_user_id": 18125825, + "in_reply_to_user_id_str": "18125825", + "in_reply_to_screen_name": "gewt", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 09 20:25:53 +0000 2014", + "id": 453992213949988866, + "id_str": "453992213949988866", + "text": "@m1sp wildly mixing types of European military getups because why not http://t.co/wE90pO75Td", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 453990633930121216, + "in_reply_to_status_id_str": "453990633930121216", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 09 20:25:53 +0000 2014", + "id": 453992213949988866, + "id_str": "453992213949988866", + "text": "@m1sp wildly mixing types of European military getups because why not http://t.co/wE90pO75Td", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 453990633930121216, + "in_reply_to_status_id_str": "453990633930121216", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 09 20:22:27 +0000 2014", + "id": 453991352368640000, + "id_str": "453991352368640000", + "text": "@m1sp the other girl is Vlinder who is just the Worst.", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 453990633930121216, + "in_reply_to_status_id_str": "453990633930121216", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 09 20:21:36 +0000 2014", + "id": 453991137175683074, + "id_str": "453991137175683074", + "text": "@m1sp as you see she is kind of... bossy.", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 453990633930121216, + "in_reply_to_status_id_str": "453990633930121216", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 09 20:20:48 +0000 2014", + "id": 453990934548848640, + "id_str": "453990934548848640", + "text": "@m1sp she didn't -- Bradamant is with Diadem in Soronanin. She speaks fluent Asram.", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 453990633930121216, + "in_reply_to_status_id_str": "453990633930121216", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 09 20:13:38 +0000 2014", + "id": 453989131358834689, + "id_str": "453989131358834689", + "text": "@m1sp plot dot jpeg http://t.co/lRG74qQHim", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "hu" + }, + { + "created_at": "Wed Apr 09 20:13:00 +0000 2014", + "id": 453988973053239298, + "id_str": "453988973053239298", + "text": "@prototype27 @EFF I assure you we're all excruciatingly aware ;) but not everyone is aware that PFS even exists", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 453988657146232832, + "in_reply_to_status_id_str": "453988657146232832", + "in_reply_to_user_id": 23925775, + "in_reply_to_user_id_str": "23925775", + "in_reply_to_screen_name": "prototype27", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 09 20:08:04 +0000 2014", + "id": 453987732738826240, + "id_str": "453987732738826240", + "text": "@prototype27 @EFF it does for the problem in question -- key exposure", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 453984846176460800, + "in_reply_to_status_id_str": "453984846176460800", + "in_reply_to_user_id": 23925775, + "in_reply_to_user_id_str": "23925775", + "in_reply_to_screen_name": "prototype27", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 09 19:29:03 +0000 2014", + "id": 453977913118179328, + "id_str": "453977913118179328", + "text": "@mattblaze @puellavulnerata and then was rejected by his preferred art school, and…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453977742527455233, + "in_reply_to_status_id_str": "453977742527455233", + "in_reply_to_user_id": 26567591, + "in_reply_to_user_id_str": "26567591", + "in_reply_to_screen_name": "mattblaze", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 09 19:25:21 +0000 2014", + "id": 453976981726846976, + "id_str": "453976981726846976", + "text": "@puellavulnerata plagiarized is a strong word — reproducing photographs is totally normal for a student painter \n\n(I’m fair and balanced)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453975723254874112, + "in_reply_to_status_id_str": "453975723254874112", + "in_reply_to_user_id": 54666727, + "in_reply_to_user_id_str": "54666727", + "in_reply_to_screen_name": "puellavulnerata", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 09 19:23:50 +0000 2014", + "id": 453976600183599104, + "id_str": "453976600183599104", + "text": "RT @EFF: Takeaway from Heartbleed: Live every day as if you'll lose your SSL private keys tomorrow. Use forward secrecy. https://t.co/PpzMh…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Wed Apr 09 19:10:15 +0000 2014", + "id": 453973181229854722, + "id_str": "453973181229854722", + "text": "Takeaway from Heartbleed: Live every day as if you'll lose your SSL private keys tomorrow. Use forward secrecy. https://t.co/PpzMhLqm2I", + "source": "Thingie", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 4816, + "id_str": "4816" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 284, + "favorite_count": 125, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "https://t.co/PpzMhLqm2I", + "expanded_url": "https://eff.org/r.q7av", + "display_url": "eff.org/r.q7av", + "indices": [ + 112, + 135 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 284, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 09 19:08:53 +0000 2014", + "id": 453972836454260738, + "id_str": "453972836454260738", + "text": "@rhyme_bunny @Shufflejoy horses have powerful rear shoulders - almost circular", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453965203579740160, + "in_reply_to_status_id_str": "453965203579740160", + "in_reply_to_user_id": 2339349404, + "in_reply_to_user_id_str": "2339349404", + "in_reply_to_screen_name": "rhyme_bunny", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 09 19:07:02 +0000 2014", + "id": 453972373524709376, + "id_str": "453972373524709376", + "text": "@Neostrategos so you cop to being yucky?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453968362130132992, + "in_reply_to_status_id_str": "453968362130132992", + "in_reply_to_user_id": 16369077, + "in_reply_to_user_id_str": "16369077", + "in_reply_to_screen_name": "Neostrategos", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 09 18:52:57 +0000 2014", + "id": 453968826955493377, + "id_str": "453968826955493377", + "text": "@m1sp Bradamant has a full Occidental name now. Bradamant della Renz Granito. Deliberate allusion to Rashk’s analogy of emerald and granite", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 09 18:46:33 +0000 2014", + "id": 453967218066620417, + "id_str": "453967218066620417", + "text": "And the yucky SEO bots glommed onto that tweet to bring us full circle", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 6, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 09 18:30:34 +0000 2014", + "id": 453963195427078144, + "id_str": "453963195427078144", + "text": "Trying to google “page”… no, not as in paper, as in the courtly rank… “page rank”… … dangit", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 6, + "favorite_count": 10, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 09 18:00:57 +0000 2014", + "id": 453955742073364480, + "id_str": "453955742073364480", + "text": "@snipeyhead @_defcon_ *ars accounts* don't get hacked all the time as far as I know. They're a fairly small community.", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 453955357606690816, + "in_reply_to_status_id_str": "453955357606690816", + "in_reply_to_user_id": 14246782, + "in_reply_to_user_id_str": "14246782", + "in_reply_to_screen_name": "snipeyhead", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 09 16:57:37 +0000 2014", + "id": 453939801792999424, + "id_str": "453939801792999424", + "text": "RT @mdowd: Is your VPN software using OpenSSL? If so, what version? Asking for a friend", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Wed Apr 09 15:45:48 +0000 2014", + "id": 453921728335319040, + "id_str": "453921728335319040", + "text": "Is your VPN software using OpenSSL? If so, what version? Asking for a friend", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 15581551, + "id_str": "15581551" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 63, + "favorite_count": 31, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 63, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 09 16:56:21 +0000 2014", + "id": 453939483537580032, + "id_str": "453939483537580032", + "text": "@Talen_Lee 👏", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453918494845718528, + "in_reply_to_status_id_str": "453918494845718528", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Wed Apr 09 16:53:36 +0000 2014", + "id": 453938791846531073, + "id_str": "453938791846531073", + "text": "@demize95 it’s a generalized keep-alive and there is currently hot debate over whether it was ever appropriate to put into a low level proto", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453911276100780032, + "in_reply_to_status_id_str": "453911276100780032", + "in_reply_to_user_id": 137133048, + "in_reply_to_user_id_str": "137133048", + "in_reply_to_screen_name": "demize95", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 09 16:45:45 +0000 2014", + "id": 453936817495355392, + "id_str": "453936817495355392", + "text": "RT @Randominterrupt: SO far, this is the best breakdown of the #heartbleed bug I’ve seen since it was announced. http://t.co/CJEdpU8VDz", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Wed Apr 09 14:01:22 +0000 2014", + "id": 453895449754501120, + "id_str": "453895449754501120", + "text": "SO far, this is the best breakdown of the #heartbleed bug I’ve seen since it was announced. http://t.co/CJEdpU8VDz", + "source": "TweetDeck", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 33913779, + "id_str": "33913779" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 24, + "favorite_count": 16, + "entities": { + "hashtags": [ + { + "text": "heartbleed", + "indices": [ + 42, + 53 + ] + } + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/CJEdpU8VDz", + "expanded_url": "http://blog.existentialize.com/diagnosis-of-the-openssl-heartbleed-bug.html", + "display_url": "blog.existentialize.com/diagnosis-of-t…", + "indices": [ + 92, + 114 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 24, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 09 16:39:05 +0000 2014", + "id": 453935138981040128, + "id_str": "453935138981040128", + "text": "RT @thegrugq: SSL_CTX_use_certificate_file\nSSL_CTX_use_PrivateKey_file\nSSL_CTX_check_private_key\n\n… go home OpenSSL, you’re drunk.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Wed Apr 09 14:02:50 +0000 2014", + "id": 453895817489690624, + "id_str": "453895817489690624", + "text": "SSL_CTX_use_certificate_file\nSSL_CTX_use_PrivateKey_file\nSSL_CTX_check_private_key\n\n… go home OpenSSL, you’re drunk.", + "source": "Tweetbot for Mac", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 18983429, + "id_str": "18983429" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 34, + "favorite_count": 23, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 34, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 09 16:38:40 +0000 2014", + "id": 453935034224107520, + "id_str": "453935034224107520", + "text": "@blowdart wait, still? I thought they patched pretty quickly", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453895049105797122, + "in_reply_to_status_id_str": "453895049105797122", + "in_reply_to_user_id": 1847381, + "in_reply_to_user_id_str": "1847381", + "in_reply_to_screen_name": "blowdart", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 09 14:29:31 +0000 2014", + "id": 453902532038127616, + "id_str": "453902532038127616", + "text": ".@DarrenPMeyer @gattaca hell hath no jester like bored infosec experts", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453901998317142016, + "in_reply_to_status_id_str": "453901998317142016", + "in_reply_to_user_id": 468928589, + "in_reply_to_user_id_str": "468928589", + "in_reply_to_screen_name": "DarrenPMeyer", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 5, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 09 13:52:18 +0000 2014", + "id": 453893168023736320, + "id_str": "453893168023736320", + "text": "@Packetknife ;o;", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453886707994460161, + "in_reply_to_status_id_str": "453886707994460161", + "in_reply_to_user_id": 19564254, + "in_reply_to_user_id_str": "19564254", + "in_reply_to_screen_name": "Packetknife", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Wed Apr 09 13:50:19 +0000 2014", + "id": 453892667693625344, + "id_str": "453892667693625344", + "text": "@kivikakk hang on I saw one in the woods down by the creek", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453881514971758592, + "in_reply_to_status_id_str": "453881514971758592", + "in_reply_to_user_id": 67204542, + "in_reply_to_user_id_str": "67204542", + "in_reply_to_screen_name": "kivikakk", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 09 13:49:58 +0000 2014", + "id": 453892577985855488, + "id_str": "453892577985855488", + "text": "RT @McGrewSecurity: “@kylemaxwell: XKCD just won #Heartbleed. Stop commenting, it's over. https://t.co/2bYSpfUdha” < comic meh, but the alt…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Wed Apr 09 13:04:53 +0000 2014", + "id": 453881234633261057, + "id_str": "453881234633261057", + "text": "“@kylemaxwell: XKCD just won #Heartbleed. Stop commenting, it's over. https://t.co/2bYSpfUdha” < comic meh, but the alt-text is fantastic", + "source": "Twitter for Mac", + "truncated": false, + "in_reply_to_status_id": 453880807354937344, + "in_reply_to_status_id_str": "453880807354937344", + "in_reply_to_user_id": 727603, + "in_reply_to_user_id_str": "727603", + "in_reply_to_screen_name": "kylemaxwell", + "user": { + "id": 13275122, + "id_str": "13275122" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 13, + "favorite_count": 10, + "entities": { + "hashtags": [ + { + "text": "Heartbleed", + "indices": [ + 29, + 40 + ] + } + ], + "symbols": [ + + ], + "urls": [ + { + "url": "https://t.co/2bYSpfUdha", + "expanded_url": "https://xkcd.com/1353/", + "display_url": "xkcd.com/1353/", + "indices": [ + 70, + 93 + ] + } + ], + "user_mentions": [ + { + "screen_name": "kylemaxwell", + "name": "Kyle Maxwell", + "id": 727603, + "id_str": "727603", + "indices": [ + 1, + 13 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 13, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 09 13:35:02 +0000 2014", + "id": 453888820891877378, + "id_str": "453888820891877378", + "text": "@GeeckoDev because it makes me happy?", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 453888547154841600, + "in_reply_to_status_id_str": "453888547154841600", + "in_reply_to_user_id": 83101225, + "in_reply_to_user_id_str": "83101225", + "in_reply_to_screen_name": "libcg", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 09 13:29:42 +0000 2014", + "id": 453887478907568128, + "id_str": "453887478907568128", + "text": "#1 Cyber Hacker. #1 Printer Hacker at any rate. http://t.co/irjKFmuzoj", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 6, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 09 12:25:35 +0000 2014", + "id": 453871344036622336, + "id_str": "453871344036622336", + "text": "@snipeyhead @_defcon_ “several readers reported…” I consider it unlikely they were all hoaxes against Ars’ forum", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453759544943190016, + "in_reply_to_status_id_str": "453759544943190016", + "in_reply_to_user_id": 14246782, + "in_reply_to_user_id_str": "14246782", + "in_reply_to_screen_name": "snipeyhead", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 09 12:13:08 +0000 2014", + "id": 453868212183392256, + "id_str": "453868212183392256", + "text": "@Talen_Lee erm… can you really not tell that’s a plushie? >.> baby alpacas are much bigger", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453851248744071168, + "in_reply_to_status_id_str": "453851248744071168", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 09 11:53:41 +0000 2014", + "id": 453863317241860096, + "id_str": "453863317241860096", + "text": "@iosengineer yes", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453806185309671424, + "in_reply_to_status_id_str": "453806185309671424", + "in_reply_to_user_id": 242536500, + "in_reply_to_user_id_str": "242536500", + "in_reply_to_screen_name": "iosengineer", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Wed Apr 09 04:42:55 +0000 2014", + "id": 453754910639931392, + "id_str": "453754910639931392", + "text": "@jwgoerlich yes. In my room. Sleeping. Definitely not checking twitter!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453754596381691904, + "in_reply_to_status_id_str": "453754596381691904", + "in_reply_to_user_id": 35797450, + "in_reply_to_user_id_str": "35797450", + "in_reply_to_screen_name": "jwgoerlich", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 09 04:12:00 +0000 2014", + "id": 453747128310169601, + "id_str": "453747128310169601", + "text": "RT @yolocrypto: Shout out to http://t.co/J3611phuKi for rockin it #YOLO style: http://t.co/X6tRW0GqwR", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Wed Apr 09 04:10:25 +0000 2014", + "id": 453746732250062849, + "id_str": "453746732250062849", + "text": "Shout out to http://t.co/J3611phuKi for rockin it #YOLO style: http://t.co/X6tRW0GqwR", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 1247389856, + "id_str": "1247389856" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 49, + "favorite_count": 18, + "entities": { + "hashtags": [ + { + "text": "YOLO", + "indices": [ + 50, + 55 + ] + } + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/J3611phuKi", + "expanded_url": "http://openssl.org", + "display_url": "openssl.org", + "indices": [ + 13, + 35 + ] + }, + { + "url": "http://t.co/X6tRW0GqwR", + "expanded_url": "http://filippo.io/Heartbleed/#openssl.org", + "display_url": "filippo.io/Heartbleed/#op…", + "indices": [ + 63, + 85 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 49, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 09 04:03:00 +0000 2014", + "id": 453744862618472448, + "id_str": "453744862618472448", + "text": "@eevee @wakachamo silenk you?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453744466566737920, + "in_reply_to_status_id_str": "453744466566737920", + "in_reply_to_user_id": 14412937, + "in_reply_to_user_id_str": "14412937", + "in_reply_to_screen_name": "eevee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "ht" + }, + { + "created_at": "Wed Apr 09 04:00:52 +0000 2014", + "id": 453744326934540288, + "id_str": "453744326934540288", + "text": "@eevee @wakachamo anyway it’s “sis” not “kis” and you’re being offensive to my heritage as a speaker of the world’s best worst language", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453743923676995584, + "in_reply_to_status_id_str": "453743923676995584", + "in_reply_to_user_id": 14412937, + "in_reply_to_user_id_str": "14412937", + "in_reply_to_screen_name": "eevee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 09 03:57:10 +0000 2014", + "id": 453743397900406786, + "id_str": "453743397900406786", + "text": "@eevee we don’t have a Latin heritage!! We are a good, strong, noble Germanic language! With an obscene amount of importing!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453742806108868609, + "in_reply_to_status_id_str": "453742806108868609", + "in_reply_to_user_id": 14412937, + "in_reply_to_user_id_str": "14412937", + "in_reply_to_screen_name": "eevee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 09 03:45:01 +0000 2014", + "id": 453740338407301120, + "id_str": "453740338407301120", + "text": "RT @heathmaster: You should know Win XP support is ending, but especially if you run XP for your signage. On a busy downtown street. http:/…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue Apr 08 20:50:02 +0000 2014", + "id": 453635904117039104, + "id_str": "453635904117039104", + "text": "You should know Win XP support is ending, but especially if you run XP for your signage. On a busy downtown street. http://t.co/KxF55hbA0c", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 14570310, + "id_str": "14570310" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 545, + "favorite_count": 254, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ], + "media": [ + { + "id": 453635900673904640, + "id_str": "453635900673904640", + "indices": [ + 116, + 138 + ], + "media_url": "http://pbs.twimg.com/media/Bkujcr0IUAAFiD2.jpg", + "media_url_https": "https://pbs.twimg.com/media/Bkujcr0IUAAFiD2.jpg", + "url": "http://t.co/KxF55hbA0c", + "display_url": "pic.twitter.com/KxF55hbA0c", + "expanded_url": "http://twitter.com/heathmaster/status/453635904117039104/photo/1", + "type": "photo", + "sizes": { + "medium": { + "w": 600, + "h": 450, + "resize": "fit" + }, + "large": { + "w": 1024, + "h": 768, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 255, + "resize": "fit" + } + } + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 545, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 09 03:38:08 +0000 2014", + "id": 453738606486892544, + "id_str": "453738606486892544", + "text": "@eevee as a general rule for English words of Latin origin: ca co hard, ce ci soft", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453737885766668288, + "in_reply_to_status_id_str": "453737885766668288", + "in_reply_to_user_id": 14412937, + "in_reply_to_user_id_str": "14412937", + "in_reply_to_screen_name": "eevee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 09 03:36:15 +0000 2014", + "id": 453738134262808576, + "id_str": "453738134262808576", + "text": "@eevee it only has a hard C *in Latin*\n\nThis is not how English works http://t.co/Al6h5WaPKw", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453737885766668288, + "in_reply_to_status_id_str": "453737885766668288", + "in_reply_to_user_id": 14412937, + "in_reply_to_user_id_str": "14412937", + "in_reply_to_screen_name": "eevee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 09 03:32:22 +0000 2014", + "id": 453737156016889856, + "id_str": "453737156016889856", + "text": "@eevee I can’t decide if this is a wicked trick or if we are now grammar enemies forever", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453736305361293312, + "in_reply_to_status_id_str": "453736305361293312", + "in_reply_to_user_id": 14412937, + "in_reply_to_user_id_str": "14412937", + "in_reply_to_screen_name": "eevee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 09 03:08:50 +0000 2014", + "id": 453731231453442048, + "id_str": "453731231453442048", + "text": "I keep telling my husband people are growing suspicious he never comes to these conferences. I continue to maintain I did not imagine him", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 4, + "favorite_count": 13, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 09 03:07:15 +0000 2014", + "id": 453730834789707777, + "id_str": "453730834789707777", + "text": "@davidjayharris oh it was probably some no-harm thing like that but that’s precisely why we know about it", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453729145604677633, + "in_reply_to_status_id_str": "453729145604677633", + "in_reply_to_user_id": 308065135, + "in_reply_to_user_id_str": "308065135", + "in_reply_to_screen_name": "davidjayharris", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 09 02:42:23 +0000 2014", + "id": 453724576837812224, + "id_str": "453724576837812224", + "text": "@headhntr @mattblaze she’s crazy enough that I knew exactly who you meant just from that… I was caught in her line of fire once b/c shrug??", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453723403954827264, + "in_reply_to_status_id_str": "453723403954827264", + "in_reply_to_user_id": 22404415, + "in_reply_to_user_id_str": "22404415", + "in_reply_to_screen_name": "headhntr", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 09 02:38:40 +0000 2014", + "id": 453723643252834304, + "id_str": "453723643252834304", + "text": "@smb … this comes off as kinda icky", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453723203701968896, + "in_reply_to_status_id_str": "453723203701968896", + "in_reply_to_user_id": 7241202, + "in_reply_to_user_id_str": "7241202", + "in_reply_to_screen_name": "smb", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 09 02:34:55 +0000 2014", + "id": 453722696485191680, + "id_str": "453722696485191680", + "text": "RT @tenderlove: Good thing I used ClosedSSL.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Wed Apr 09 01:13:34 +0000 2014", + "id": 453702224636420097, + "id_str": "453702224636420097", + "text": "Good thing I used ClosedSSL.", + "source": "Echofon", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 14761655, + "id_str": "14761655" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 90, + "favorite_count": 75, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 90, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 09 02:24:30 +0000 2014", + "id": 453720075787587584, + "id_str": "453720075787587584", + "text": "Ars Technica is the first site I’ve seen report definite heartbleed hijacked accounts so far http://t.co/pBUaMecJyX", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 76, + "favorite_count": 35, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 09 02:15:27 +0000 2014", + "id": 453717798196613120, + "id_str": "453717798196613120", + "text": "@rantyben I’m going to cry myself to sleep alone in a hotel room :(", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453717645326417920, + "in_reply_to_status_id_str": "453717645326417920", + "in_reply_to_user_id": 977910404, + "in_reply_to_user_id_str": "977910404", + "in_reply_to_screen_name": "rantyben", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 09 02:13:20 +0000 2014", + "id": 453717264316235776, + "id_str": "453717264316235776", + "text": "@rantyben I’m afraid I’m unsure what lesson I should be drawing from my own Halloween costume", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453717008287162369, + "in_reply_to_status_id_str": "453717008287162369", + "in_reply_to_user_id": 977910404, + "in_reply_to_user_id_str": "977910404", + "in_reply_to_screen_name": "rantyben", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 09 02:12:02 +0000 2014", + "id": 453716936841760768, + "id_str": "453716936841760768", + "text": "@rantyben of course you would have saved that picture", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453716842536632320, + "in_reply_to_status_id_str": "453716842536632320", + "in_reply_to_user_id": 977910404, + "in_reply_to_user_id_str": "977910404", + "in_reply_to_screen_name": "rantyben", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 09 02:11:11 +0000 2014", + "id": 453716724513538048, + "id_str": "453716724513538048", + "text": "@m1sp @gewt *rejected*", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453716585849421824, + "in_reply_to_status_id_str": "453716585849421824", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 09 02:10:15 +0000 2014", + "id": 453716488974008320, + "id_str": "453716488974008320", + "text": "@Packetknife I was in an accident about that age… … …. and I’m terrified of driving >.>", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453685316080386049, + "in_reply_to_status_id_str": "453685316080386049", + "in_reply_to_user_id": 19564254, + "in_reply_to_user_id_str": "19564254", + "in_reply_to_screen_name": "Packetknife", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 09 02:09:05 +0000 2014", + "id": 453716196010242048, + "id_str": "453716196010242048", + "text": "@DaveAtErrata I fail to see how that affects the situation — I assure you I did not win him over by good flirting :)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453715851578179584, + "in_reply_to_status_id_str": "453715851578179584", + "in_reply_to_user_id": 15817736, + "in_reply_to_user_id_str": "15817736", + "in_reply_to_screen_name": "DaveAtErrata", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 09 02:05:49 +0000 2014", + "id": 453715375294005248, + "id_str": "453715375294005248", + "text": "@m1sp I’ll turn gay for you so we can be together\n\nWait", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453715177112756224, + "in_reply_to_status_id_str": "453715177112756224", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 09 02:04:23 +0000 2014", + "id": 453715011748511745, + "id_str": "453715011748511745", + "text": "It’s time to seriously consider I might just be bad at flirting \n\nLike incredibly bad", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 10, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 09 00:57:44 +0000 2014", + "id": 453698240446484480, + "id_str": "453698240446484480", + "text": "@anthonicaldwell :D :D", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 453695666649194496, + "in_reply_to_status_id_str": "453695666649194496", + "in_reply_to_user_id": 21797061, + "in_reply_to_user_id_str": "21797061", + "in_reply_to_screen_name": "anthonicaldwell", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "lv" + }, + { + "created_at": "Wed Apr 09 00:29:30 +0000 2014", + "id": 453691133697466369, + "id_str": "453691133697466369", + "text": "RT @sa_hulk: @0xabad1dea @kittylyst LET SYSADMIN HULK KNOW IF YOU NEED HELP. HULK NOT NEED BAT.", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Wed Apr 09 00:29:08 +0000 2014", + "id": 453691041665658880, + "id_str": "453691041665658880", + "text": "@0xabad1dea @kittylyst LET SYSADMIN HULK KNOW IF YOU NEED HELP. HULK NOT NEED BAT.", + "source": "TweetDeck", + "truncated": false, + "in_reply_to_status_id": 453538125890224130, + "in_reply_to_status_id_str": "453538125890224130", + "in_reply_to_user_id": 126030998, + "in_reply_to_user_id_str": "126030998", + "in_reply_to_screen_name": "0xabad1dea", + "user": { + "id": 2379142110, + "id_str": "2379142110" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 6, + "favorite_count": 8, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "0xabad1dea", + "name": "Melissa ❀", + "id": 126030998, + "id_str": "126030998", + "indices": [ + 0, + 11 + ] + }, + { + "screen_name": "kittylyst", + "name": "Ben Evans", + "id": 18838687, + "id_str": "18838687", + "indices": [ + 12, + 22 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 6, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 23:42:48 +0000 2014", + "id": 453679381031190528, + "id_str": "453679381031190528", + "text": "@Shufflejoy … do I have a completely different understanding from what the * means than you do?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453672281911205888, + "in_reply_to_status_id_str": "453672281911205888", + "in_reply_to_user_id": 1567524811, + "in_reply_to_user_id_str": "1567524811", + "in_reply_to_screen_name": "Shufflejoy", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 23:36:27 +0000 2014", + "id": 453677785186594816, + "id_str": "453677785186594816", + "text": "@mattblaze I’m willing to believe there’s a good excuse it took so long but I’m also willing to believe there isn’t.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453660817758908416, + "in_reply_to_status_id_str": "453660817758908416", + "in_reply_to_user_id": 26567591, + "in_reply_to_user_id_str": "26567591", + "in_reply_to_screen_name": "mattblaze", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 23:20:54 +0000 2014", + "id": 453673872433618944, + "id_str": "453673872433618944", + "text": "@hinanawi_chan wtf that sounds like something a child abuser would say trying to convince the kid they can’t fight back", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453643737776664576, + "in_reply_to_status_id_str": "453643737776664576", + "in_reply_to_user_id": 2336014178, + "in_reply_to_user_id_str": "2336014178", + "in_reply_to_screen_name": "hinanawi_chan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 23:11:53 +0000 2014", + "id": 453671601423536129, + "id_str": "453671601423536129", + "text": "@Kaptain_Kaos please do not tell me personally invasive atypical behavior is not creepy\n\nPlease", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 453659391175041024, + "in_reply_to_status_id_str": "453659391175041024", + "in_reply_to_user_id": 325044007, + "in_reply_to_user_id_str": "325044007", + "in_reply_to_screen_name": "Kaptain_Kaos", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 20:19:37 +0000 2014", + "id": 453628249080221697, + "id_str": "453628249080221697", + "text": "RT @joshcorman: #bitroll ? Or #riskroll ? Here at #srcbos by @selenakyle http://t.co/7ZH4FlPnZU", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue Apr 08 20:17:58 +0000 2014", + "id": 453627833114300416, + "id_str": "453627833114300416", + "text": "#bitroll ? Or #riskroll ? Here at #srcbos by @selenakyle http://t.co/7ZH4FlPnZU", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 40706825, + "id_str": "40706825" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 18, + "favorite_count": 14, + "entities": { + "hashtags": [ + { + "text": "bitroll", + "indices": [ + 0, + 8 + ] + }, + { + "text": "riskroll", + "indices": [ + 14, + 23 + ] + }, + { + "text": "srcbos", + "indices": [ + 34, + 41 + ] + } + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "selenakyle", + "name": "selenakyle ", + "id": 8216702, + "id_str": "8216702", + "indices": [ + 45, + 56 + ] + } + ], + "media": [ + { + "id": 453627831055310848, + "id_str": "453627831055310848", + "indices": [ + 57, + 79 + ], + "media_url": "http://pbs.twimg.com/media/BkucG-JIYAAqJcF.jpg", + "media_url_https": "https://pbs.twimg.com/media/BkucG-JIYAAqJcF.jpg", + "url": "http://t.co/7ZH4FlPnZU", + "display_url": "pic.twitter.com/7ZH4FlPnZU", + "expanded_url": "http://twitter.com/joshcorman/status/453627833114300416/photo/1", + "type": "photo", + "sizes": { + "medium": { + "w": 600, + "h": 450, + "resize": "fit" + }, + "large": { + "w": 1024, + "h": 768, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 255, + "resize": "fit" + } + } + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "ht" + }, + "retweet_count": 18, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "ht" + }, + { + "created_at": "Tue Apr 08 20:11:56 +0000 2014", + "id": 453626318505406464, + "id_str": "453626318505406464", + "text": "@fissie well, <someone reasonably well known> just started working at <major website> but it hasn’t been long enough to reform everything", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453626142092570624, + "in_reply_to_status_id_str": "453626142092570624", + "in_reply_to_user_id": 14118564, + "in_reply_to_user_id_str": "14118564", + "in_reply_to_screen_name": "fissie", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 20:06:15 +0000 2014", + "id": 453624886523486208, + "id_str": "453624886523486208", + "text": "I’m imagining a fight at <major website> where security wanted to pull the plug until the patch was deployed and business side said hell no", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 11, + "favorite_count": 12, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 20:04:01 +0000 2014", + "id": 453624324037939201, + "id_str": "453624324037939201", + "text": "RT @matthew_d_green: What kind of monster names a payload *length* variable 'payload'? Talk about red flags.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue Apr 08 19:15:25 +0000 2014", + "id": 453612094525825025, + "id_str": "453612094525825025", + "text": "What kind of monster names a payload *length* variable 'payload'? Talk about red flags.", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 106234268, + "id_str": "106234268" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 27, + "favorite_count": 34, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 27, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 20:03:19 +0000 2014", + "id": 453624148871639040, + "id_str": "453624148871639040", + "text": "@briankrebs I suspect it was a deployment issue. While I would have called to Shut Down Everything, I’m not surprised they didn't", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453611536503046146, + "in_reply_to_status_id_str": "453611536503046146", + "in_reply_to_user_id": 22790881, + "in_reply_to_user_id_str": "22790881", + "in_reply_to_screen_name": "briankrebs", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 19:59:31 +0000 2014", + "id": 453623189973651456, + "id_str": "453623189973651456", + "text": "@raudelmil >.>", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453622743553310721, + "in_reply_to_status_id_str": "453622743553310721", + "in_reply_to_user_id": 182083978, + "in_reply_to_user_id_str": "182083978", + "in_reply_to_screen_name": "raudelmil", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "vi" + }, + { + "created_at": "Tue Apr 08 19:56:26 +0000 2014", + "id": 453622413960683520, + "id_str": "453622413960683520", + "text": "RT @jm: PROTIP: Given Heartbleed, be sure that your Chrome is set to check for SSL cert revocations. It's not by default. http://t.co/SjE…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue Apr 08 18:07:19 +0000 2014", + "id": 453594955538501633, + "id_str": "453594955538501633", + "text": "PROTIP: Given Heartbleed, be sure that your Chrome is set to check for SSL cert revocations. It's not by default. http://t.co/SjE3k1mQUe", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 937561, + "id_str": "937561" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1474, + "favorite_count": 534, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/SjE3k1mQUe", + "expanded_url": "http://i.imgur.com/DsB8Oz0.png", + "display_url": "i.imgur.com/DsB8Oz0.png", + "indices": [ + 116, + 138 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 1474, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 19:53:58 +0000 2014", + "id": 453621793254031360, + "id_str": "453621793254031360", + "text": "RT @bcrypt: as mom always said, remember to restart your load balancers afer fixing that critical OpenSSL bug.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue Apr 08 18:18:13 +0000 2014", + "id": 453597700882432002, + "id_str": "453597700882432002", + "text": "as mom always said, remember to restart your load balancers afer fixing that critical OpenSSL bug.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 968881477, + "id_str": "968881477" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 61, + "favorite_count": 32, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 61, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 19:35:14 +0000 2014", + "id": 453617080576016384, + "id_str": "453617080576016384", + "text": "@meg_aera I promise I don't mind as long as you're not with the creepy guy outside who wanted me to know I'm beautiful :)", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 453616648113889281, + "in_reply_to_status_id_str": "453616648113889281", + "in_reply_to_user_id": 72060911, + "in_reply_to_user_id_str": "72060911", + "in_reply_to_screen_name": "meg_aera", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 19:12:48 +0000 2014", + "id": 453611436896702464, + "id_str": "453611436896702464", + "text": "Please don't be that guy who tells me well, at least strangers with a poor sense for boundaries think I'm beautiful !!!", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 4, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 19:11:02 +0000 2014", + "id": 453610992308862977, + "id_str": "453610992308862977", + "text": "Time from stepping outside in the city to strange old man telling me I'm beautiful: three minutes \n\nHelp", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 19:06:26 +0000 2014", + "id": 453609833137455104, + "id_str": "453609833137455104", + "text": "@Kufat too late already found him in a back alley", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 453609216788672513, + "in_reply_to_status_id_str": "453609216788672513", + "in_reply_to_user_id": 207691003, + "in_reply_to_user_id_str": "207691003", + "in_reply_to_screen_name": "Kufat", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 19:03:31 +0000 2014", + "id": 453609096869322753, + "id_str": "453609096869322753", + "text": "I seem to have lost my lunch date in this cavernous food court.", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 19:01:26 +0000 2014", + "id": 453608575047565313, + "id_str": "453608575047565313", + "text": "@FiloSottile oh. You! Your website has been useful. 🎉", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 51049452, + "in_reply_to_user_id_str": "51049452", + "in_reply_to_screen_name": "FiloSottile", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 18:38:24 +0000 2014", + "id": 453602776933994497, + "id_str": "453602776933994497", + "text": "@ClaudioDekker I am now firmly in It Is A Mystery territory", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453602676031647744, + "in_reply_to_status_id_str": "453602676031647744", + "in_reply_to_user_id": 78721809, + "in_reply_to_user_id_str": "78721809", + "in_reply_to_screen_name": "ClaudioDekker", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 18:37:02 +0000 2014", + "id": 453602432757825536, + "id_str": "453602432757825536", + "text": "@ClaudioDekker hey are you around do you still get New Profile when viewing my profile and does it still say 2 lists", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 78721809, + "in_reply_to_user_id_str": "78721809", + "in_reply_to_screen_name": "ClaudioDekker", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 18:34:12 +0000 2014", + "id": 453601722616020992, + "id_str": "453601722616020992", + "text": ".@KrisJelbring @notch Minecraft security: move fast and break blocks.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453569797490753536, + "in_reply_to_status_id_str": "453569797490753536", + "in_reply_to_user_id": 109344609, + "in_reply_to_user_id_str": "109344609", + "in_reply_to_screen_name": "KrisJelbring", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 18:33:54 +0000 2014", + "id": 453601645432426498, + "id_str": "453601645432426498", + "text": "RT @KrisJelbring: Unfortunately due to this incident, we have been forced to drop support for the legacy Minecraft launcher.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue Apr 08 16:27:21 +0000 2014", + "id": 453569797490753536, + "id_str": "453569797490753536", + "text": "Unfortunately due to this incident, we have been forced to drop support for the legacy Minecraft launcher.", + "source": "Twitter for Mac", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 109344609, + "id_str": "109344609" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 103, + "favorite_count": 130, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 103, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 18:33:15 +0000 2014", + "id": 453601481988796416, + "id_str": "453601481988796416", + "text": "@JoshuaL and to be absolutely certain - it shows the New Profile with my avatar way on the left instead of centered?", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 453601368721620992, + "in_reply_to_status_id_str": "453601368721620992", + "in_reply_to_user_id": 16254349, + "in_reply_to_user_id_str": "16254349", + "in_reply_to_screen_name": "JoshuaL", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 18:31:55 +0000 2014", + "id": 453601144842244096, + "id_str": "453601144842244096", + "text": "@JoshuaL thank you 👍 then the bug is fixed", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453600986524057600, + "in_reply_to_status_id_str": "453600986524057600", + "in_reply_to_user_id": 16254349, + "in_reply_to_user_id_str": "16254349", + "in_reply_to_screen_name": "JoshuaL", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 18:30:40 +0000 2014", + "id": 453600832773451776, + "id_str": "453600832773451776", + "text": "@gu3st thanks!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453600781091217408, + "in_reply_to_status_id_str": "453600781091217408", + "in_reply_to_user_id": 18702069, + "in_reply_to_user_id_str": "18702069", + "in_reply_to_screen_name": "gu3st", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 18:28:43 +0000 2014", + "id": 453600339804311552, + "id_str": "453600339804311552", + "text": ".@gmemstr 🌟🇱🇴🇱 🇸🇸🇱🌟", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453597678384185345, + "in_reply_to_status_id_str": "453597678384185345", + "in_reply_to_user_id": 208211557, + "in_reply_to_user_id_str": "208211557", + "in_reply_to_screen_name": "gmemstr", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 12, + "favorite_count": 13, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Tue Apr 08 17:53:40 +0000 2014", + "id": 453591521963823104, + "id_str": "453591521963823104", + "text": "@netik just wanted to vent a little out of sight :X", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 453591076155031552, + "in_reply_to_status_id_str": "453591076155031552", + "in_reply_to_user_id": 899701, + "in_reply_to_user_id_str": "899701", + "in_reply_to_screen_name": "netik", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 17:52:14 +0000 2014", + "id": 453591158275727360, + "id_str": "453591158275727360", + "text": "RT @dreid: @0xabad1dea I lied, it’s actually because yolo and Path MTU Discovery…\n\nSee Section 5.1… https://t.co/K4iKZVHFyC", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue Apr 08 17:03:12 +0000 2014", + "id": 453578821413793793, + "id_str": "453578821413793793", + "text": "@0xabad1dea I lied, it’s actually because yolo and Path MTU Discovery…\n\nSee Section 5.1… https://t.co/K4iKZVHFyC", + "source": "Tweetbot for Mac", + "truncated": false, + "in_reply_to_status_id": 453576148501286912, + "in_reply_to_status_id_str": "453576148501286912", + "in_reply_to_user_id": 756241, + "in_reply_to_user_id_str": "756241", + "in_reply_to_screen_name": "dreid", + "user": { + "id": 756241, + "id_str": "756241" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 1, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "https://t.co/K4iKZVHFyC", + "expanded_url": "https://tools.ietf.org/html/rfc6520#section-5", + "display_url": "tools.ietf.org/html/rfc6520#s…", + "indices": [ + 89, + 112 + ] + } + ], + "user_mentions": [ + { + "screen_name": "0xabad1dea", + "name": "Melissa", + "id": 126030998, + "id_str": "126030998", + "indices": [ + 0, + 11 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 2, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 17:48:01 +0000 2014", + "id": 453590100191232000, + "id_str": "453590100191232000", + "text": "@rmjorg that at least vaguely makes sense", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 453586603064045569, + "in_reply_to_status_id_str": "453586603064045569", + "in_reply_to_user_id": 1488337543, + "in_reply_to_user_id_str": "1488337543", + "in_reply_to_screen_name": "rmjorg", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 16:53:13 +0000 2014", + "id": 453576307117674496, + "id_str": "453576307117674496", + "text": "RT @dreid: @0xabad1dea The payload allows a DTLS implementation to correlate heartbeat responses with their requests, it’s a uint16 because…", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue Apr 08 16:52:35 +0000 2014", + "id": 453576148501286912, + "id_str": "453576148501286912", + "text": "@0xabad1dea The payload allows a DTLS implementation to correlate heartbeat responses with their requests, it’s a uint16 because yolo.", + "source": "Tweetbot for Mac", + "truncated": false, + "in_reply_to_status_id": 453572678780456960, + "in_reply_to_status_id_str": "453572678780456960", + "in_reply_to_user_id": 126030998, + "in_reply_to_user_id_str": "126030998", + "in_reply_to_screen_name": "0xabad1dea", + "user": { + "id": 756241, + "id_str": "756241" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 7, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "0xabad1dea", + "name": "Melissa", + "id": 126030998, + "id_str": "126030998", + "indices": [ + 0, + 11 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 3, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 16:47:16 +0000 2014", + "id": 453574809751126016, + "id_str": "453574809751126016", + "text": "@rantyben elucidating.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 453572765711228930, + "in_reply_to_status_id_str": "453572765711228930", + "in_reply_to_user_id": 977910404, + "in_reply_to_user_id_str": "977910404", + "in_reply_to_screen_name": "rantyben", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "es" + }, + { + "created_at": "Tue Apr 08 16:45:10 +0000 2014", + "id": 453574282623594497, + "id_str": "453574282623594497", + "text": "I started ranting about how much I hate PHP and someone said \"ohhhh, you're THE Melissa\"", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 11, + "favorite_count": 50, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 16:41:07 +0000 2014", + "id": 453573263097331713, + "id_str": "453573263097331713", + "text": "@davidjayharris in theory maaaaaaybe? In practice not really. And in any case I trust Yahoo to take careful whitehat actions in good faith.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 453571392168939520, + "in_reply_to_status_id_str": "453571392168939520", + "in_reply_to_user_id": 308065135, + "in_reply_to_user_id_str": "308065135", + "in_reply_to_screen_name": "davidjayharris", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 16:40:26 +0000 2014", + "id": 453573090778570752, + "id_str": "453573090778570752", + "text": "@davidjayharris the two snippets I grabbed did not contain anyone's username or password, for the record.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 453571392168939520, + "in_reply_to_status_id_str": "453571392168939520", + "in_reply_to_user_id": 308065135, + "in_reply_to_user_id_str": "308065135", + "in_reply_to_screen_name": "davidjayharris", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 16:38:48 +0000 2014", + "id": 453572678780456960, + "id_str": "453572678780456960", + "text": "Um, does anyone know why the heartbeat extension allows the client to specify arbitrary payload sizes on the order of kilobytes anyway", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 4, + "favorite_count": 8, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 16:24:46 +0000 2014", + "id": 453569150229938177, + "id_str": "453569150229938177", + "text": "@netik @TSWAlliance this was a misunderstanding in putting together the synopsis, it's being edited. Thanks.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 453568602709319681, + "in_reply_to_status_id_str": "453568602709319681", + "in_reply_to_user_id": 899701, + "in_reply_to_user_id_str": "899701", + "in_reply_to_screen_name": "netik", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 16:20:19 +0000 2014", + "id": 453568027456712705, + "id_str": "453568027456712705", + "text": "In this RT: I'm not listening to it, I heard a clip and yep I still sound twelve.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 16:19:33 +0000 2014", + "id": 453567835802198017, + "id_str": "453567835802198017", + "text": "RT @TSWAlliance: 2014 SOURCE Boston Conference: Melissa Elliot @0xabad1dea on the HeartBleed Bug at Yahoo http://t.co/0v2If7LtIo #OWASP #Ap…", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue Apr 08 16:19:00 +0000 2014", + "id": 453567696551288833, + "id_str": "453567696551288833", + "text": "2014 SOURCE Boston Conference: Melissa Elliot @0xabad1dea on the HeartBleed Bug at Yahoo http://t.co/0v2If7LtIo #OWASP #AppSec #DevOps", + "source": "HootSuite", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 1489271886, + "id_str": "1489271886" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 6, + "favorite_count": 8, + "entities": { + "hashtags": [ + { + "text": "OWASP", + "indices": [ + 112, + 118 + ] + }, + { + "text": "AppSec", + "indices": [ + 119, + 126 + ] + }, + { + "text": "DevOps", + "indices": [ + 127, + 134 + ] + } + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/0v2If7LtIo", + "expanded_url": "http://ow.ly/vz9gc", + "display_url": "ow.ly/vz9gc", + "indices": [ + 89, + 111 + ] + } + ], + "user_mentions": [ + { + "screen_name": "0xabad1dea", + "name": "MeliSSL", + "id": 126030998, + "id_str": "126030998", + "indices": [ + 46, + 57 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 6, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 16:19:05 +0000 2014", + "id": 453567716910465024, + "id_str": "453567716910465024", + "text": "@gsuberland -- the tiny, subtle, in-spec tell.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 453563509109190656, + "in_reply_to_status_id_str": "453563509109190656", + "in_reply_to_user_id": 432513392, + "in_reply_to_user_id_str": "432513392", + "in_reply_to_screen_name": "gsuberland", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 16:18:57 +0000 2014", + "id": 453567683695747072, + "id_str": "453567683695747072", + "text": "@gsuberland incidentally - it's basically impossible to catch - if you're not yet patched you're probably not deep packet inspecting for --", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 453563509109190656, + "in_reply_to_status_id_str": "453563509109190656", + "in_reply_to_user_id": 432513392, + "in_reply_to_user_id_str": "432513392", + "in_reply_to_screen_name": "gsuberland", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 16:11:09 +0000 2014", + "id": 453565722439208960, + "id_str": "453565722439208960", + "text": "@gsuberland I'm not going to say anything about what the legal situation of using the PoC could be... it's so... \"working as intended\"", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 453563509109190656, + "in_reply_to_status_id_str": "453563509109190656", + "in_reply_to_user_id": 432513392, + "in_reply_to_user_id_str": "432513392", + "in_reply_to_screen_name": "gsuberland", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 16:01:56 +0000 2014", + "id": 453563399935631360, + "id_str": "453563399935631360", + "text": "RT @Kufat: @0xabad1dea What about cryptocoin exchanges?", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue Apr 08 15:57:12 +0000 2014", + "id": 453562208757485569, + "id_str": "453562208757485569", + "text": "@0xabad1dea What about cryptocoin exchanges?", + "source": "Plume for Android", + "truncated": false, + "in_reply_to_status_id": 453562027727147008, + "in_reply_to_status_id_str": "453562027727147008", + "in_reply_to_user_id": 126030998, + "in_reply_to_user_id_str": "126030998", + "in_reply_to_screen_name": "0xabad1dea", + "user": { + "id": 207691003, + "id_str": "207691003" + }, + "geo": { + "type": "Point", + "coordinates": [ + 41.65765766, + -73.91652771 + ] + }, + "coordinates": { + "type": "Point", + "coordinates": [ + -73.91652771, + 41.65765766 + ] + }, + "place": { + "id": "a8302de2aa0be15f", + "url": "https://api.twitter.com/1.1/geo/id/a8302de2aa0be15f.json", + "place_type": "city", + "name": "Spackenkill", + "full_name": "Spackenkill, NY", + "country_code": "US", + "country": "United States", + "contained_within": [ + + ], + "bounding_box": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.930675, + 41.641122 + ], + [ + -73.878975, + 41.641122 + ], + [ + -73.878975, + 41.679571 + ], + [ + -73.930675, + 41.679571 + ] + ] + ] + }, + "attributes": { + } + }, + "contributors": null, + "retweet_count": 1, + "favorite_count": 2, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "0xabad1dea", + "name": "Melissa ✨", + "id": 126030998, + "id_str": "126030998", + "indices": [ + 0, + 11 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 1, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 15:56:28 +0000 2014", + "id": 453562027727147008, + "id_str": "453562027727147008", + "text": "The guy sitting next to me is enumerating banks and payment processors. Well, the good news is it's not all of them!", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 7, + "favorite_count": 6, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 15:52:28 +0000 2014", + "id": 453561019231903744, + "id_str": "453561019231903744", + "text": "Minecraft is back up. Crisis is over.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 5, + "favorite_count": 11, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 15:52:01 +0000 2014", + "id": 453560905620791296, + "id_str": "453560905620791296", + "text": "RT @KrisJelbring: If you logged in to any of our games or websites in the last 24 hours using your username+password I'd recommend you to c…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue Apr 08 15:47:54 +0000 2014", + "id": 453559871028613121, + "id_str": "453559871028613121", + "text": "If you logged in to any of our games or websites in the last 24 hours using your username+password I'd recommend you to change your password", + "source": "Twitter for Mac", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 109344609, + "id_str": "109344609" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 592, + "favorite_count": 277, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 592, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 15:44:56 +0000 2014", + "id": 453559123175804928, + "id_str": "453559123175804928", + "text": "@hinanawi_chan @demize95 we have a third of the internet to choose from, though.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453557339183140865, + "in_reply_to_status_id_str": "453557339183140865", + "in_reply_to_user_id": 2336014178, + "in_reply_to_user_id_str": "2336014178", + "in_reply_to_screen_name": "hinanawi_chan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 15:43:45 +0000 2014", + "id": 453558825183088640, + "id_str": "453558825183088640", + "text": "RT @mdowd: Btw there is a potential side effect of heartbleed: if your read goes off the end of an allocated region you will crash the serv…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue Apr 08 15:31:13 +0000 2014", + "id": 453555670743138306, + "id_str": "453555670743138306", + "text": "Btw there is a potential side effect of heartbleed: if your read goes off the end of an allocated region you will crash the service", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 15581551, + "id_str": "15581551" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 28, + "favorite_count": 11, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 28, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 15:42:07 +0000 2014", + "id": 453558413705097216, + "id_str": "453558413705097216", + "text": "@Kufat one of the discoverers was Google security.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453558202563833856, + "in_reply_to_status_id_str": "453558202563833856", + "in_reply_to_user_id": 207691003, + "in_reply_to_user_id_str": "207691003", + "in_reply_to_screen_name": "Kufat", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 15:38:46 +0000 2014", + "id": 453557572344492032, + "id_str": "453557572344492032", + "text": "@j4cob @DustySTS sssh. You saw nothing.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453403061696737280, + "in_reply_to_status_id_str": "453403061696737280", + "in_reply_to_user_id": 41329897, + "in_reply_to_user_id_str": "41329897", + "in_reply_to_screen_name": "j4cob", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 15:35:34 +0000 2014", + "id": 453556765846929408, + "id_str": "453556765846929408", + "text": "RT @chriseng: The OpenSSL bug (and Yahoo leak example) remind me of this fun bug from the days of yore. Credentials galore. http://t.co/lsP…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue Apr 08 14:52:28 +0000 2014", + "id": 453545918646976512, + "id_str": "453545918646976512", + "text": "The OpenSSL bug (and Yahoo leak example) remind me of this fun bug from the days of yore. Credentials galore. http://t.co/lsPROOEl3H", + "source": "MetroTwit", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 13752192, + "id_str": "13752192" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 6, + "favorite_count": 6, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/lsPROOEl3H", + "expanded_url": "http://marc.info/?l=ntbugtraq&m=98777782204097&w=2", + "display_url": "marc.info/?l=ntbugtraq&m…", + "indices": [ + 110, + 132 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 6, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 15:34:52 +0000 2014", + "id": 453556590571171841, + "id_str": "453556590571171841", + "text": "RT @blubbfiction: So if you think that #heartbleed is not critical: just hijacked a 2F-authenticated session with cookies from a memory dum…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue Apr 08 12:42:06 +0000 2014", + "id": 453513110348107776, + "id_str": "453513110348107776", + "text": "So if you think that #heartbleed is not critical: just hijacked a 2F-authenticated session with cookies from a memory dump - patch now! #PoC", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 84379283, + "id_str": "84379283" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 180, + "favorite_count": 44, + "entities": { + "hashtags": [ + { + "text": "heartbleed", + "indices": [ + 21, + 32 + ] + }, + { + "text": "PoC", + "indices": [ + 136, + 140 + ] + } + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": true, + "lang": "en" + }, + "retweet_count": 180, + "favorite_count": 0, + "favorited": false, + "retweeted": true, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 15:15:11 +0000 2014", + "id": 453551638612307968, + "id_str": "453551638612307968", + "text": "Just gave an interview to a reporter at #srcbos about heartbleed. My own heart might be racing a bit. Talked about Yahoo", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 8, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 14:52:09 +0000 2014", + "id": 453545838913269760, + "id_str": "453545838913269760", + "text": "@claco @rubbsdecvik okay, maybe their response could be better :) but it wasn't their code or design that caused this mess", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 453545467867963393, + "in_reply_to_status_id_str": "453545467867963393", + "in_reply_to_user_id": 14816130, + "in_reply_to_user_id_str": "14816130", + "in_reply_to_screen_name": "claco", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 14:49:46 +0000 2014", + "id": 453545240390299648, + "id_str": "453545240390299648", + "text": "@hinanawi_chan @ac3xx putting out fires is our job. And we appreciate a good fire as it yet burns.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 453544869080731648, + "in_reply_to_status_id_str": "453544869080731648", + "in_reply_to_user_id": 2336014178, + "in_reply_to_user_id_str": "2336014178", + "in_reply_to_screen_name": "hinanawi_chan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 14:48:49 +0000 2014", + "id": 453545001205506048, + "id_str": "453545001205506048", + "text": "Telling people just waking up that Yahoo is hemorrhaging usernames and passwords - and having to clarify it's not their fault this time!", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 23, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 14:47:38 +0000 2014", + "id": 453544703775211520, + "id_str": "453544703775211520", + "text": "@ac3xx @hinanawi_chan goto fail was pretty bad but in a very different way. GnuTLS was 90% mitigated by virtue of obscurity", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 453543800166961152, + "in_reply_to_status_id_str": "453543800166961152", + "in_reply_to_user_id": 226624013, + "in_reply_to_user_id_str": "226624013", + "in_reply_to_screen_name": "ac3xx", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 14:36:39 +0000 2014", + "id": 453541939653402624, + "id_str": "453541939653402624", + "text": "RT @therulerofchina: @0xabad1dea Ideally we would offer PHP and kill two birds with one stone", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue Apr 08 14:36:06 +0000 2014", + "id": 453541801883086848, + "id_str": "453541801883086848", + "text": "@0xabad1dea Ideally we would offer PHP and kill two birds with one stone", + "source": "TweetDeck", + "truncated": false, + "in_reply_to_status_id": 453541460294774784, + "in_reply_to_status_id_str": "453541460294774784", + "in_reply_to_user_id": 126030998, + "in_reply_to_user_id_str": "126030998", + "in_reply_to_screen_name": "0xabad1dea", + "user": { + "id": 315201548, + "id_str": "315201548" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 10, + "favorite_count": 11, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "0xabad1dea", + "name": "Melissa", + "id": 126030998, + "id_str": "126030998", + "indices": [ + 0, + 11 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 10, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 14:34:45 +0000 2014", + "id": 453541460294774784, + "id_str": "453541460294774784", + "text": "What you don’t realize is that putting the stake in the heart of XP requires… a sacrifice. \n\nOur blood has been offered. #heartbleed", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 62, + "favorite_count": 39, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 14:27:49 +0000 2014", + "id": 453539716999430144, + "id_str": "453539716999430144", + "text": "@hinanawi_chan you know yahoo is leaking random usernames and passwords, right?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453518375936094208, + "in_reply_to_status_id_str": "453518375936094208", + "in_reply_to_user_id": 2336014178, + "in_reply_to_user_id_str": "2336014178", + "in_reply_to_screen_name": "hinanawi_chan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 14:26:15 +0000 2014", + "id": 453539322348982272, + "id_str": "453539322348982272", + "text": "@_argp @osxreverser if their *signing* keys are in the process memory of a public-facing web site we have different problems", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453516066510344192, + "in_reply_to_status_id_str": "453516066510344192", + "in_reply_to_user_id": 108559468, + "in_reply_to_user_id_str": "108559468", + "in_reply_to_screen_name": "_argp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 14:24:58 +0000 2014", + "id": 453538997642739712, + "id_str": "453538997642739712", + "text": ".@jlwfnord I proooomise I am not subtweeting *my* IT team, illustrious coworker", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453538778364534784, + "in_reply_to_status_id_str": "453538778364534784", + "in_reply_to_user_id": 2686861, + "in_reply_to_user_id_str": "2686861", + "in_reply_to_screen_name": "jlwfnord", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 14:22:50 +0000 2014", + "id": 453538463590400000, + "id_str": "453538463590400000", + "text": "@ioerror there were two different discovering groups. They handled the process differently. Whoops!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453512160275341312, + "in_reply_to_status_id_str": "453512160275341312", + "in_reply_to_user_id": 13862172, + "in_reply_to_user_id_str": "13862172", + "in_reply_to_screen_name": "ioerror", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 14:21:30 +0000 2014", + "id": 453538125890224130, + "id_str": "453538125890224130", + "text": "Beating sense into IT teams with a bat as a service. Rates very reasonable.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 29, + "favorite_count": 25, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 14:19:31 +0000 2014", + "id": 453537628412186624, + "id_str": "453537628412186624", + "text": "@wimremes @duosec I would but @quine would probably shank me", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453510770098049024, + "in_reply_to_status_id_str": "453510770098049024", + "in_reply_to_user_id": 14932408, + "in_reply_to_user_id_str": "14932408", + "in_reply_to_screen_name": "wimremes", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 14:16:50 +0000 2014", + "id": 453536951355068416, + "id_str": "453536951355068416", + "text": "RT @WarrenGuy: So just in case the graveness of #Heartbleed hasn't been realised by some yet, Yahoo is leaking user credentials http://t.co…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue Apr 08 12:29:49 +0000 2014", + "id": 453510021930680320, + "id_str": "453510021930680320", + "text": "So just in case the graveness of #Heartbleed hasn't been realised by some yet, Yahoo is leaking user credentials http://t.co/G1v1UBgyiH", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 26200700, + "id_str": "26200700" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1066, + "favorite_count": 218, + "entities": { + "hashtags": [ + { + "text": "Heartbleed", + "indices": [ + 33, + 44 + ] + } + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ], + "media": [ + { + "id": 453510021939068928, + "id_str": "453510021939068928", + "indices": [ + 113, + 135 + ], + "media_url": "http://pbs.twimg.com/media/Bksw9k_CAAAy8ln.png", + "media_url_https": "https://pbs.twimg.com/media/Bksw9k_CAAAy8ln.png", + "url": "http://t.co/G1v1UBgyiH", + "display_url": "pic.twitter.com/G1v1UBgyiH", + "expanded_url": "http://twitter.com/WarrenGuy/status/453510021930680320/photo/1", + "type": "photo", + "sizes": { + "small": { + "w": 247, + "h": 131, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 131, + "resize": "crop" + }, + "medium": { + "w": 247, + "h": 131, + "resize": "fit" + }, + "large": { + "w": 247, + "h": 131, + "resize": "fit" + } + } + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 1066, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 14:16:15 +0000 2014", + "id": 453536803904299008, + "id_str": "453536803904299008", + "text": "@_larry0 missing you at source :(", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453507328294539264, + "in_reply_to_status_id_str": "453507328294539264", + "in_reply_to_user_id": 17055552, + "in_reply_to_user_id_str": "17055552", + "in_reply_to_screen_name": "_larry0", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 14:14:33 +0000 2014", + "id": 453536377951756288, + "id_str": "453536377951756288", + "text": "RT @puellavulnerata: Oh, and Yahoo also #Heartbleeds session cookies.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue Apr 08 12:07:54 +0000 2014", + "id": 453504504780955648, + "id_str": "453504504780955648", + "text": "Oh, and Yahoo also #Heartbleeds session cookies.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 54666727, + "id_str": "54666727" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 12, + "favorite_count": 1, + "entities": { + "hashtags": [ + { + "text": "Heartbleeds", + "indices": [ + 19, + 31 + ] + } + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 12, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 14:14:15 +0000 2014", + "id": 453536303284768768, + "id_str": "453536303284768768", + "text": "RT @duosec: @wimremes Thanks for nuthin'", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue Apr 08 12:33:10 +0000 2014", + "id": 453510864398602241, + "id_str": "453510864398602241", + "text": "@wimremes Thanks for nuthin'", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 453503513315004416, + "in_reply_to_status_id_str": "453503513315004416", + "in_reply_to_user_id": 14932408, + "in_reply_to_user_id_str": "14932408", + "in_reply_to_screen_name": "wimremes", + "user": { + "id": 95339302, + "id_str": "95339302" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 6, + "favorite_count": 7, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "wimremes", + "name": "Wim Remes", + "id": 14932408, + "id_str": "14932408", + "indices": [ + 0, + 9 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 6, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 14:14:08 +0000 2014", + "id": 453536273320673280, + "id_str": "453536273320673280", + "text": "RT @wimremes: haha! @duosec bug bounty for not finding a bug arrived! they rock :-) http://t.co/EJw81YVJCJ", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue Apr 08 12:03:57 +0000 2014", + "id": 453503513315004416, + "id_str": "453503513315004416", + "text": "haha! @duosec bug bounty for not finding a bug arrived! they rock :-) http://t.co/EJw81YVJCJ", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 14932408, + "id_str": "14932408" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 53, + "favorite_count": 43, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "duosec", + "name": "Duo Security", + "id": 95339302, + "id_str": "95339302", + "indices": [ + 6, + 13 + ] + } + ], + "media": [ + { + "id": 453503513105281024, + "id_str": "453503513105281024", + "indices": [ + 70, + 92 + ], + "media_url": "http://pbs.twimg.com/media/BksrCtsIMAAiXu_.jpg", + "media_url_https": "https://pbs.twimg.com/media/BksrCtsIMAAiXu_.jpg", + "url": "http://t.co/EJw81YVJCJ", + "display_url": "pic.twitter.com/EJw81YVJCJ", + "expanded_url": "http://twitter.com/wimremes/status/453503513315004416/photo/1", + "type": "photo", + "sizes": { + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 453, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 800, + "resize": "fit" + }, + "large": { + "w": 768, + "h": 1024, + "resize": "fit" + } + } + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 53, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 13:39:54 +0000 2014", + "id": 453527656928391168, + "id_str": "453527656928391168", + "text": ".@Talen_Lee I'm not the one who had to patch, test and deploy to a server farm... Salute the IT people who occasionally pull all-nighters", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 453527181306503169, + "in_reply_to_status_id_str": "453527181306503169", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 5, + "favorite_count": 6, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 13:35:58 +0000 2014", + "id": 453526669169815553, + "id_str": "453526669169815553", + "text": "There that should really sell people on the industry", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 5, + "favorite_count": 8, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 13:35:41 +0000 2014", + "id": 453526596541239296, + "id_str": "453526596541239296", + "text": "If you don't want to run around with your hair on fire with a constant stream of pressing issues, information security is not for you", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 38, + "favorite_count": 32, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 13:18:20 +0000 2014", + "id": 453522232560865281, + "id_str": "453522232560865281", + "text": "I'm looking at a pile of \"5 minutes remaining\", \"1 minute remaining\" etc signs and I can't get the Sonic drowning klaxon out of my head", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 11:59:27 +0000 2014", + "id": 453502379011629056, + "id_str": "453502379011629056", + "text": "RT @Keltounet: EU directive requiring telcos to keep users’ data for 2years is illegal *boom* — http://t.co/7o4PuFADUM", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue Apr 08 09:17:52 +0000 2014", + "id": 453461716761059328, + "id_str": "453461716761059328", + "text": "EU directive requiring telcos to keep users’ data for 2years is illegal *boom* — http://t.co/7o4PuFADUM", + "source": "Tweetbot for Mac", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 95639457, + "id_str": "95639457" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 79, + "favorite_count": 25, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/7o4PuFADUM", + "expanded_url": "http://www.reuters.com/article/2014/04/08/us-eu-data-ruling-idUSBREA370F020140408", + "display_url": "reuters.com/article/2014/0…", + "indices": [ + 81, + 103 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 79, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 11:55:03 +0000 2014", + "id": 453501272029937664, + "id_str": "453501272029937664", + "text": "RT @badboy_: Please hug your sysadmin today, all of them have a really stressful day today.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue Apr 08 07:47:57 +0000 2014", + "id": 453439086788100096, + "id_str": "453439086788100096", + "text": "Please hug your sysadmin today, all of them have a really stressful day today.", + "source": "TweetDeck", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 13485262, + "id_str": "13485262" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 236, + "favorite_count": 77, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 236, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 11:51:07 +0000 2014", + "id": 453500281771536384, + "id_str": "453500281771536384", + "text": "RT @shit_hn_says: There are already a handful of SSL implementations, it isn't horribly hard to do.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue Apr 08 07:37:22 +0000 2014", + "id": 453436424079949825, + "id_str": "453436424079949825", + "text": "There are already a handful of SSL implementations, it isn't horribly hard to do.", + "source": "Twitter for Mac", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 752430234, + "id_str": "752430234" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 167, + "favorite_count": 63, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 167, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 05:03:33 +0000 2014", + "id": 453397713519144960, + "id_str": "453397713519144960", + "text": "RT @titanous: I just pushed heartbleeder, a tool for testing for CVE-2014-0160 (heartbleed) locally: https://t.co/ttIfQ8gNK9", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue Apr 08 04:41:34 +0000 2014", + "id": 453392182356217856, + "id_str": "453392182356217856", + "text": "I just pushed heartbleeder, a tool for testing for CVE-2014-0160 (heartbleed) locally: https://t.co/ttIfQ8gNK9", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 24187338, + "id_str": "24187338" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 133, + "favorite_count": 108, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "https://t.co/ttIfQ8gNK9", + "expanded_url": "https://github.com/titanous/heartbleeder", + "display_url": "github.com/titanous/heart…", + "indices": [ + 87, + 110 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 133, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 05:02:27 +0000 2014", + "id": 453397437127065601, + "id_str": "453397437127065601", + "text": "RT @emilyst: Fictitious git documentation via Markov chains. Refresh for plausible hilarity! http://t.co/p66fqA6kcg", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue Apr 08 04:21:50 +0000 2014", + "id": 453387215331401728, + "id_str": "453387215331401728", + "text": "Fictitious git documentation via Markov chains. Refresh for plausible hilarity! http://t.co/p66fqA6kcg", + "source": "Tweetbot for Mac", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 17088295, + "id_str": "17088295" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 73, + "favorite_count": 39, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/p66fqA6kcg", + "expanded_url": "http://www.antichipotle.com/git/", + "display_url": "antichipotle.com/git/", + "indices": [ + 80, + 102 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": true, + "possibly_sensitive": true, + "lang": "en" + }, + "retweet_count": 73, + "favorite_count": 0, + "favorited": false, + "retweeted": true, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 04:54:28 +0000 2014", + "id": 453395426671337472, + "id_str": "453395426671337472", + "text": "Logged into my server to run updates; apt lock was already held by cron. Seems the update server is really slow for some reason…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 4, + "favorite_count": 5, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 04:46:29 +0000 2014", + "id": 453393418073669633, + "id_str": "453393418073669633", + "text": "RT @nelhage: Ah-ha, no, I misread. It does read off the end of a malloc(). Yep, we're probably doomed.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue Apr 08 04:36:44 +0000 2014", + "id": 453390966078976000, + "id_str": "453390966078976000", + "text": "Ah-ha, no, I misread. It does read off the end of a malloc(). Yep, we're probably doomed.", + "source": "Twitter for Android", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 11806222, + "id_str": "11806222" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 9, + "favorite_count": 12, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 9, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 04:43:39 +0000 2014", + "id": 453392706392571905, + "id_str": "453392706392571905", + "text": "RT @hashbreaker: \"On the practical exploitability of Dual EC in TLS implementations\" research paper is properly online now: https://t.co/SU…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Mon Apr 07 16:30:15 +0000 2014", + "id": 453208142307160064, + "id_str": "453208142307160064", + "text": "\"On the practical exploitability of Dual EC in TLS implementations\" research paper is properly online now: https://t.co/SUWQ82r4kR", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 58326841, + "id_str": "58326841" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 58, + "favorite_count": 37, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "https://t.co/SUWQ82r4kR", + "expanded_url": "https://projectbullrun.org/dual-ec/documents/dualectls-20140407.pdf", + "display_url": "projectbullrun.org/dual-ec/docume…", + "indices": [ + 107, + 130 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 58, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 04:42:23 +0000 2014", + "id": 453392385566064640, + "id_str": "453392385566064640", + "text": "Testing imgur seems to break http://t.co/VtEqQzOZc7 ? Hope I didn’t just accidentally imgur, they’re a bit fragile", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 04:36:27 +0000 2014", + "id": 453390895451471873, + "id_str": "453390895451471873", + "text": "RT @j4cob: Congrats everybody, you've patched your web server. Did you remember to patch your mail server?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue Apr 08 04:36:16 +0000 2014", + "id": 453390848747511809, + "id_str": "453390848747511809", + "text": "Congrats everybody, you've patched your web server. Did you remember to patch your mail server?", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 41329897, + "id_str": "41329897" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 47, + "favorite_count": 22, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 47, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 04:36:03 +0000 2014", + "id": 453390793232097280, + "id_str": "453390793232097280", + "text": "RT @eevee: @textfiles ouch, 30 days is not a lot of time for a \"dns going down\" announcement either", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue Apr 08 04:35:00 +0000 2014", + "id": 453390529682612224, + "id_str": "453390529682612224", + "text": "@textfiles ouch, 30 days is not a lot of time for a \"dns going down\" announcement either", + "source": "Twirssi", + "truncated": false, + "in_reply_to_status_id": 453387341424787456, + "in_reply_to_status_id_str": "453387341424787456", + "in_reply_to_user_id": 1465481, + "in_reply_to_user_id_str": "1465481", + "in_reply_to_screen_name": "textfiles", + "user": { + "id": 14412937, + "id_str": "14412937" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 1, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "textfiles", + "name": "Jason Scott", + "id": 1465481, + "id_str": "1465481", + "indices": [ + 0, + 10 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 2, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 04:35:58 +0000 2014", + "id": 453390774684876800, + "id_str": "453390774684876800", + "text": "RT @textfiles: Spoiler alert: The http://t.co/1M8wmzQLtX free DNS shutdown on may 7 is going to completely trash a layer of web for good.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue Apr 08 04:22:20 +0000 2014", + "id": 453387341424787456, + "id_str": "453387341424787456", + "text": "Spoiler alert: The http://t.co/1M8wmzQLtX free DNS shutdown on may 7 is going to completely trash a layer of web for good.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 1465481, + "id_str": "1465481" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 85, + "favorite_count": 21, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/1M8wmzQLtX", + "expanded_url": "http://dyndns.org", + "display_url": "dyndns.org", + "indices": [ + 19, + 41 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 85, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 04:32:26 +0000 2014", + "id": 453389885450502144, + "id_str": "453389885450502144", + "text": ".@chriseng the bug scheduled itself to leak right when all the infoseccers are out drinking at Source, of course.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453388838757761024, + "in_reply_to_status_id_str": "453388838757761024", + "in_reply_to_user_id": 13752192, + "in_reply_to_user_id_str": "13752192", + "in_reply_to_screen_name": "chriseng", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 5, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 04:30:51 +0000 2014", + "id": 453389485120954369, + "id_str": "453389485120954369", + "text": "@chriseng @hotelzululima you got something you wanna say, boss?!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453388418685616128, + "in_reply_to_status_id_str": "453388418685616128", + "in_reply_to_user_id": 13752192, + "in_reply_to_user_id_str": "13752192", + "in_reply_to_screen_name": "chriseng", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 04:30:00 +0000 2014", + "id": 453389273337958400, + "id_str": "453389273337958400", + "text": "@SamDoran http://t.co/VtEqQzOZc7", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453387166287417344, + "in_reply_to_status_id_str": "453387166287417344", + "in_reply_to_user_id": 15060869, + "in_reply_to_user_id_str": "15060869", + "in_reply_to_screen_name": "SamDoran", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Tue Apr 08 04:11:33 +0000 2014", + "id": 453384630180524033, + "id_str": "453384630180524033", + "text": "@8BitAce it’s not the patch I’m concerned with per se", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453384532037623808, + "in_reply_to_status_id_str": "453384532037623808", + "in_reply_to_user_id": 16378721, + "in_reply_to_user_id_str": "16378721", + "in_reply_to_screen_name": "8BitAce", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 04:08:41 +0000 2014", + "id": 453383905408987137, + "id_str": "453383905408987137", + "text": "@OhMeadhbh amen", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453383836852686848, + "in_reply_to_status_id_str": "453383836852686848", + "in_reply_to_user_id": 112524101, + "in_reply_to_user_id_str": "112524101", + "in_reply_to_screen_name": "OhMeadhbh", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Tue Apr 08 04:07:42 +0000 2014", + "id": 453383657294934016, + "id_str": "453383657294934016", + "text": "It is too late at night to even pretend to try to read OpenSSL source code sorry", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 7, + "favorite_count": 11, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 04:06:49 +0000 2014", + "id": 453383437131726848, + "id_str": "453383437131726848", + "text": "RT @nelhage: Does openssl ever call free() on buffers containing key material in normal circumstances? I'm pretty confident that's the crux…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue Apr 08 04:03:18 +0000 2014", + "id": 453382550610661376, + "id_str": "453382550610661376", + "text": "Does openssl ever call free() on buffers containing key material in normal circumstances? I'm pretty confident that's the crux of the matter", + "source": "Twitter for Android", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 11806222, + "id_str": "11806222" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 8, + "favorite_count": 4, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 8, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 04:06:01 +0000 2014", + "id": 453383236270702592, + "id_str": "453383236270702592", + "text": "@dan_crowley in theory. But I’m taking a shower and going to bed because I’m an early morning helper monkey", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453378846210154496, + "in_reply_to_status_id_str": "453378846210154496", + "in_reply_to_user_id": 20532907, + "in_reply_to_user_id_str": "20532907", + "in_reply_to_screen_name": "dan_crowley", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 04:05:03 +0000 2014", + "id": 453382991822479360, + "id_str": "453382991822479360", + "text": "@jjarmoc @jcran I got http://t.co/3UzSTzIzY7", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453377047545401345, + "in_reply_to_status_id_str": "453377047545401345", + "in_reply_to_user_id": 17021413, + "in_reply_to_user_id_str": "17021413", + "in_reply_to_screen_name": "jjarmoc", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 04:03:34 +0000 2014", + "id": 453382618277765120, + "id_str": "453382618277765120", + "text": "RT @KismetWireless: Bets on how many people update openssl and don't restart all the running services that link the old copy?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue Apr 08 03:19:05 +0000 2014", + "id": 453371426532495360, + "id_str": "453371426532495360", + "text": "Bets on how many people update openssl and don't restart all the running services that link the old copy?", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 463264800, + "id_str": "463264800" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 39, + "favorite_count": 21, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 39, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 04:02:58 +0000 2014", + "id": 453382466590752768, + "id_str": "453382466590752768", + "text": "@adamcaudill @agl__ the defender doesn’t have much control over what’s revealed either though.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453371968331718656, + "in_reply_to_status_id_str": "453371968331718656", + "in_reply_to_user_id": 23242312, + "in_reply_to_user_id_str": "23242312", + "in_reply_to_screen_name": "adamcaudill", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 03:55:48 +0000 2014", + "id": 453380664847781888, + "id_str": "453380664847781888", + "text": "@angrybrad http://t.co/VtEqQzOZc7\n\nNote I am on an iPad and not equipped to examine its legitness deeply", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453380384869195776, + "in_reply_to_status_id_str": "453380384869195776", + "in_reply_to_user_id": 14263637, + "in_reply_to_user_id_str": "14263637", + "in_reply_to_screen_name": "angrybrad", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 03:54:38 +0000 2014", + "id": 453380371481362432, + "id_str": "453380371481362432", + "text": "@mcclure111 there are a few other databases ie this one is just numerical http://t.co/KFFETjcLqr", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453379720206635009, + "in_reply_to_status_id_str": "453379720206635009", + "in_reply_to_user_id": 312426579, + "in_reply_to_user_id_str": "312426579", + "in_reply_to_screen_name": "mcclure111", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 03:51:40 +0000 2014", + "id": 453379625260158976, + "id_str": "453379625260158976", + "text": "@mcclure111 http://t.co/ZyaMAFUtsk", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453379477989765121, + "in_reply_to_status_id_str": "453379477989765121", + "in_reply_to_user_id": 312426579, + "in_reply_to_user_id_str": "312426579", + "in_reply_to_screen_name": "mcclure111", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Tue Apr 08 03:48:00 +0000 2014", + "id": 453378702014177280, + "id_str": "453378702014177280", + "text": "In this RT: always check with someone else’s server first, kids! http://t.co/40sbojH1Nj", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 58, + "favorite_count": 30, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 03:47:18 +0000 2014", + "id": 453378526209900544, + "id_str": "453378526209900544", + "text": "RT @mister_borogove: Test for Heartbleed vuln (use at your own risk) http://t.co/Ov5tbTosGZ", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue Apr 08 02:19:13 +0000 2014", + "id": 453356357316395009, + "id_str": "453356357316395009", + "text": "Test for Heartbleed vuln (use at your own risk) http://t.co/Ov5tbTosGZ", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 16798412, + "id_str": "16798412" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 32, + "favorite_count": 16, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/Ov5tbTosGZ", + "expanded_url": "http://filippo.io/Heartbleed/", + "display_url": "filippo.io/Heartbleed/", + "indices": [ + 48, + 70 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": true, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 32, + "favorite_count": 0, + "favorited": false, + "retweeted": true, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 03:42:56 +0000 2014", + "id": 453377424651472898, + "id_str": "453377424651472898", + "text": "RT @j4cob: Please RT: A lot of people think this is test for Heartbleed vuln. It's not. Just tests whether disabled heartbeats. https://t.c…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue Apr 08 02:11:48 +0000 2014", + "id": 453354492772102144, + "id_str": "453354492772102144", + "text": "Please RT: A lot of people think this is test for Heartbleed vuln. It's not. Just tests whether disabled heartbeats. https://t.co/BnXZFchnBi", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 41329897, + "id_str": "41329897" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 11, + "favorite_count": 3, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "https://t.co/BnXZFchnBi", + "expanded_url": "https://twitter.com/j4cob/status/453293397961228288", + "display_url": "twitter.com/j4cob/status/4…", + "indices": [ + 117, + 140 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 11, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 03:17:34 +0000 2014", + "id": 453371043848400896, + "id_str": "453371043848400896", + "text": "-- it was a feedback form. Or that's what they want me to think", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 6, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 03:14:09 +0000 2014", + "id": 453370182464184320, + "id_str": "453370182464184320", + "text": "Someone left a QR code in the staff room. Don't know what it is. I'm going in --", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 9, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 03:13:07 +0000 2014", + "id": 453369924728422400, + "id_str": "453369924728422400", + "text": ".@zigg I am an ongoing experiment in terrible opsec", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 453369387891056640, + "in_reply_to_status_id_str": "453369387891056640", + "in_reply_to_user_id": 14877471, + "in_reply_to_user_id_str": "14877471", + "in_reply_to_screen_name": "zigg", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 03:08:22 +0000 2014", + "id": 453368728949112833, + "id_str": "453368728949112833", + "text": "@hotelzululima me. I'm the one who never drinks. Nor weed! I'm shockingly angelic.", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 453368489139384320, + "in_reply_to_status_id_str": "453368489139384320", + "in_reply_to_user_id": 2369363294, + "in_reply_to_user_id_str": "2369363294", + "in_reply_to_screen_name": "hotelzululima", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 03:06:27 +0000 2014", + "id": 453368246268612609, + "id_str": "453368246268612609", + "text": "Unless they get the mocha too. No one suggest that to them.", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 03:05:23 +0000 2014", + "id": 453367977183043584, + "id_str": "453367977183043584", + "text": "Some day the APT will poison all the alcohol at an infosec convention and I'll be the last appsec expert in the world", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 5, + "favorite_count": 15, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 02:55:13 +0000 2014", + "id": 453365416908582913, + "id_str": "453365416908582913", + "text": "@ternus two gigabytes?! Come on http://t.co/QxT5taOp9d", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 3170281, + "in_reply_to_user_id_str": "3170281", + "in_reply_to_screen_name": "ternus", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 01:59:34 +0000 2014", + "id": 453351414132387840, + "id_str": "453351414132387840", + "text": "@szakulec it’s always been like this. A nonstop hit parade for years. But now it gets more media attention", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453351171974254592, + "in_reply_to_status_id_str": "453351171974254592", + "in_reply_to_user_id": 151256073, + "in_reply_to_user_id_str": "151256073", + "in_reply_to_screen_name": "szakulec", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 01:59:05 +0000 2014", + "id": 453351291277033472, + "id_str": "453351291277033472", + "text": "@Packetknife give her a chocolate milkshake (or so) on me plz", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453346366056833025, + "in_reply_to_status_id_str": "453346366056833025", + "in_reply_to_user_id": 19564254, + "in_reply_to_user_id_str": "19564254", + "in_reply_to_screen_name": "Packetknife", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 01:58:20 +0000 2014", + "id": 453351101270876160, + "id_str": "453351101270876160", + "text": "RT @mik235: You all know that realistically nobody's revoking their cert - mostly because it's almost impossible to do so.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue Apr 08 01:32:51 +0000 2014", + "id": 453344690121609216, + "id_str": "453344690121609216", + "text": "You all know that realistically nobody's revoking their cert - mostly because it's almost impossible to do so.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 335136122, + "id_str": "335136122" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 17, + "favorite_count": 6, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 17, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 01:55:38 +0000 2014", + "id": 453350421697159169, + "id_str": "453350421697159169", + "text": "@_wirepair frankly I will take this over trying to beat CVEs into sysadmins’ heads any day", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453339887576825857, + "in_reply_to_status_id_str": "453339887576825857", + "in_reply_to_user_id": 253384212, + "in_reply_to_user_id_str": "253384212", + "in_reply_to_screen_name": "_wirepair", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 01:51:49 +0000 2014", + "id": 453349462577283072, + "id_str": "453349462577283072", + "text": ".@jacobian @hypatiadotca \nHow screwed are we now?\nHow screwed are we now?\nHow screwed is the internet?\nShould I just cry now? 😭", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453335928015429632, + "in_reply_to_status_id_str": "453335928015429632", + "in_reply_to_user_id": 18824526, + "in_reply_to_user_id_str": "18824526", + "in_reply_to_screen_name": "jacobian", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 14, + "favorite_count": 13, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 01:50:45 +0000 2014", + "id": 453349194246684672, + "id_str": "453349194246684672", + "text": "RT @jacobian: Happy 0-day to you /\nHappy 0-day to you /\nHappy 0-day dear netizens /\nHappy 0-day to you!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue Apr 08 00:58:02 +0000 2014", + "id": 453335928015429632, + "id_str": "453335928015429632", + "text": "Happy 0-day to you /\nHappy 0-day to you /\nHappy 0-day dear netizens /\nHappy 0-day to you!", + "source": "Tweetbot for Mac", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 18824526, + "id_str": "18824526" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 142, + "favorite_count": 50, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 142, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 01:46:44 +0000 2014", + "id": 453348184304414720, + "id_str": "453348184304414720", + "text": "@marginoferror burn it all. None of them can be trusted.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453348060546867200, + "in_reply_to_status_id_str": "453348060546867200", + "in_reply_to_user_id": 22039951, + "in_reply_to_user_id_str": "22039951", + "in_reply_to_screen_name": "marginoferror", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 01:41:38 +0000 2014", + "id": 453346899375169536, + "id_str": "453346899375169536", + "text": "I no longer even have the capacity to be surprised by or upset with SSL. You could tell me it murders children and I would be like k", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 131, + "favorite_count": 97, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 01:24:38 +0000 2014", + "id": 453342621591928832, + "id_str": "453342621591928832", + "text": "@thatcks @wiretapped there is literally no way it’s not being exploited this very second. Literally no way", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453341868739543040, + "in_reply_to_status_id_str": "453341868739543040", + "in_reply_to_user_id": 431988302, + "in_reply_to_user_id_str": "431988302", + "in_reply_to_screen_name": "thatcks", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 01:24:07 +0000 2014", + "id": 453342494265446400, + "id_str": "453342494265446400", + "text": "@chriseng @dildog yes. I did not die. Success!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453342364464340992, + "in_reply_to_status_id_str": "453342364464340992", + "in_reply_to_user_id": 13752192, + "in_reply_to_user_id_str": "13752192", + "in_reply_to_screen_name": "chriseng", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 01:23:00 +0000 2014", + "id": 453342211263201280, + "id_str": "453342211263201280", + "text": "RT @TCFoxtaur: @wiretapped @0xabad1dea It's a bad day to be a CRL file.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue Apr 08 01:18:05 +0000 2014", + "id": 453340974823927808, + "id_str": "453340974823927808", + "text": "@wiretapped @0xabad1dea It's a bad day to be a CRL file.", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 453326225030021120, + "in_reply_to_status_id_str": "453326225030021120", + "in_reply_to_user_id": 143979672, + "in_reply_to_user_id_str": "143979672", + "in_reply_to_screen_name": "wiretapped", + "user": { + "id": 17097811, + "id_str": "17097811" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 10, + "favorite_count": 7, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "wiretapped", + "name": "Leif Ryge", + "id": 143979672, + "id_str": "143979672", + "indices": [ + 0, + 11 + ] + }, + { + "screen_name": "0xabad1dea", + "name": "MeliSSL ", + "id": 126030998, + "id_str": "126030998", + "indices": [ + 12, + 23 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 10, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 01:09:47 +0000 2014", + "id": 453338886169976832, + "id_str": "453338886169976832", + "text": "RT @wiretapped: if i'm understanding this correctly, about a third of the TLS servers on the internet need to generate new keys and revoke …", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue Apr 08 00:19:29 +0000 2014", + "id": 453326225030021120, + "id_str": "453326225030021120", + "text": "if i'm understanding this correctly, about a third of the TLS servers on the internet need to generate new keys and revoke their old certs?", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 143979672, + "id_str": "143979672" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 98, + "favorite_count": 27, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 98, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 01:08:59 +0000 2014", + "id": 453338683417317376, + "id_str": "453338683417317376", + "text": "RT @jcran: With \"openssl version -a\" you can see the built time (which should be today). #heartbleed", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue Apr 08 00:16:32 +0000 2014", + "id": 453325484143566849, + "id_str": "453325484143566849", + "text": "With \"openssl version -a\" you can see the built time (which should be today). #heartbleed", + "source": "TweetDeck", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 6300492, + "id_str": "6300492" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 27, + "favorite_count": 8, + "entities": { + "hashtags": [ + { + "text": "heartbleed", + "indices": [ + 78, + 89 + ] + } + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 27, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 01:04:04 +0000 2014", + "id": 453337447154581504, + "id_str": "453337447154581504", + "text": "@hinanawi_chan @m1sp what we’re saying, Mispy, is we want your babies", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453336868042444800, + "in_reply_to_status_id_str": "453336868042444800", + "in_reply_to_user_id": 2336014178, + "in_reply_to_user_id_str": "2336014178", + "in_reply_to_screen_name": "hinanawi_chan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 01:00:58 +0000 2014", + "id": 453336667106316288, + "id_str": "453336667106316288", + "text": "@hinanawi_chan @m1sp I would love and cherish a tiny mispy of my own.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453336493453365248, + "in_reply_to_status_id_str": "453336493453365248", + "in_reply_to_user_id": 2336014178, + "in_reply_to_user_id_str": "2336014178", + "in_reply_to_screen_name": "hinanawi_chan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 00:59:53 +0000 2014", + "id": 453336392375230464, + "id_str": "453336392375230464", + "text": "@m1sp we want that litter of tiny mispies", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453336224522960896, + "in_reply_to_status_id_str": "453336224522960896", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 00:58:27 +0000 2014", + "id": 453336031874408448, + "id_str": "453336031874408448", + "text": "@m1sp you have a glow about you, Mispy. Are you pregnant?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453314151679406081, + "in_reply_to_status_id_str": "453314151679406081", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 00:54:46 +0000 2014", + "id": 453335106477109248, + "id_str": "453335106477109248", + "text": "@DrPizza if it’s really old then you missed the vulnerable window! Huzzah", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453308305759170560, + "in_reply_to_status_id_str": "453308305759170560", + "in_reply_to_user_id": 11375732, + "in_reply_to_user_id_str": "11375732", + "in_reply_to_screen_name": "DrPizza", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 00:31:01 +0000 2014", + "id": 453329129795248128, + "id_str": "453329129795248128", + "text": "@hectoroid I'm at a conference", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 453325415399305216, + "in_reply_to_status_id_str": "453325415399305216", + "in_reply_to_user_id": 348569430, + "in_reply_to_user_id_str": "348569430", + "in_reply_to_screen_name": "hectoroid", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 00:17:49 +0000 2014", + "id": 453325807243767808, + "id_str": "453325807243767808", + "text": "@innismir so I take it you haven’t seen the lobby yet…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453325558932590592, + "in_reply_to_status_id_str": "453325558932590592", + "in_reply_to_user_id": 14061445, + "in_reply_to_user_id_str": "14061445", + "in_reply_to_screen_name": "innismir", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 00:17:01 +0000 2014", + "id": 453325607221600256, + "id_str": "453325607221600256", + "text": "@awpiii got it chief, on my way", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453325352329551872, + "in_reply_to_status_id_str": "453325352329551872", + "in_reply_to_user_id": 15701759, + "in_reply_to_user_id_str": "15701759", + "in_reply_to_screen_name": "awpiii", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 00:14:53 +0000 2014", + "id": 453325068027039744, + "id_str": "453325068027039744", + "text": "So I showed up kind of late to help with setup and… is anyone even here? Hello? I can’t find anyone. I’m so alone #srcbos", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 00:09:43 +0000 2014", + "id": 453323767419527168, + "id_str": "453323767419527168", + "text": "RT @matthew_d_green: Who needs the NSA when we've got OpenSSL.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Mon Apr 07 20:28:44 +0000 2014", + "id": 453268156975689729, + "id_str": "453268156975689729", + "text": "Who needs the NSA when we've got OpenSSL.", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 106234268, + "id_str": "106234268" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 367, + "favorite_count": 209, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 367, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 08 00:04:04 +0000 2014", + "id": 453322346498375680, + "id_str": "453322346498375680", + "text": "Hey things have been pretty quiet on the infosec disaster frOH GODS DANGIT OPENSSL http://t.co/EaHffLjSlh", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 64, + "favorite_count": 27, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 07 23:55:41 +0000 2014", + "id": 453320235412914177, + "id_str": "453320235412914177", + "text": "@chriseng @dildog are you at the conference boss?? Help I'm lost", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 13752192, + "in_reply_to_user_id_str": "13752192", + "in_reply_to_screen_name": "chriseng", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 07 23:39:12 +0000 2014", + "id": 453316087011360768, + "id_str": "453316087011360768", + "text": "@tapbot_paul me too, I'm just calling back to when I was at the rural hotel and realized I *was* the threat", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 453315663827050496, + "in_reply_to_status_id_str": "453315663827050496", + "in_reply_to_user_id": 18247541, + "in_reply_to_user_id_str": "18247541", + "in_reply_to_screen_name": "tapbot_paul", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 07 23:38:21 +0000 2014", + "id": 453315877094846466, + "id_str": "453315877094846466", + "text": "@akopa I am the exact opposite of a secret agent. I might as well log my gps coordinates to a public server", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 453315387694649344, + "in_reply_to_status_id_str": "453315387694649344", + "in_reply_to_user_id": 14314798, + "in_reply_to_user_id_str": "14314798", + "in_reply_to_screen_name": "akopa", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 07 23:36:45 +0000 2014", + "id": 453315470926827520, + "id_str": "453315470926827520", + "text": ".@tapbot_paul I'm at an information security conference. Being vicious to each other is considered fair game.", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 453315093594664961, + "in_reply_to_status_id_str": "453315093594664961", + "in_reply_to_user_id": 18247541, + "in_reply_to_user_id_str": "18247541", + "in_reply_to_screen_name": "tapbot_paul", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 07 23:34:07 +0000 2014", + "id": 453314810726580224, + "id_str": "453314810726580224", + "text": "Another hotel with wholly unencrypted wifi; but the risk profile at this one might be SLIGHTLY higher.", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 07 23:31:05 +0000 2014", + "id": 453314044792156160, + "id_str": "453314044792156160", + "text": "#sourceboston due to renovations, checkin is currently in the bar and the bar is in ???. Not that I have any use for it.", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 07 23:29:51 +0000 2014", + "id": 453313734489149440, + "id_str": "453313734489149440", + "text": "I hate/fear cities more than I can possibly say and I'm pretty ;$&@ triggered right now", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 07 22:30:12 +0000 2014", + "id": 453298724828368896, + "id_str": "453298724828368896", + "text": "@soapturtle who is this Ox of which you speak :) that glyph is so rotund!", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 453294470470332416, + "in_reply_to_status_id_str": "453294470470332416", + "in_reply_to_user_id": 19296599, + "in_reply_to_user_id_str": "19296599", + "in_reply_to_screen_name": "soapturtle", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 07 22:28:50 +0000 2014", + "id": 453298381440688128, + "id_str": "453298381440688128", + "text": "@MichaelCRaeder oh my relatives did that when inviting me to their daughter's wedding. It made me EXTREMELY angry.", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 453296600777900032, + "in_reply_to_status_id_str": "453296600777900032", + "in_reply_to_user_id": 459343341, + "in_reply_to_user_id_str": "459343341", + "in_reply_to_screen_name": "MichaelCRaeder", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 07 22:09:13 +0000 2014", + "id": 453293444291899392, + "id_str": "453293444291899392", + "text": "Just got mail (actual paper mail) addressed to Code Ferret and Melissa. Offended. Omitting the wife’s handle is so 19th century.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 11, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 07 21:20:42 +0000 2014", + "id": 453281233276248064, + "id_str": "453281233276248064", + "text": "@m1sp Hayr's birthday is right in the middle of book 2", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 453279699884453888, + "in_reply_to_status_id_str": "453279699884453888", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 07 21:20:42 +0000 2014", + "id": 453281233276248064, + "id_str": "453281233276248064", + "text": "@m1sp Hayr's birthday is right in the middle of book 2", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 453279699884453888, + "in_reply_to_status_id_str": "453279699884453888", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 07 21:11:35 +0000 2014", + "id": 453278941261070337, + "id_str": "453278941261070337", + "text": "@m1sp I'm most concerned about the Lamarckian takeover of the species by the few % of people who were literate these past few thousand years", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 453278656584892416, + "in_reply_to_status_id_str": "453278656584892416", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 07 21:05:19 +0000 2014", + "id": 453277361975619584, + "id_str": "453277361975619584", + "text": "@m1sp @Vivicasus what are you talking about she's cruel, vindictive and awash in the blood of men who hit on her, this is clearly me", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 453276999826415616, + "in_reply_to_status_id_str": "453276999826415616", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 07 21:03:13 +0000 2014", + "id": 453276834000818176, + "id_str": "453276834000818176", + "text": "@zhuowei @m1sp I don't know. She just feels \"autumn\" to me. There's no real-world basis for it, just thematic ones.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 453276484249976832, + "in_reply_to_status_id_str": "453276484249976832", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 07 20:54:01 +0000 2014", + "id": 453274517906137088, + "id_str": "453274517906137088", + "text": "@m1sp Ismyrn really felt like a September baby, but that violates the constraint of older than Barsamin but still 16 in October of 836 :(", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 07 20:52:02 +0000 2014", + "id": 453274020088385537, + "id_str": "453274020088385537", + "text": "@m1sp http://t.co/BZP3NhZvnl", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Mon Apr 07 20:26:11 +0000 2014", + "id": 453267515209445376, + "id_str": "453267515209445376", + "text": "@Shufflejoy ohh, I’m addicted to art, information, and human communication. How terrible.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453266273770557440, + "in_reply_to_status_id_str": "453266273770557440", + "in_reply_to_user_id": 1567524811, + "in_reply_to_user_id_str": "1567524811", + "in_reply_to_screen_name": "Shufflejoy", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 07 20:19:54 +0000 2014", + "id": 453265932065177601, + "id_str": "453265932065177601", + "text": "@mateornaut .... ..... ................................\n\n*dead*", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 453265766461091840, + "in_reply_to_status_id_str": "453265766461091840", + "in_reply_to_user_id": 1620641965, + "in_reply_to_user_id_str": "1620641965", + "in_reply_to_screen_name": "mateornaut", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 07 20:17:05 +0000 2014", + "id": 453265223781470208, + "id_str": "453265223781470208", + "text": "@sakjur I probably shouldn't say on twitter my full opinions on the matter", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 453264374074204160, + "in_reply_to_status_id_str": "453264374074204160", + "in_reply_to_user_id": 63478005, + "in_reply_to_user_id_str": "63478005", + "in_reply_to_screen_name": "sakjur", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 07 20:13:13 +0000 2014", + "id": 453264250283524096, + "id_str": "453264250283524096", + "text": "@sakjur (believe me, if they'd let me use my own hardware I would)", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 453263647096471553, + "in_reply_to_status_id_str": "453263647096471553", + "in_reply_to_user_id": 63478005, + "in_reply_to_user_id_str": "63478005", + "in_reply_to_screen_name": "sakjur", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 07 20:12:46 +0000 2014", + "id": 453264140447285248, + "id_str": "453264140447285248", + "text": "@mateornaut :( https://t.co/gL53aqqo3p", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 453263926415724544, + "in_reply_to_status_id_str": "453263926415724544", + "in_reply_to_user_id": 1620641965, + "in_reply_to_user_id_str": "1620641965", + "in_reply_to_screen_name": "mateornaut", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Mon Apr 07 20:11:33 +0000 2014", + "id": 453263831511601152, + "id_str": "453263831511601152", + "text": "@sakjur this isn't *mine*. It's the bottom of the barrel thing that work gave me because there's a moratorium on buying new hardware.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 453263647096471553, + "in_reply_to_status_id_str": "453263647096471553", + "in_reply_to_user_id": 63478005, + "in_reply_to_user_id_str": "63478005", + "in_reply_to_screen_name": "sakjur", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 07 19:22:10 +0000 2014", + "id": 453251402455056384, + "id_str": "453251402455056384", + "text": "@Shufflejoy it might just be the translation? There are crews who always use the “edgiest” interpretation", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453250697338060801, + "in_reply_to_status_id_str": "453250697338060801", + "in_reply_to_user_id": 1567524811, + "in_reply_to_user_id_str": "1567524811", + "in_reply_to_screen_name": "Shufflejoy", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 07 19:17:21 +0000 2014", + "id": 453250191911821312, + "id_str": "453250191911821312", + "text": "@ohthisisnarida @m1sp that’s @protosphere_’s shelf, at least allegedly.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453249350051713024, + "in_reply_to_status_id_str": "453249350051713024", + "in_reply_to_user_id": 2244451676, + "in_reply_to_user_id_str": "2244451676", + "in_reply_to_screen_name": "ohthisisnarida", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 07 18:47:11 +0000 2014", + "id": 453242601467305984, + "id_str": "453242601467305984", + "text": "@fearingamerican not my fault. But honestly, can you blame IT for not wanting to support 8? :\\", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453242463293943808, + "in_reply_to_status_id_str": "453242463293943808", + "in_reply_to_user_id": 102856668, + "in_reply_to_user_id_str": "102856668", + "in_reply_to_screen_name": "fearingamerican", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 07 18:45:56 +0000 2014", + "id": 453242284390490112, + "id_str": "453242284390490112", + "text": "One more creepy ghost photograph, because I couldn’t resist http://t.co/ag5Csasw7t", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 5, + "favorite_count": 10, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 07 18:35:52 +0000 2014", + "id": 453239750921814016, + "id_str": "453239750921814016", + "text": "@dijkstracula @vogon “the market should decide! By which I mean rich people. Not angry plebs.”", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453239370468696065, + "in_reply_to_status_id_str": "453239370468696065", + "in_reply_to_user_id": 14216743, + "in_reply_to_user_id_str": "14216743", + "in_reply_to_screen_name": "dijkstracula", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 07 18:30:32 +0000 2014", + "id": 453238412242591744, + "id_str": "453238412242591744", + "text": "@demize95 @Shufflejoy I think it really brings out my eyes. http://t.co/YsG1QuZ9T5", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453238175830659072, + "in_reply_to_status_id_str": "453238175830659072", + "in_reply_to_user_id": 137133048, + "in_reply_to_user_id_str": "137133048", + "in_reply_to_screen_name": "demize95", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 07 18:20:22 +0000 2014", + "id": 453235851666157568, + "id_str": "453235851666157568", + "text": "RT @agl__: Time to update all OpenSSL 1.0.1 to 1.0.1g to fix CVE-2014-0160: http://t.co/JjmiMiuoPG", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Mon Apr 07 18:18:01 +0000 2014", + "id": 453235260520542208, + "id_str": "453235260520542208", + "text": "Time to update all OpenSSL 1.0.1 to 1.0.1g to fix CVE-2014-0160: http://t.co/JjmiMiuoPG", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 235129029, + "id_str": "235129029" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 190, + "favorite_count": 47, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/JjmiMiuoPG", + "expanded_url": "http://www.openssl.org/news/vulnerabilities.html#2014-0160", + "display_url": "openssl.org/news/vulnerabi…", + "indices": [ + 65, + 87 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 190, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 07 18:16:48 +0000 2014", + "id": 453234953736974336, + "id_str": "453234953736974336", + "text": ".@Shufflejoy #iamdoingprogramming http://t.co/1ksQZIGgsF", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453233146654257153, + "in_reply_to_status_id_str": "453233146654257153", + "in_reply_to_user_id": 1567524811, + "in_reply_to_user_id_str": "1567524811", + "in_reply_to_screen_name": "Shufflejoy", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 10, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 07 18:03:04 +0000 2014", + "id": 453231497403973633, + "id_str": "453231497403973633", + "text": "RT @pourmecoffee: On this day in 2009 Vermont legalized gay marriage and today only 11 heterosexual couples remain, all remote primitive sy…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Mon Apr 07 13:04:27 +0000 2014", + "id": 453156349153935360, + "id_str": "453156349153935360", + "text": "On this day in 2009 Vermont legalized gay marriage and today only 11 heterosexual couples remain, all remote primitive syrup farmers.", + "source": "TweetDeck", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 16906137, + "id_str": "16906137" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 294, + "favorite_count": 281, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 294, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 07 17:59:43 +0000 2014", + "id": 453230654235619328, + "id_str": "453230654235619328", + "text": "Avenge… me… http://t.co/Ql8ey7VzWx", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 12, + "favorite_count": 30, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "fr" + }, + { + "created_at": "Mon Apr 07 17:39:52 +0000 2014", + "id": 453225658706300928, + "id_str": "453225658706300928", + "text": "#UIRage pressing \"enter\" in the cygwin package search box ended the search interface and began the installation. Super!", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 6, + "favorite_count": 6, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 07 17:38:08 +0000 2014", + "id": 453225225749282816, + "id_str": "453225225749282816", + "text": "@patient_0x00 massive understatement. Trying to compare the effects of literacy to the long-term population statistics of evolution is silly", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 453224166398111744, + "in_reply_to_status_id_str": "453224166398111744", + "in_reply_to_user_id": 1643671861, + "in_reply_to_user_id_str": "1643671861", + "in_reply_to_screen_name": "patient_0x00", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 07 17:21:12 +0000 2014", + "id": 453220963208142848, + "id_str": "453220963208142848", + "text": "@McGrewSecurity @integgroll you’re supposed to infer what they say about extrapolation from the provided data points.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453220426664411136, + "in_reply_to_status_id_str": "453220426664411136", + "in_reply_to_user_id": 13275122, + "in_reply_to_user_id_str": "13275122", + "in_reply_to_screen_name": "McGrewSecurity", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 07 17:19:06 +0000 2014", + "id": 453220434025394176, + "id_str": "453220434025394176", + "text": "@DarthNull just to stop being a creationist.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453220210108301312, + "in_reply_to_status_id_str": "453220210108301312", + "in_reply_to_user_id": 12287142, + "in_reply_to_user_id_str": "12287142", + "in_reply_to_screen_name": "DarthNull", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 07 17:18:41 +0000 2014", + "id": 453220330526760960, + "id_str": "453220330526760960", + "text": "@dsdude123 if you find .Net Runtime Optimization Service running on something other than Windows, consult a physician immediately", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453220124309196800, + "in_reply_to_status_id_str": "453220124309196800", + "in_reply_to_user_id": 1965863467, + "in_reply_to_user_id_str": "1965863467", + "in_reply_to_screen_name": "dsdude123", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 07 17:17:52 +0000 2014", + "id": 453220122820608001, + "id_str": "453220122820608001", + "text": "@DarthNull the way evolution works is very, VERY different from how 90%+ of people think it works.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453219767458230272, + "in_reply_to_status_id_str": "453219767458230272", + "in_reply_to_user_id": 12287142, + "in_reply_to_user_id_str": "12287142", + "in_reply_to_screen_name": "DarthNull", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 07 17:17:17 +0000 2014", + "id": 453219976003190784, + "id_str": "453219976003190784", + "text": "@DarthNull no offense buuuuut…. \n\n… I am not a degree-holding biologist but I went way out of my way to study evolutionary biology.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453219767458230272, + "in_reply_to_status_id_str": "453219767458230272", + "in_reply_to_user_id": 12287142, + "in_reply_to_user_id_str": "12287142", + "in_reply_to_screen_name": "DarthNull", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 07 17:15:34 +0000 2014", + "id": 453219542962274304, + "id_str": "453219542962274304", + "text": "@DarthNull #NotEvenWrong :\\ it’s not like all the rich educated people had kids and the massive amounts of illiterate people didn’t", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453218501206224896, + "in_reply_to_status_id_str": "453218501206224896", + "in_reply_to_user_id": 12287142, + "in_reply_to_user_id_str": "12287142", + "in_reply_to_screen_name": "DarthNull", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 07 17:10:32 +0000 2014", + "id": 453218277175857152, + "id_str": "453218277175857152", + "text": "@DarthNull no. That is not how evolution works.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453217999290642432, + "in_reply_to_status_id_str": "453217999290642432", + "in_reply_to_user_id": 12287142, + "in_reply_to_user_id_str": "12287142", + "in_reply_to_screen_name": "DarthNull", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 07 17:09:08 +0000 2014", + "id": 453217924720119808, + "id_str": "453217924720119808", + "text": "@DarthNull especially considering that for most of those thousands of years only a few % of all humans were literate.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453217172014530560, + "in_reply_to_status_id_str": "453217172014530560", + "in_reply_to_user_id": 12287142, + "in_reply_to_user_id_str": "12287142", + "in_reply_to_screen_name": "DarthNull", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 07 17:08:34 +0000 2014", + "id": 453217784085118976, + "id_str": "453217784085118976", + "text": "@DarthNull they’re slamming together individual brain development with implications of species evolution. That’s nonsense.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453217172014530560, + "in_reply_to_status_id_str": "453217172014530560", + "in_reply_to_user_id": 12287142, + "in_reply_to_user_id_str": "12287142", + "in_reply_to_screen_name": "DarthNull", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 07 17:05:05 +0000 2014", + "id": 453216904228782080, + "id_str": "453216904228782080", + "text": "@blowdart like a five year old who hacked Xbox ?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453216445048950784, + "in_reply_to_status_id_str": "453216445048950784", + "in_reply_to_user_id": 1847381, + "in_reply_to_user_id_str": "1847381", + "in_reply_to_screen_name": "blowdart", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 07 16:55:24 +0000 2014", + "id": 453214470853365760, + "id_str": "453214470853365760", + "text": "Found the checkmark to make it Not Do That. Woot.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 07 16:52:26 +0000 2014", + "id": 453213722639888384, + "id_str": "453213722639888384", + "text": "@zwetan yes but\n\nI haven’t actually started Chrome yet", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453212945926074368, + "in_reply_to_status_id_str": "453212945926074368", + "in_reply_to_user_id": 13692682, + "in_reply_to_user_id_str": "13692682", + "in_reply_to_screen_name": "zwetan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 07 16:48:03 +0000 2014", + "id": 453212619856683009, + "id_str": "453212619856683009", + "text": "Rebooted the machine. Chrome is using 115MB of RAM despite not actually having been opened. Massive preload caching?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 07 16:46:38 +0000 2014", + "id": 453212261566656513, + "id_str": "453212261566656513", + "text": "@frkbmb is that… the diablo font…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453211487570370560, + "in_reply_to_status_id_str": "453211487570370560", + "in_reply_to_user_id": 540721095, + "in_reply_to_user_id_str": "540721095", + "in_reply_to_screen_name": "frkbmb", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 07 16:41:05 +0000 2014", + "id": 453210867480686593, + "id_str": "453210867480686593", + "text": "@blowdart I suspect it was windows updates itself", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453209637525782528, + "in_reply_to_status_id_str": "453209637525782528", + "in_reply_to_user_id": 1847381, + "in_reply_to_user_id_str": "1847381", + "in_reply_to_screen_name": "blowdart", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 07 16:36:57 +0000 2014", + "id": 453209825040945152, + "id_str": "453209825040945152", + "text": "@blowdart literally the only thing I've installed on this machine since I got it is Steam (no games, just steam) and that was days ago.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 453209637525782528, + "in_reply_to_status_id_str": "453209637525782528", + "in_reply_to_user_id": 1847381, + "in_reply_to_user_id_str": "1847381", + "in_reply_to_screen_name": "blowdart", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 07 16:30:32 +0000 2014", + "id": 453208210523324416, + "id_str": "453208210523324416", + "text": "Oh, of course. The culprit for the total loss of system responsiveness is the notorious .Net Runtime Optimization Service. Very optimal.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 4, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 07 16:25:38 +0000 2014", + "id": 453206977611829248, + "id_str": "453206977611829248", + "text": "The Terrible Worktop hemorrhages battery while asleep. It takes several seconds to respond to a right click. What god did I anger ?!", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 07 16:08:47 +0000 2014", + "id": 453202739963912192, + "id_str": "453202739963912192", + "text": "@demize95 we are having a discussion about the meaning and value of integrity over in @ID_AA_Carmack’s mentions", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453202465660624896, + "in_reply_to_status_id_str": "453202465660624896", + "in_reply_to_user_id": 137133048, + "in_reply_to_user_id_str": "137133048", + "in_reply_to_screen_name": "demize95", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 07 16:07:14 +0000 2014", + "id": 453202348807307264, + "id_str": "453202348807307264", + "text": "@puellavulnerata well, the programmer kind of celebrity. But a hundred and thirty thousand followers is a hundred and thirty thousand", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453202217332264960, + "in_reply_to_status_id_str": "453202217332264960", + "in_reply_to_user_id": 54666727, + "in_reply_to_user_id_str": "54666727", + "in_reply_to_screen_name": "puellavulnerata", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 07 16:05:42 +0000 2014", + "id": 453201963434672128, + "id_str": "453201963434672128", + "text": "@Vivicasus @m1sp said major plot event is not in the first book. The seeds of it will be sown in the second (which I’m 100 pages into)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453201736820203521, + "in_reply_to_status_id_str": "453201736820203521", + "in_reply_to_user_id": 22856941, + "in_reply_to_user_id_str": "22856941", + "in_reply_to_screen_name": "Vivicasus", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 07 16:05:03 +0000 2014", + "id": 453201798221021184, + "id_str": "453201798221021184", + "text": "I guess if I willingly engage with a celebrity in a political discussion, I 100% deserve angry strangers swearing in my mentions", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 07 15:59:34 +0000 2014", + "id": 453200417581969409, + "id_str": "453200417581969409", + "text": "@audio_Clay of course I’m simplifying down to twitter-size, but this world where *everyone* was Classically Trained just never happened.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453200138907824129, + "in_reply_to_status_id_str": "453200138907824129", + "in_reply_to_user_id": 15227895, + "in_reply_to_user_id_str": "15227895", + "in_reply_to_screen_name": "audio_Clay", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 07 15:56:48 +0000 2014", + "id": 453199723231711233, + "id_str": "453199723231711233", + "text": "@ID_AA_Carmack for the record I do appreciate the even-handed replies (I imagine your mentions are exploding right now)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453197160297684992, + "in_reply_to_status_id_str": "453197160297684992", + "in_reply_to_user_id": 175624200, + "in_reply_to_user_id_str": "175624200", + "in_reply_to_screen_name": "ID_AA_Carmack", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 07 15:51:22 +0000 2014", + "id": 453198352977764352, + "id_str": "453198352977764352", + "text": "@Vivicasus @m1sp there’s actually a major plot event in the future that hinges on someone not being afraid of snakes! :O", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453197737459068929, + "in_reply_to_status_id_str": "453197737459068929", + "in_reply_to_user_id": 22856941, + "in_reply_to_user_id_str": "22856941", + "in_reply_to_screen_name": "Vivicasus", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 07 15:47:59 +0000 2014", + "id": 453197502905581569, + "id_str": "453197502905581569", + "text": "@Vivicasus @m1sp :3", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453197420693057536, + "in_reply_to_status_id_str": "453197420693057536", + "in_reply_to_user_id": 22856941, + "in_reply_to_user_id_str": "22856941", + "in_reply_to_screen_name": "Vivicasus", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Mon Apr 07 15:46:00 +0000 2014", + "id": 453197005687627776, + "id_str": "453197005687627776", + "text": "@Vivicasus @m1sp but honest, I don’t hate snakes (much) and there are multiple “good” characters in the long term who own the snake identity", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453193072520605696, + "in_reply_to_status_id_str": "453193072520605696", + "in_reply_to_user_id": 22856941, + "in_reply_to_user_id_str": "22856941", + "in_reply_to_screen_name": "Vivicasus", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 07 15:43:51 +0000 2014", + "id": 453196463414452225, + "id_str": "453196463414452225", + "text": "@ID_AA_Carmack I’m not concerned with that, I’m concerned that you seemed to imply apologizing is inherently unintegral", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453196194148122624, + "in_reply_to_status_id_str": "453196194148122624", + "in_reply_to_user_id": 175624200, + "in_reply_to_user_id_str": "175624200", + "in_reply_to_screen_name": "ID_AA_Carmack", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 5, + "favorite_count": 6, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 07 15:35:16 +0000 2014", + "id": 453194304207736832, + "id_str": "453194304207736832", + "text": "@jesster_king my assertion stands. Their assertion of the human race “developing circuitry” is a nonsensical confusion of ideas.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453194095830110210, + "in_reply_to_status_id_str": "453194095830110210", + "in_reply_to_user_id": 46763517, + "in_reply_to_user_id_str": "46763517", + "in_reply_to_screen_name": "jesster_king", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 07 15:34:07 +0000 2014", + "id": 453194014297440257, + "id_str": "453194014297440257", + "text": "In the good old days, everyone read long books! By everyone I mean rich people. There ain’t no 99% literacy rate in the good old days.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 8, + "favorite_count": 14, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 07 15:27:09 +0000 2014", + "id": 453192259434196992, + "id_str": "453192259434196992", + "text": "@Vivicasus @m1sp but Nhangberial is secretly the heroine", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453191611585806336, + "in_reply_to_status_id_str": "453191611585806336", + "in_reply_to_user_id": 22856941, + "in_reply_to_user_id_str": "22856941", + "in_reply_to_screen_name": "Vivicasus", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 07 15:26:28 +0000 2014", + "id": 453192090118529024, + "id_str": "453192090118529024", + "text": "@cody_bunch I’m more concerned with the nonsensical conflation of the ideas of individual development and rather fast-track evolution", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453191625640927233, + "in_reply_to_status_id_str": "453191625640927233", + "in_reply_to_user_id": 18204232, + "in_reply_to_user_id_str": "18204232", + "in_reply_to_screen_name": "cody_bunch", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 07 15:24:51 +0000 2014", + "id": 453191682134388736, + "id_str": "453191682134388736", + "text": "RE: skimming: if you’re skimming a novel you are wasting your time. Just find something different you’ll actually engage with.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 6, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 07 15:23:25 +0000 2014", + "id": 453191321730433024, + "id_str": "453191321730433024", + "text": "@m1sp come rage with me at the not even wrongness of http://t.co/LkNVxQuzwK plz", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 07 15:21:13 +0000 2014", + "id": 453190767990013952, + "id_str": "453190767990013952", + "text": "The “developed over several millennia” sentence is a thousand miles deep into Not Even Wrong territory. 😡 http://t.co/qeoLFavBKz", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 7, + "favorite_count": 7, + "favorited": false, + "retweeted": true, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 07 15:13:31 +0000 2014", + "id": 453188828455763968, + "id_str": "453188828455763968", + "text": "@brbarrett @Gizmodo @lifehacker ಠ_ಠ", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453188567645564929, + "in_reply_to_status_id_str": "453188567645564929", + "in_reply_to_user_id": 106419866, + "in_reply_to_user_id_str": "106419866", + "in_reply_to_screen_name": "brbarrett", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "kn" + }, + { + "created_at": "Mon Apr 07 15:11:16 +0000 2014", + "id": 453188263503990784, + "id_str": "453188263503990784", + "text": "@brbarrett @Gizmodo @lifehacker your article is telling people it’s crazy they expect legitimate, paid HBO Go to work. *Why*??", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453187055099854848, + "in_reply_to_status_id_str": "453187055099854848", + "in_reply_to_user_id": 106419866, + "in_reply_to_user_id_str": "106419866", + "in_reply_to_screen_name": "brbarrett", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 07 15:05:49 +0000 2014", + "id": 453186893199712256, + "id_str": "453186893199712256", + "text": "@Gizmodo @lifehacker the number of *presumptions* about the viewer in this article is staggering. Ohh just get cable TV… and DVR it… and…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453184992513105920, + "in_reply_to_status_id_str": "453184992513105920", + "in_reply_to_user_id": 2890961, + "in_reply_to_user_id_str": "2890961", + "in_reply_to_screen_name": "Gizmodo", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 07 14:51:27 +0000 2014", + "id": 453183277638361088, + "id_str": "453183277638361088", + "text": "@Khazar222 @vogon I saw it pop up in my timeline and I was just like … … … … … meh. Cannot find will to engage.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453180971001851904, + "in_reply_to_status_id_str": "453180971001851904", + "in_reply_to_user_id": 62360037, + "in_reply_to_user_id_str": "62360037", + "in_reply_to_screen_name": "Khazar222", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 07 14:39:18 +0000 2014", + "id": 453180219139321856, + "id_str": "453180219139321856", + "text": "@vogon wait, did she work eight hour days 7 days a week, or 12 hour days 5 days a week?? Their wording is unhelpful. (Either way, uh…)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453179094415314944, + "in_reply_to_status_id_str": "453179094415314944", + "in_reply_to_user_id": 6326912, + "in_reply_to_user_id_str": "6326912", + "in_reply_to_screen_name": "vogon", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 07 12:57:32 +0000 2014", + "id": 453154608710713346, + "id_str": "453154608710713346", + "text": "@m1sp \\o/", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453107794002976768, + "in_reply_to_status_id_str": "453107794002976768", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Mon Apr 07 02:59:31 +0000 2014", + "id": 453004112020660224, + "id_str": "453004112020660224", + "text": "@zhuowei I don't know. Tweet at it, it tweets back an hour later?", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 453003826430500864, + "in_reply_to_status_id_str": "453003826430500864", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 07 02:57:17 +0000 2014", + "id": 453003549522526208, + "id_str": "453003549522526208", + "text": "is a twitter bot to remind you that you left laundry languishing in a machine something you people need?", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 12, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 07 02:55:34 +0000 2014", + "id": 453003117932863488, + "id_str": "453003117932863488", + "text": "@hyrmn un-FOR-tunately the other seventeen families in this complex might disagree", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 453002843180396544, + "in_reply_to_status_id_str": "453002843180396544", + "in_reply_to_user_id": 2265092568, + "in_reply_to_user_id_str": "2265092568", + "in_reply_to_screen_name": "hyrmn", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 07 02:55:19 +0000 2014", + "id": 453003055181471744, + "id_str": "453003055181471744", + "text": "I am the Laundry Avenger http://t.co/3BlMKQLrkJ", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 8, + "favorite_count": 15, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 07 02:47:10 +0000 2014", + "id": 453001005874290688, + "id_str": "453001005874290688", + "text": "Just remembered there’s still laundry in the dryer. My retirement is already ruined", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 10, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 07 02:46:27 +0000 2014", + "id": 453000825632477184, + "id_str": "453000825632477184", + "text": "@jlwfnord hisssss", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 453000776403935233, + "in_reply_to_status_id_str": "453000776403935233", + "in_reply_to_user_id": 2686861, + "in_reply_to_user_id_str": "2686861", + "in_reply_to_screen_name": "jlwfnord", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "tl" + }, + { + "created_at": "Mon Apr 07 02:44:55 +0000 2014", + "id": 453000437374128128, + "id_str": "453000437374128128", + "text": "That was the most refreshing glass of chocolate milk of my entire life. I’m sinking into this bed and never getting up again. Goodbye", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 13, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 07 02:23:40 +0000 2014", + "id": 452995090433441792, + "id_str": "452995090433441792", + "text": "@demize95 way too much Java sorry", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 452992933378027520, + "in_reply_to_status_id_str": "452992933378027520", + "in_reply_to_user_id": 137133048, + "in_reply_to_user_id_str": "137133048", + "in_reply_to_screen_name": "demize95", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 07 02:21:59 +0000 2014", + "id": 452994665982464000, + "id_str": "452994665982464000", + "text": "RT @saladinahmed: Please share this thing I wrote: \"Buried Badasses: The Forgotten Heroines of pre-Code Comics.\" http://t.co/px0VqtEHd7 htt…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Wed Apr 02 16:51:40 +0000 2014", + "id": 451401589308133376, + "id_str": "451401589308133376", + "text": "Please share this thing I wrote: \"Buried Badasses: The Forgotten Heroines of pre-Code Comics.\" http://t.co/px0VqtEHd7 http://t.co/fLgQNMeyLR", + "source": "Twitter for iPad", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 29995782, + "id_str": "29995782" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 469, + "favorite_count": 231, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/px0VqtEHd7", + "expanded_url": "http://saladinahmed.tumblr.com/post/81497120784/buried-badasses-the-forgotten-heroines-of-pre-code", + "display_url": "saladinahmed.tumblr.com/post/814971207…", + "indices": [ + 95, + 117 + ] + } + ], + "user_mentions": [ + + ], + "media": [ + { + "id": 451401589131980800, + "id_str": "451401589131980800", + "indices": [ + 118, + 140 + ], + "media_url": "http://pbs.twimg.com/media/BkOzWotCMAAmPrM.jpg", + "media_url_https": "https://pbs.twimg.com/media/BkOzWotCMAAmPrM.jpg", + "url": "http://t.co/fLgQNMeyLR", + "display_url": "pic.twitter.com/fLgQNMeyLR", + "expanded_url": "http://twitter.com/saladinahmed/status/451401589308133376/photo/1", + "type": "photo", + "sizes": { + "large": { + "w": 538, + "h": 546, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 345, + "resize": "fit" + }, + "medium": { + "w": 538, + "h": 546, + "resize": "fit" + } + } + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 469, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 07 01:33:05 +0000 2014", + "id": 452982360917942272, + "id_str": "452982360917942272", + "text": "@m1sp *suffocates*\n\nYou killed me, Mispy \n\nI always knew you would", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 452981190387970050, + "in_reply_to_status_id_str": "452981190387970050", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 07 01:22:37 +0000 2014", + "id": 452979727947821057, + "id_str": "452979727947821057", + "text": "@m1sp ahhh someone's reading it *hyperventilates*", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 07 01:06:20 +0000 2014", + "id": 452975630813253632, + "id_str": "452975630813253632", + "text": "@Talen_Lee @m1sp @Vivicasus ineffectual?!", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 452974724369219584, + "in_reply_to_status_id_str": "452974724369219584", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 07 01:05:30 +0000 2014", + "id": 452975417197334528, + "id_str": "452975417197334528", + "text": "@Vivicasus @Talen_Lee @m1sp here, stick this at the end of chapter 17. Editing not final. https://t.co/aMScJwMEBV", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 452975037776031744, + "in_reply_to_status_id_str": "452975037776031744", + "in_reply_to_user_id": 22856941, + "in_reply_to_user_id_str": "22856941", + "in_reply_to_screen_name": "Vivicasus", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 07 01:02:22 +0000 2014", + "id": 452974632271101952, + "id_str": "452974632271101952", + "text": "@Talen_Lee @m1sp @Vivicasus OH NO IT DOESN’T HAVE THE NEW BONUS SCENE D:", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 452974009508835328, + "in_reply_to_status_id_str": "452974009508835328", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 07 01:01:39 +0000 2014", + "id": 452974451668549633, + "id_str": "452974451668549633", + "text": "@hectoroid for hosting my thousands of private images\n\nNo, really, this is factual", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 452973648824250368, + "in_reply_to_status_id_str": "452973648824250368", + "in_reply_to_user_id": 348569430, + "in_reply_to_user_id_str": "348569430", + "in_reply_to_screen_name": "hectoroid", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 07 00:55:31 +0000 2014", + "id": 452972905903955968, + "id_str": "452972905903955968", + "text": "Some websites just can’t take a hint http://t.co/vMBRffvcTt", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 12, + "favorite_count": 31, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 07 00:14:21 +0000 2014", + "id": 452962546795171840, + "id_str": "452962546795171840", + "text": "@eevee I forget that I have huge dark moles all over my face and neck. Until a toddler tries to pry them off, at least.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 452934238011002882, + "in_reply_to_status_id_str": "452934238011002882", + "in_reply_to_user_id": 14412937, + "in_reply_to_user_id_str": "14412937", + "in_reply_to_screen_name": "eevee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 07 00:03:39 +0000 2014", + "id": 452959856094642176, + "id_str": "452959856094642176", + "text": "RT @eevee: →@tef @jo_liss it's actually kind of funny(?) that emoji has done more for correct unicode support than, say, the existence of n…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sun Apr 06 20:12:24 +0000 2014", + "id": 452901656506540032, + "id_str": "452901656506540032", + "text": "→@tef @jo_liss it's actually kind of funny(?) that emoji has done more for correct unicode support than, say, the existence of non-americans", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 452901237055569920, + "in_reply_to_status_id_str": "452901237055569920", + "in_reply_to_user_id": 16681276, + "in_reply_to_user_id_str": "16681276", + "in_reply_to_screen_name": "tef", + "user": { + "id": 14412937, + "id_str": "14412937" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 74, + "favorite_count": 52, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "tef", + "name": "one weird old tef", + "id": 16681276, + "id_str": "16681276", + "indices": [ + 1, + 5 + ] + }, + { + "screen_name": "jo_liss", + "name": "Jo Liss", + "id": 223422672, + "id_str": "223422672", + "indices": [ + 6, + 14 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 74, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Apr 07 00:00:38 +0000 2014", + "id": 452959095856054273, + "id_str": "452959095856054273", + "text": "@m1sp Chewie got so bored in the car he let me tell him all of Houri’s plot and he said she just needs to murder more people", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 06 23:51:38 +0000 2014", + "id": 452956832227917825, + "id_str": "452956832227917825", + "text": "@vaurora @hypatiadotca \n\nಠ_ಠ \n\n눈‸눈", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 452873093199847424, + "in_reply_to_status_id_str": "452873093199847424", + "in_reply_to_user_id": 30071759, + "in_reply_to_user_id_str": "30071759", + "in_reply_to_screen_name": "vaurora", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "ko" + }, + { + "created_at": "Sun Apr 06 23:32:12 +0000 2014", + "id": 452951941531066368, + "id_str": "452951941531066368", + "text": "@m1sp @Talen_Lee I was salutatorian, not valedictorian ;)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 452796261498753024, + "in_reply_to_status_id_str": "452796261498753024", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 06 23:25:17 +0000 2014", + "id": 452950198181175296, + "id_str": "452950198181175296", + "text": "Home alive. Just in time to do laundry and go to a different hotel tomorrow. Just gotta remind myself I volunteered for this one…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 06 20:04:54 +0000 2014", + "id": 452899772257796096, + "id_str": "452899772257796096", + "text": "@majinmajun 16:04", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 452899395659259904, + "in_reply_to_status_id_str": "452899395659259904", + "in_reply_to_user_id": 761616444, + "in_reply_to_user_id_str": "761616444", + "in_reply_to_screen_name": "majinmajun", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "et" + }, + { + "created_at": "Sun Apr 06 19:59:33 +0000 2014", + "id": 452898426121121793, + "id_str": "452898426121121793", + "text": "Automatic toll-by-mail: one of many benefits of the commercialized surveillance state", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 6, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 06 12:35:56 +0000 2014", + "id": 452786784121151489, + "id_str": "452786784121151489", + "text": "@m1sp (I changed her title from Councilwoman to Castellan because that was too many syllables)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 452786136729935872, + "in_reply_to_status_id_str": "452786136729935872", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 06 12:33:38 +0000 2014", + "id": 452786205919571968, + "id_str": "452786205919571968", + "text": "@m1sp I will try to work this all into Barsamin’s inner monologue when he is dealing with the nice lady with the frill collar", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 452784256389902336, + "in_reply_to_status_id_str": "452784256389902336", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 06 12:30:57 +0000 2014", + "id": 452785532276584448, + "id_str": "452785532276584448", + "text": "@m1sp look to Young Rashk for what happens when you try to bring them to court \n\n(Though he entered that court a mundane man)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 452784256389902336, + "in_reply_to_status_id_str": "452784256389902336", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 06 12:27:24 +0000 2014", + "id": 452784637115662336, + "id_str": "452784637115662336", + "text": "@m1sp really what I’m trying to express is a general attitude of “ugh, gods, they do crazy things” and people just let it be", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 452784256389902336, + "in_reply_to_status_id_str": "452784256389902336", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 06 12:26:34 +0000 2014", + "id": 452784427652100096, + "id_str": "452784427652100096", + "text": "@m1sp She could take it to Petragon or she could take it to the High Court of Chald and neither would be favorable for her", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 452784256389902336, + "in_reply_to_status_id_str": "452784256389902336", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 06 12:23:33 +0000 2014", + "id": 452783669816881152, + "id_str": "452783669816881152", + "text": "@m1sp but there is in fact a bit of a coverup. Talassen never took her grievance against Ismyrn to a court. Revenge is better.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 452783179028393984, + "in_reply_to_status_id_str": "452783179028393984", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 06 12:22:35 +0000 2014", + "id": 452783423024033792, + "id_str": "452783423024033792", + "text": "@m1sp more like if it was some tiny little place… I think we all know what happens *cough*", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 452783179028393984, + "in_reply_to_status_id_str": "452783179028393984", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 06 12:20:23 +0000 2014", + "id": 452782873087840256, + "id_str": "452782873087840256", + "text": "@m1sp oh but that’s Chald! Clearly a personal matter between the sibling countries. Insofar as these morbid rumors are true.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 452782072604536832, + "in_reply_to_status_id_str": "452782072604536832", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 06 12:15:08 +0000 2014", + "id": 452781551529758721, + "id_str": "452781551529758721", + "text": "@m1sp they’re about the same. Maybe they went to school together or something.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 452781235526307840, + "in_reply_to_status_id_str": "452781235526307840", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 06 12:13:00 +0000 2014", + "id": 452781014889549824, + "id_str": "452781014889549824", + "text": "@m1sp her stammer with the name is actually me miswriting in pen and realizing a second later. Debating keeping it.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 452780486369107968, + "in_reply_to_status_id_str": "452780486369107968", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 06 12:07:11 +0000 2014", + "id": 452779551295561728, + "id_str": "452779551295561728", + "text": "@m1sp snakes are now 20% more lethal.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 452779343639347200, + "in_reply_to_status_id_str": "452779343639347200", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 06 11:56:16 +0000 2014", + "id": 452776802990436352, + "id_str": "452776802990436352", + "text": "@baldassarifr I’m getting in the car for a road trip atm — but it was in fact totally random while I was just sitting there. No apps.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 452733426420834304, + "in_reply_to_status_id_str": "452733426420834304", + "in_reply_to_user_id": 188414399, + "in_reply_to_user_id_str": "188414399", + "in_reply_to_screen_name": "baldassarifr", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 06 04:26:52 +0000 2014", + "id": 452663705449562112, + "id_str": "452663705449562112", + "text": "@chriseng @thegrugq @winocm @nickdepetrillo can't do anything until after Source Boston, hope you don't need to print anything for a week", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 452663185691389952, + "in_reply_to_status_id_str": "452663185691389952", + "in_reply_to_user_id": 13752192, + "in_reply_to_user_id_str": "13752192", + "in_reply_to_screen_name": "chriseng", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 06 04:14:20 +0000 2014", + "id": 452660553010663424, + "id_str": "452660553010663424", + "text": "@Talen_Lee as a point of interest, I literally have psychological issues with even typing swears and basically HAVE to do it in character", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 452657190478692352, + "in_reply_to_status_id_str": "452657190478692352", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 06 03:53:07 +0000 2014", + "id": 452655215301632000, + "id_str": "452655215301632000", + "text": "@DanielOCL I have had both a lifelong fear of pregnancy and a lifelong fondness for the concept of adoption since I learned of it at age 7", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 452655030815162368, + "in_reply_to_status_id_str": "452655030815162368", + "in_reply_to_user_id": 66351565, + "in_reply_to_user_id_str": "66351565", + "in_reply_to_screen_name": "DanielOCL", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 06 03:49:29 +0000 2014", + "id": 452654298124398592, + "id_str": "452654298124398592", + "text": "@Talen_Lee http://t.co/CYi63j4blR", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 452638466937851905, + "in_reply_to_status_id_str": "452638466937851905", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Sun Apr 06 03:34:18 +0000 2014", + "id": 452650476589580288, + "id_str": "452650476589580288", + "text": "@psobot 🎊🎓", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 452650256757321728, + "in_reply_to_status_id_str": "452650256757321728", + "in_reply_to_user_id": 19135819, + "in_reply_to_user_id_str": "19135819", + "in_reply_to_screen_name": "psobot", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Sun Apr 06 03:32:28 +0000 2014", + "id": 452650017049026560, + "id_str": "452650017049026560", + "text": "@Vudw @eevee they didn’t hear what she called them (slang right out of a civil war novel) fortunately.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 452649399273799680, + "in_reply_to_status_id_str": "452649399273799680", + "in_reply_to_user_id": 201380143, + "in_reply_to_user_id_str": "201380143", + "in_reply_to_screen_name": "Vudw", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 06 03:27:37 +0000 2014", + "id": 452648797613867008, + "id_str": "452648797613867008", + "text": "@Vudw @eevee my great grandmother panicked when she visited us in Virginia and saw black people. Legit thought they’d bandit raid our car.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 452647494761992193, + "in_reply_to_status_id_str": "452647494761992193", + "in_reply_to_user_id": 201380143, + "in_reply_to_user_id_str": "201380143", + "in_reply_to_screen_name": "Vudw", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 06 03:25:21 +0000 2014", + "id": 452648226622296064, + "id_str": "452648226622296064", + "text": "@Vudw @eevee my family is from parts where the only racial axis is Irish/Italian, so their anti-black racism is this weird theoretical thing", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 452647494761992193, + "in_reply_to_status_id_str": "452647494761992193", + "in_reply_to_user_id": 201380143, + "in_reply_to_user_id_str": "201380143", + "in_reply_to_screen_name": "Vudw", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 06 03:20:26 +0000 2014", + "id": 452646990317641728, + "id_str": "452646990317641728", + "text": "@eevee I intend to adopt someday, and my grandma tipped her covert racism when she was like “from INSIDE the country, right?”", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 452645858551398400, + "in_reply_to_status_id_str": "452645858551398400", + "in_reply_to_user_id": 14412937, + "in_reply_to_user_id_str": "14412937", + "in_reply_to_screen_name": "eevee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 06 03:18:05 +0000 2014", + "id": 452646396622303232, + "id_str": "452646396622303232", + "text": "@savagejen are they using condemnation of a fictional character to portray their ideal of how people similar to that character should act?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 452639100219449344, + "in_reply_to_status_id_str": "452639100219449344", + "in_reply_to_user_id": 11324652, + "in_reply_to_user_id_str": "11324652", + "in_reply_to_screen_name": "savagejen", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 06 03:17:10 +0000 2014", + "id": 452646165344169984, + "id_str": "452646165344169984", + "text": "@Talen_Lee darn straight.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 452638466937851905, + "in_reply_to_status_id_str": "452638466937851905", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 06 03:15:36 +0000 2014", + "id": 452645771083804672, + "id_str": "452645771083804672", + "text": "@Shgamha @eevee Serious question 2: I have two friends who had a child together and are not married. Is their parenthood invalid?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 452628013885440000, + "in_reply_to_status_id_str": "452628013885440000", + "in_reply_to_user_id": 1552341818, + "in_reply_to_user_id_str": "1552341818", + "in_reply_to_screen_name": "Shgamha", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 06 03:14:30 +0000 2014", + "id": 452645495966810112, + "id_str": "452645495966810112", + "text": "@Shgamha @eevee Serious question: my husband and I have no children and this is not going to change. Is our marriage therefore invalid?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 452628013885440000, + "in_reply_to_status_id_str": "452628013885440000", + "in_reply_to_user_id": 1552341818, + "in_reply_to_user_id_str": "1552341818", + "in_reply_to_screen_name": "Shgamha", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 06 02:35:31 +0000 2014", + "id": 452635686806761472, + "id_str": "452635686806761472", + "text": "@zhuowei ah, found it. http://t.co/ROwiraUTsY Pretty sure this is my highest swear to word ratio ever.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 452633658289954817, + "in_reply_to_status_id_str": "452633658289954817", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 06 02:27:51 +0000 2014", + "id": 452633757456277504, + "id_str": "452633757456277504", + "text": "@hinanawi_chan @zhuowei I AM HATRED PERSONIFIED.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 452633632251719680, + "in_reply_to_status_id_str": "452633632251719680", + "in_reply_to_user_id": 2336014178, + "in_reply_to_user_id_str": "2336014178", + "in_reply_to_screen_name": "hinanawi_chan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "it" + }, + { + "created_at": "Sun Apr 06 02:26:52 +0000 2014", + "id": 452633507731611648, + "id_str": "452633507731611648", + "text": "@zhuowei @mralext20 haha no.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 452633360846696448, + "in_reply_to_status_id_str": "452633360846696448", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "it" + }, + { + "created_at": "Sun Apr 06 02:26:41 +0000 2014", + "id": 452633462928056320, + "id_str": "452633462928056320", + "text": "@zhuowei like most of my tumbles it's probably ridiculously pretentious and overwrought", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 452631681543847937, + "in_reply_to_status_id_str": "452631681543847937", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 06 02:26:27 +0000 2014", + "id": 452633401473134592, + "id_str": "452633401473134592", + "text": "@zhuowei there's a second one somewhere on my tumblr, though I actually can't remember what I was tumbling about, just that I swore", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 452631681543847937, + "in_reply_to_status_id_str": "452631681543847937", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 06 02:25:09 +0000 2014", + "id": 452633076095782912, + "id_str": "452633076095782912", + "text": "@mralext20 @zhuowei sssshh! that never happened", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 452632463798312961, + "in_reply_to_status_id_str": "452632463798312961", + "in_reply_to_user_id": 905041434, + "in_reply_to_user_id_str": "905041434", + "in_reply_to_screen_name": "mralext20", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 06 02:24:45 +0000 2014", + "id": 452632974484590592, + "id_str": "452632974484590592", + "text": "@zhuowei oh my gods you have NO IDEA how furious I was :)", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 452631681543847937, + "in_reply_to_status_id_str": "452631681543847937", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 06 01:30:10 +0000 2014", + "id": 452619240286486528, + "id_str": "452619240286486528", + "text": "@AaronToponce @mattblaze not much. \n\nThis might become my future reference for demonstrating the meaning of “not even wrong.”", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 452617926839787520, + "in_reply_to_status_id_str": "452617926839787520", + "in_reply_to_user_id": 48105771, + "in_reply_to_user_id_str": "48105771", + "in_reply_to_screen_name": "AaronToponce", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 06 01:19:41 +0000 2014", + "id": 452616599410081792, + "id_str": "452616599410081792", + "text": "RT @wpjenna: Maryland House votes 78 to 55 to decriminalize marijuana.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sat Apr 05 22:46:47 +0000 2014", + "id": 452578121305571328, + "id_str": "452578121305571328", + "text": "Maryland House votes 78 to 55 to decriminalize marijuana.", + "source": "HootSuite", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 15893354, + "id_str": "15893354" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 113, + "favorite_count": 47, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 113, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 06 01:19:03 +0000 2014", + "id": 452616440127193088, + "id_str": "452616440127193088", + "text": "@ioerror @stewartbaker oh, is this the guy who pretends not to understand how it’s been shown there is a backdoor in dual EC?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 452581546726535170, + "in_reply_to_status_id_str": "452581546726535170", + "in_reply_to_user_id": 13862172, + "in_reply_to_user_id_str": "13862172", + "in_reply_to_screen_name": "ioerror", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 06 01:08:51 +0000 2014", + "id": 452613872554622976, + "id_str": "452613872554622976", + "text": "@eevee they are a Thing in other parts of the country that aren’t Here. We have a Michael’s instead", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 452546292145586176, + "in_reply_to_status_id_str": "452546292145586176", + "in_reply_to_user_id": 14412937, + "in_reply_to_user_id_str": "14412937", + "in_reply_to_screen_name": "eevee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 06 01:06:59 +0000 2014", + "id": 452613405632131072, + "id_str": "452613405632131072", + "text": "RT @mattblaze: \"Make sure to use DSA signatures instead of RSA because the NSA has backdoors in RSA.\" Arrrgh. No. Stop. Not even wrong.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sat Apr 05 20:28:03 +0000 2014", + "id": 452543206928834561, + "id_str": "452543206928834561", + "text": "\"Make sure to use DSA signatures instead of RSA because the NSA has backdoors in RSA.\" Arrrgh. No. Stop. Not even wrong.", + "source": "TweetDeck", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 26567591, + "id_str": "26567591" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 14, + "favorite_count": 13, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 14, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Apr 06 00:39:06 +0000 2014", + "id": 452606386795724800, + "id_str": "452606386795724800", + "text": "@sergeybratus I found you a poster child http://t.co/S4JYawEUNG", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 354406010, + "in_reply_to_user_id_str": "354406010", + "in_reply_to_screen_name": "sergeybratus", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 05 20:58:44 +0000 2014", + "id": 452550931620831232, + "id_str": "452550931620831232", + "text": "@SuperSartre it has a most unfortunate lump on the underside which I do not find flattering", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 452550678460637184, + "in_reply_to_status_id_str": "452550678460637184", + "in_reply_to_user_id": 48918092, + "in_reply_to_user_id_str": "48918092", + "in_reply_to_screen_name": "SuperSartre", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 05 20:42:26 +0000 2014", + "id": 452546826517090304, + "id_str": "452546826517090304", + "text": "@m1sp http://t.co/z8n7CtZQkY\n\n(So bored)", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 05 20:38:22 +0000 2014", + "id": 452545803480211456, + "id_str": "452545803480211456", + "text": "@SuperSartre I don't like my chin.", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 452545373681090560, + "in_reply_to_status_id_str": "452545373681090560", + "in_reply_to_user_id": 48918092, + "in_reply_to_user_id_str": "48918092", + "in_reply_to_screen_name": "SuperSartre", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 05 20:13:13 +0000 2014", + "id": 452539475500216321, + "id_str": "452539475500216321", + "text": "\"Put THIS one on twitter\" http://t.co/pxzraUKxp5", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 14, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 05 20:07:08 +0000 2014", + "id": 452537944130060288, + "id_str": "452537944130060288", + "text": "Ha got a permanent record of Suit!Husband http://t.co/rJYA6z71ib", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 6, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 05 18:43:37 +0000 2014", + "id": 452516927374897152, + "id_str": "452516927374897152", + "text": "@DrPizza oh, you're thinking of the fun kind of crazy, this is the other kind", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 452516486951616512, + "in_reply_to_status_id_str": "452516486951616512", + "in_reply_to_user_id": 11375732, + "in_reply_to_user_id_str": "11375732", + "in_reply_to_screen_name": "DrPizza", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 05 18:38:10 +0000 2014", + "id": 452515555648745472, + "id_str": "452515555648745472", + "text": "@DrPizza hallelujah.", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 452515489999114240, + "in_reply_to_status_id_str": "452515489999114240", + "in_reply_to_user_id": 11375732, + "in_reply_to_user_id_str": "11375732", + "in_reply_to_screen_name": "DrPizza", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "fi" + }, + { + "created_at": "Sat Apr 05 18:37:31 +0000 2014", + "id": 452515394163834881, + "id_str": "452515394163834881", + "text": "@DrPizza I am philosophically opposed to this type of wedding ceremony, but no one asked me", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 452510220384600064, + "in_reply_to_status_id_str": "452510220384600064", + "in_reply_to_user_id": 11375732, + "in_reply_to_user_id_str": "11375732", + "in_reply_to_screen_name": "DrPizza", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 05 18:16:02 +0000 2014", + "id": 452509985143271424, + "id_str": "452509985143271424", + "text": "@DrPizza he's walking his sister down the aisle", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 452509895619641344, + "in_reply_to_status_id_str": "452509895619641344", + "in_reply_to_user_id": 11375732, + "in_reply_to_user_id_str": "11375732", + "in_reply_to_screen_name": "DrPizza", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 05 18:14:24 +0000 2014", + "id": 452509573736591361, + "id_str": "452509573736591361", + "text": "At least I'm getting one thing out of this: the ridiculous sight of my husband in a fancy suit", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 05 17:26:05 +0000 2014", + "id": 452497415602728960, + "id_str": "452497415602728960", + "text": "@Packetknife this just raises more questions, concerning their usual mode of advertising", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 452497120491491329, + "in_reply_to_status_id_str": "452497120491491329", + "in_reply_to_user_id": 19564254, + "in_reply_to_user_id_str": "19564254", + "in_reply_to_screen_name": "Packetknife", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 05 17:24:21 +0000 2014", + "id": 452496977209851905, + "id_str": "452496977209851905", + "text": "@Packetknife well?? :)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 452494466688221184, + "in_reply_to_status_id_str": "452494466688221184", + "in_reply_to_user_id": 19564254, + "in_reply_to_user_id_str": "19564254", + "in_reply_to_screen_name": "Packetknife", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "de" + }, + { + "created_at": "Sat Apr 05 17:23:23 +0000 2014", + "id": 452496736318394368, + "id_str": "452496736318394368", + "text": "@fuzztester I got it specifically for the buzzy alerts for when my phone is not in my pocket. This may not be a problem you have.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 452496587978452994, + "in_reply_to_status_id_str": "452496587978452994", + "in_reply_to_user_id": 172725404, + "in_reply_to_user_id_str": "172725404", + "in_reply_to_screen_name": "fuzztester", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 05 17:22:44 +0000 2014", + "id": 452496572673433601, + "id_str": "452496572673433601", + "text": "@BadAstronomer classic case of time stamp zero strikes again!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 452493253355380737, + "in_reply_to_status_id_str": "452493253355380737", + "in_reply_to_user_id": 4620451, + "in_reply_to_user_id_str": "4620451", + "in_reply_to_screen_name": "BadAstronomer", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 05 17:20:18 +0000 2014", + "id": 452495959847878656, + "id_str": "452495959847878656", + "text": "@jeremiahfelt \\o/", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 452495914876547072, + "in_reply_to_status_id_str": "452495914876547072", + "in_reply_to_user_id": 9154112, + "in_reply_to_user_id_str": "9154112", + "in_reply_to_screen_name": "jeremiahfelt", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Sat Apr 05 17:20:08 +0000 2014", + "id": 452495917720293376, + "id_str": "452495917720293376", + "text": "@fuzztester totally random. Was just sitting there.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 452495851517394944, + "in_reply_to_status_id_str": "452495851517394944", + "in_reply_to_user_id": 172725404, + "in_reply_to_user_id_str": "172725404", + "in_reply_to_screen_name": "fuzztester", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 05 17:19:41 +0000 2014", + "id": 452495806265053184, + "id_str": "452495806265053184", + "text": "@jeremiahfelt @BSidesROC it was Defcon :)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 452495667735580672, + "in_reply_to_status_id_str": "452495667735580672", + "in_reply_to_user_id": 9154112, + "in_reply_to_user_id_str": "9154112", + "in_reply_to_screen_name": "jeremiahfelt", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 05 17:17:03 +0000 2014", + "id": 452495141711126528, + "id_str": "452495141711126528", + "text": "@Talen_Lee … hot …", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 452481630050222081, + "in_reply_to_status_id_str": "452481630050222081", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "da" + }, + { + "created_at": "Sat Apr 05 17:14:21 +0000 2014", + "id": 452494460623257601, + "id_str": "452494460623257601", + "text": "@windyoona http://t.co/Qfbj2Dcvve", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 452474151421235200, + "in_reply_to_status_id_str": "452474151421235200", + "in_reply_to_user_id": 427696547, + "in_reply_to_user_id_str": "427696547", + "in_reply_to_screen_name": "windyoona", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Sat Apr 05 17:11:02 +0000 2014", + "id": 452493628003606528, + "id_str": "452493628003606528", + "text": "@m1sp … that’s one of the oldest things I ever wrote with Hayr! Obviously needs a LOT of reworking but the code idea is there.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 452492470027182080, + "in_reply_to_status_id_str": "452492470027182080", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 05 17:07:16 +0000 2014", + "id": 452492678140555264, + "id_str": "452492678140555264", + "text": "@m1sp oh he was definitely invited", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 452492470027182080, + "in_reply_to_status_id_str": "452492470027182080", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 05 17:03:45 +0000 2014", + "id": 452491795348586496, + "id_str": "452491795348586496", + "text": "@m1sp but no-one dies or gets kidnapped at that one. Barsamin's also not in attendance at that one. Coincidence??", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 452491424290721792, + "in_reply_to_status_id_str": "452491424290721792", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 05 17:00:04 +0000 2014", + "id": 452490869237899264, + "id_str": "452490869237899264", + "text": "@m1sp I'm going to have to come up with another Terrible Wedding for Book 3 just to therapeutically excise my hatred of weddings", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 05 16:59:09 +0000 2014", + "id": 452490639373254657, + "id_str": "452490639373254657", + "text": "@WhiteMageSlave @m1sp nah I be dedicatin' it to my *real* sister... Hermione", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 452489437520592897, + "in_reply_to_status_id_str": "452489437520592897", + "in_reply_to_user_id": 90791634, + "in_reply_to_user_id_str": "90791634", + "in_reply_to_screen_name": "WhiteMageSlave", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 05 16:56:18 +0000 2014", + "id": 452489922134683648, + "id_str": "452489922134683648", + "text": "@spiegaltv @Talen_Lee @DrPalutena I think it's because then you get to call people like me \"dinkies\"", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 452486948192780288, + "in_reply_to_status_id_str": "452486948192780288", + "in_reply_to_user_id": 106606405, + "in_reply_to_user_id_str": "106606405", + "in_reply_to_screen_name": "spiegaltv", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 05 16:40:29 +0000 2014", + "id": 452485938690936832, + "id_str": "452485938690936832", + "text": "\"Siri, directions to Sheetz\" \"I did not find any place to buy bed linens.\"", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 05 16:38:51 +0000 2014", + "id": 452485530476118017, + "id_str": "452485530476118017", + "text": "@Talen_Lee double income no kids", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 452484394817568769, + "in_reply_to_status_id_str": "452484394817568769", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 05 16:30:14 +0000 2014", + "id": 452483359076524032, + "id_str": "452483359076524032", + "text": "@fivetonsflax wedding", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 452479019556929537, + "in_reply_to_status_id_str": "452479019556929537", + "in_reply_to_user_id": 14291351, + "in_reply_to_user_id_str": "14291351", + "in_reply_to_screen_name": "fivetonsflax", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 05 16:29:09 +0000 2014", + "id": 452483085817626625, + "id_str": "452483085817626625", + "text": "@Talen_Lee yes and ehh :) we're just DINK and one car.", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 05 16:24:50 +0000 2014", + "id": 452482002886098944, + "id_str": "452482002886098944", + "text": "@geekable no.", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 452481660269760512, + "in_reply_to_status_id_str": "452481660269760512", + "in_reply_to_user_id": 755035, + "in_reply_to_user_id_str": "755035", + "in_reply_to_screen_name": "geekable", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Sat Apr 05 15:58:36 +0000 2014", + "id": 452475401303236608, + "id_str": "452475401303236608", + "text": "I have to tell someone: I'm miserable, I hate it here, I'm about to cry, and men's perfume gives me the most awful headache.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 05 15:51:13 +0000 2014", + "id": 452473539518816256, + "id_str": "452473539518816256", + "text": "AC repair guy just said \"there's always one screw too many anyway.\" As a computer repair expert: always.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 9, + "favorite_count": 13, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 05 15:42:46 +0000 2014", + "id": 452471413681946625, + "id_str": "452471413681946625", + "text": "@outadoc I was just wearing it I swear", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 452471359365730304, + "in_reply_to_status_id_str": "452471359365730304", + "in_reply_to_user_id": 91364927, + "in_reply_to_user_id_str": "91364927", + "in_reply_to_screen_name": "outadoc", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 05 15:41:44 +0000 2014", + "id": 452471156881514496, + "id_str": "452471156881514496", + "text": "And now I can't get the phone and watch to re-pair. The watch is visible on bluetooth but it just flakes out.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 05 15:36:39 +0000 2014", + "id": 452469877560066048, + "id_str": "452469877560066048", + "text": "Zeroeth world problems: my watch segfaulted http://t.co/jcl5FtSjHR", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 125, + "favorite_count": 102, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 05 15:27:51 +0000 2014", + "id": 452467661243695104, + "id_str": "452467661243695104", + "text": "@phantominker oh. Don't get me started on smurfs.\n\nThere are very serious and deep seated issues with smurfs.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 452467448084963328, + "in_reply_to_status_id_str": "452467448084963328", + "in_reply_to_user_id": 175053400, + "in_reply_to_user_id_str": "175053400", + "in_reply_to_screen_name": "phantominker", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 05 14:55:15 +0000 2014", + "id": 452459455503171584, + "id_str": "452459455503171584", + "text": "@CyborgCode I *fancy* myself a good writer.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 452457956307894273, + "in_reply_to_status_id_str": "452457956307894273", + "in_reply_to_user_id": 130034459, + "in_reply_to_user_id_str": "130034459", + "in_reply_to_screen_name": "CyborgCode", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 05 14:51:06 +0000 2014", + "id": 452458414011342848, + "id_str": "452458414011342848", + "text": "@Premmytwit @Talen_Lee at the moment, the little kid one.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 452458166463102976, + "in_reply_to_status_id_str": "452458166463102976", + "in_reply_to_user_id": 83255048, + "in_reply_to_user_id_str": "83255048", + "in_reply_to_screen_name": "Premmytwit", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 05 14:48:01 +0000 2014", + "id": 452457635091333120, + "id_str": "452457635091333120", + "text": "@Talen_Lee I'm pleased with a roughly 50% female Evil Gang and a child whose gender I was genuinely uncertain of until I got a pronoun", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 452456318570209281, + "in_reply_to_status_id_str": "452456318570209281", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 05 14:41:16 +0000 2014", + "id": 452455938117890048, + "id_str": "452455938117890048", + "text": "The writing in Ben Ten is so bad. But the character design is pretty good. I'll sound old if I complain about newer cartoons though.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 05 14:13:03 +0000 2014", + "id": 452448835236007936, + "id_str": "452448835236007936", + "text": "@puellavulnerata preemptive block, ask your closest friends to preemptive block, it will be okay", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 452448517668093952, + "in_reply_to_status_id_str": "452448517668093952", + "in_reply_to_user_id": 54666727, + "in_reply_to_user_id_str": "54666727", + "in_reply_to_screen_name": "puellavulnerata", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 05 14:04:57 +0000 2014", + "id": 452446798024806400, + "id_str": "452446798024806400", + "text": "@m1sp >:| no forgiveness", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 452446601080885249, + "in_reply_to_status_id_str": "452446601080885249", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 05 13:54:13 +0000 2014", + "id": 452444098084233216, + "id_str": "452444098084233216", + "text": "@mikko there are that few people in Finland? I must already know like 1% of the country", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 452364890985226240, + "in_reply_to_status_id_str": "452364890985226240", + "in_reply_to_user_id": 23566038, + "in_reply_to_user_id_str": "23566038", + "in_reply_to_screen_name": "mikko", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 05 13:50:41 +0000 2014", + "id": 452443207532830720, + "id_str": "452443207532830720", + "text": "@TimelessP @m1sp yeah", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 452443136854614017, + "in_reply_to_status_id_str": "452443136854614017", + "in_reply_to_user_id": 8784462, + "in_reply_to_user_id_str": "8784462", + "in_reply_to_screen_name": "TimelessP", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Sat Apr 05 13:47:45 +0000 2014", + "id": 452442470065111040, + "id_str": "452442470065111040", + "text": "@m1sp missing context, I —", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 452431555256791040, + "in_reply_to_status_id_str": "452431555256791040", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 05 13:46:20 +0000 2014", + "id": 452442115604484096, + "id_str": "452442115604484096", + "text": "@puellavulnerata they can call me when they fix their malware problem, their video autoplay problem, their sexual ad on non sexual site pro—", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 452350717508845570, + "in_reply_to_status_id_str": "452350717508845570", + "in_reply_to_user_id": 54666727, + "in_reply_to_user_id_str": "54666727", + "in_reply_to_screen_name": "puellavulnerata", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 05 13:38:30 +0000 2014", + "id": 452440140661948416, + "id_str": "452440140661948416", + "text": "RT @NonCombosMentos: A group of pedants is called an \"actually\"", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sat Apr 05 05:31:36 +0000 2014", + "id": 452317608449040384, + "id_str": "452317608449040384", + "text": "A group of pedants is called an \"actually\"", + "source": "Twitter for Android", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 1621424731, + "id_str": "1621424731" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2543, + "favorite_count": 2186, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 2543, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 05 13:37:20 +0000 2014", + "id": 452439850650963968, + "id_str": "452439850650963968", + "text": "@xkeepah \\o/ almost twinsies", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 452340428772106240, + "in_reply_to_status_id_str": "452340428772106240", + "in_reply_to_user_id": 61653331, + "in_reply_to_user_id_str": "61653331", + "in_reply_to_screen_name": "xkeepah", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "fr" + }, + { + "created_at": "Sat Apr 05 02:51:34 +0000 2014", + "id": 452277335187030016, + "id_str": "452277335187030016", + "text": "@astepanovich @unix_root it’s very ESL but I think it means they forged a fake jam which could, in theory, jam up the fallback routes", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 452276511136305152, + "in_reply_to_status_id_str": "452276511136305152", + "in_reply_to_user_id": 15679924, + "in_reply_to_user_id_str": "15679924", + "in_reply_to_screen_name": "astepanovich", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 05 02:41:20 +0000 2014", + "id": 452274762614849536, + "id_str": "452274762614849536", + "text": "RT @unix_root: Popular Navigation App WAZE hijacked with Fake Bots to Cause Traffic Jam http://t.co/XsPUzWpg8T #Security http://t.co/wthPHj…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sat Apr 05 00:31:26 +0000 2014", + "id": 452242071227625472, + "id_str": "452242071227625472", + "text": "Popular Navigation App WAZE hijacked with Fake Bots to Cause Traffic Jam http://t.co/XsPUzWpg8T #Security http://t.co/wthPHj8jSw", + "source": "TweetDeck", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 418821190, + "id_str": "418821190" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 70, + "favorite_count": 18, + "entities": { + "hashtags": [ + { + "text": "Security", + "indices": [ + 96, + 105 + ] + } + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/XsPUzWpg8T", + "expanded_url": "http://thehackernews.com/2014/04/popular-navigation-app-hijacked-with.html", + "display_url": "thehackernews.com/2014/04/popula…", + "indices": [ + 73, + 95 + ] + } + ], + "user_mentions": [ + + ], + "media": [ + { + "id": 452165810266460160, + "id_str": "452165810266460160", + "indices": [ + 106, + 128 + ], + "media_url": "http://pbs.twimg.com/media/BkZqaKSCUAAg5yu.jpg", + "media_url_https": "https://pbs.twimg.com/media/BkZqaKSCUAAg5yu.jpg", + "url": "http://t.co/wthPHj8jSw", + "display_url": "pic.twitter.com/wthPHj8jSw", + "expanded_url": "http://twitter.com/TheHackersNews/status/452165810262265856/photo/1", + "type": "photo", + "sizes": { + "small": { + "w": 340, + "h": 210, + "resize": "fit" + }, + "large": { + "w": 728, + "h": 450, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 371, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + } + }, + "source_status_id": 452165810262265856, + "source_status_id_str": "452165810262265856" + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 70, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 05 01:36:03 +0000 2014", + "id": 452258332338692096, + "id_str": "452258332338692096", + "text": "@m1sp aaaand I think I just got the inspiration to go back and finish that omake. http://t.co/3epZ9zLV2l", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 05 01:32:03 +0000 2014", + "id": 452257324770811904, + "id_str": "452257324770811904", + "text": "I suppose it's a faux pas to be like \"sup\" when seeing one's siblings-in-law but \"*GASP* HI CHARLIE\" to their dog", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 8, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 05 01:30:57 +0000 2014", + "id": 452257049939046400, + "id_str": "452257049939046400", + "text": "@Hexane_ iPhone camera. Gets the job done. Indistinguishable end result most of the time. Disdained by anyone with a stake in the argument", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 452254471913873408, + "in_reply_to_status_id_str": "452254471913873408", + "in_reply_to_user_id": 80469806, + "in_reply_to_user_id_str": "80469806", + "in_reply_to_screen_name": "Hexane_", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 05 01:01:56 +0000 2014", + "id": 452249747349594113, + "id_str": "452249747349594113", + "text": "oh my gods \"canon vs nikon\" is the emacs vs vi of photographers isn't it \n\nI've known this photographer for TWO MINUTES", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 44, + "favorite_count": 60, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 05 01:00:49 +0000 2014", + "id": 452249464758362112, + "id_str": "452249464758362112", + "text": "@WeldPond @spacerog @matthew_d_green I told Chewie this story recently and I don't think he believed it!", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 452249200487837696, + "in_reply_to_status_id_str": "452249200487837696", + "in_reply_to_user_id": 14090906, + "in_reply_to_user_id_str": "14090906", + "in_reply_to_screen_name": "WeldPond", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 05 00:26:55 +0000 2014", + "id": 452240933686632448, + "id_str": "452240933686632448", + "text": "@akopa @m1sp is this a sex thing? It sounds like a sex thing.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 452240796742201345, + "in_reply_to_status_id_str": "452240796742201345", + "in_reply_to_user_id": 14314798, + "in_reply_to_user_id_str": "14314798", + "in_reply_to_screen_name": "akopa", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 05 00:24:58 +0000 2014", + "id": 452240441606701058, + "id_str": "452240441606701058", + "text": "@sellymeKong @eevee oh. You poor, poor unamerican thing. Do we need to come liberate you?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 452237719448854528, + "in_reply_to_status_id_str": "452237719448854528", + "in_reply_to_user_id": 124082608, + "in_reply_to_user_id_str": "124082608", + "in_reply_to_screen_name": "sellymeKong", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 05 00:17:09 +0000 2014", + "id": 452238476759810051, + "id_str": "452238476759810051", + "text": "RT @m1sp: Known security holes may be present in outdated beliefs. Please apply the latest patch before connecting to public debate.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Fri Apr 04 23:11:55 +0000 2014", + "id": 452222057741180929, + "id_str": "452222057741180929", + "text": "Known security holes may be present in outdated beliefs. Please apply the latest patch before connecting to public debate.", + "source": "TweetDeck", + "truncated": false, + "in_reply_to_status_id": 452221524552863744, + "in_reply_to_status_id_str": "452221524552863744", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 1007638597, + "id_str": "1007638597" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 48, + "favorite_count": 39, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 48, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 05 00:16:41 +0000 2014", + "id": 452238357339570176, + "id_str": "452238357339570176", + "text": "@m1sp security patches for the soul \n\nWait, I don’t believe in souls\n\nDependency error", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 452221524552863744, + "in_reply_to_status_id_str": "452221524552863744", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 5, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 05 00:13:54 +0000 2014", + "id": 452237659159932928, + "id_str": "452237659159932928", + "text": "@craigslistlove @frkbmb which anime? I’d leave him for Edward Elric", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451934332006170624, + "in_reply_to_status_id_str": "451934332006170624", + "in_reply_to_user_id": 973190042, + "in_reply_to_user_id_str": "973190042", + "in_reply_to_screen_name": "craigslistlove", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 05 00:12:48 +0000 2014", + "id": 452237381513805825, + "id_str": "452237381513805825", + "text": "RT @pmarca: 1/Twenty years ago today, we started the company called Netscape!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Fri Apr 04 22:30:49 +0000 2014", + "id": 452211715736743936, + "id_str": "452211715736743936", + "text": "1/Twenty years ago today, we started the company called Netscape!", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 5943622, + "id_str": "5943622" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 482, + "favorite_count": 475, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 482, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Apr 05 00:08:41 +0000 2014", + "id": 452236343608094720, + "id_str": "452236343608094720", + "text": "@matthew_d_green I hear @spacerog can help with that…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 452206552821555201, + "in_reply_to_status_id_str": "452206552821555201", + "in_reply_to_user_id": 106234268, + "in_reply_to_user_id_str": "106234268", + "in_reply_to_screen_name": "matthew_d_green", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 04 23:47:19 +0000 2014", + "id": 452230967521202176, + "id_str": "452230967521202176", + "text": "I'd like to thank the \"OK button vs Apply button\" #UIRage paradigm for me just loading a bunch of stuff over plaintext instead of my proxy", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 04 22:56:55 +0000 2014", + "id": 452218284839305216, + "id_str": "452218284839305216", + "text": "@m1sp @zhuowei (You know he resents not being pretty anymore.)", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 452217456006664192, + "in_reply_to_status_id_str": "452217456006664192", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 04 22:54:51 +0000 2014", + "id": 452217763541831680, + "id_str": "452217763541831680", + "text": "@m1sp @zhuowei and for him, that would ruin the whole point...", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 452217456006664192, + "in_reply_to_status_id_str": "452217456006664192", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 04 22:48:01 +0000 2014", + "id": 452216043801694209, + "id_str": "452216043801694209", + "text": "@m1sp @zhuowei True. \n\n*Illusions*, Solornel, not tricks.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 452215861974011904, + "in_reply_to_status_id_str": "452215861974011904", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 04 22:45:32 +0000 2014", + "id": 452215421782216704, + "id_str": "452215421782216704", + "text": "@m1sp @zhuowei in VERY VERY OLD drafts, Nhangberial was a shapeshifter. But I decided I had no good basis to justify it.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 452215109528473600, + "in_reply_to_status_id_str": "452215109528473600", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 04 22:44:46 +0000 2014", + "id": 452215225358745601, + "id_str": "452215225358745601", + "text": "@zhuowei @m1sp she speaketh not in thees and thines! It cannot be her. (It's her.)", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 452214663988920320, + "in_reply_to_status_id_str": "452214663988920320", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 04 22:30:49 +0000 2014", + "id": 452211717112467456, + "id_str": "452211717112467456", + "text": "@m1sp straight baiting. http://t.co/Us1J3Kp8GY", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 04 22:01:08 +0000 2014", + "id": 452204245086142464, + "id_str": "452204245086142464", + "text": "@thequux it's a Comfort Inn, seemingly of fairly recent construction.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 452204100088651776, + "in_reply_to_status_id_str": "452204100088651776", + "in_reply_to_user_id": 29681044, + "in_reply_to_user_id_str": "29681044", + "in_reply_to_screen_name": "thequux", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 04 21:23:29 +0000 2014", + "id": 452194772372160512, + "id_str": "452194772372160512", + "text": "@m1sp :333\n\nyou know, it's houseist to insist all Slytherins must be evil.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 452194446994468864, + "in_reply_to_status_id_str": "452194446994468864", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 04 21:21:21 +0000 2014", + "id": 452194235736154112, + "id_str": "452194235736154112", + "text": "@piannucci note I am 99% certain I'm just crazy paranoid :p", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 452193799985713152, + "in_reply_to_status_id_str": "452193799985713152", + "in_reply_to_user_id": 19134956, + "in_reply_to_user_id_str": "19134956", + "in_reply_to_screen_name": "piannucci", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 04 21:20:51 +0000 2014", + "id": 452194108850069504, + "id_str": "452194108850069504", + "text": "@piannucci with what excuse, when I answered?", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 452193799985713152, + "in_reply_to_status_id_str": "452193799985713152", + "in_reply_to_user_id": 19134956, + "in_reply_to_user_id_str": "19134956", + "in_reply_to_screen_name": "piannucci", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 04 21:20:51 +0000 2014", + "id": 452194108850069504, + "id_str": "452194108850069504", + "text": "@piannucci with what excuse, when I answered?", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 452193799985713152, + "in_reply_to_status_id_str": "452193799985713152", + "in_reply_to_user_id": 19134956, + "in_reply_to_user_id_str": "19134956", + "in_reply_to_screen_name": "piannucci", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 04 21:15:44 +0000 2014", + "id": 452192821194526721, + "id_str": "452192821194526721", + "text": "@m1sp he does pull off an act of heroism in this book, but I'd lay the blame for that at Houri's feet. Wimmins always getting him in trouble", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 452190874433114113, + "in_reply_to_status_id_str": "452190874433114113", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 04 21:10:47 +0000 2014", + "id": 452191573321994240, + "id_str": "452191573321994240", + "text": "@m1sp well, he's a good way off from his \"I don't even care anymore\" point. But... he hasn't been getting good grades in hero class.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 452190874433114113, + "in_reply_to_status_id_str": "452190874433114113", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 04 21:05:44 +0000 2014", + "id": 452190303668420608, + "id_str": "452190303668420608", + "text": "@m1sp zomg mind sync \n\n\"how very Slytherin :3\"", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 452189657908781056, + "in_reply_to_status_id_str": "452189657908781056", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 04 21:01:18 +0000 2014", + "id": 452189187865706497, + "id_str": "452189187865706497", + "text": "@m1sp http://t.co/2O9QaEh6ty", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Fri Apr 04 20:42:39 +0000 2014", + "id": 452184495463333888, + "id_str": "452184495463333888", + "text": "@rmjorg do you know how many things I've set on fire *without* trying?", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 452184212469071872, + "in_reply_to_status_id_str": "452184212469071872", + "in_reply_to_user_id": 1488337543, + "in_reply_to_user_id_str": "1488337543", + "in_reply_to_screen_name": "rmjorg", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 04 20:39:31 +0000 2014", + "id": 452183706367975424, + "id_str": "452183706367975424", + "text": "The paranoia's kicking in: she didn't call to ask if I'm satisfied with my room, she called to find out if it's safe to steal my laptop!", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 04 20:28:22 +0000 2014", + "id": 452180901221629952, + "id_str": "452180901221629952", + "text": "@rmjorg there's one more on the back aside from the microwave's power", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 452180339465535488, + "in_reply_to_status_id_str": "452180339465535488", + "in_reply_to_user_id": 1488337543, + "in_reply_to_user_id_str": "1488337543", + "in_reply_to_screen_name": "rmjorg", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 04 20:22:18 +0000 2014", + "id": 452179373039583232, + "id_str": "452179373039583232", + "text": ".@rmjorg May none doubt my words http://t.co/rvpCB8uABI", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 452178510421839872, + "in_reply_to_status_id_str": "452178510421839872", + "in_reply_to_user_id": 1488337543, + "in_reply_to_user_id_str": "1488337543", + "in_reply_to_screen_name": "rmjorg", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 18, + "favorite_count": 22, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 04 20:17:17 +0000 2014", + "id": 452178110021394433, + "id_str": "452178110021394433", + "text": "This hotel has heard the cry of the road warrior: \"more plugs!\" Plugs on the walls. Plugs on the lamps. Plugs on the MICROWAVE???", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 11, + "favorite_count": 18, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 04 19:13:14 +0000 2014", + "id": 452161990937833472, + "id_str": "452161990937833472", + "text": "@gewt @m1sp @plus_chan I can't tell if this is a confession or not", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 452161838164103169, + "in_reply_to_status_id_str": "452161838164103169", + "in_reply_to_user_id": 18125825, + "in_reply_to_user_id_str": "18125825", + "in_reply_to_screen_name": "gewt", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 04 19:08:48 +0000 2014", + "id": 452160876007550977, + "id_str": "452160876007550977", + "text": "@m1sp do y'reckon this counts as fanmail...? http://t.co/jE5tW4pLXq", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 04 18:30:49 +0000 2014", + "id": 452151317536849920, + "id_str": "452151317536849920", + "text": "@pchengi most of it was stuff I wrote months ago, and wasn’t happy with, and thereafter sank into some block", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 452150369217708032, + "in_reply_to_status_id_str": "452150369217708032", + "in_reply_to_user_id": 22619802, + "in_reply_to_user_id_str": "22619802", + "in_reply_to_screen_name": "pchengi", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 04 18:04:29 +0000 2014", + "id": 452144690721480705, + "id_str": "452144690721480705", + "text": "RT @xeni: PR weasels: it's not a “followup” if I ignored your first three emails. It's textual harassment.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Fri Apr 04 17:41:29 +0000 2014", + "id": 452138901717528576, + "id_str": "452138901717528576", + "text": "PR weasels: it's not a “followup” if I ignored your first three emails. It's textual harassment.", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 767, + "id_str": "767" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 33, + "favorite_count": 36, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 33, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 04 18:03:28 +0000 2014", + "id": 452144434239774722, + "id_str": "452144434239774722", + "text": "@blowdart obligatory remark about being unable to locate a windows phone", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 452137404548124672, + "in_reply_to_status_id_str": "452137404548124672", + "in_reply_to_user_id": 1847381, + "in_reply_to_user_id_str": "1847381", + "in_reply_to_screen_name": "blowdart", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 04 18:01:56 +0000 2014", + "id": 452144048565149696, + "id_str": "452144048565149696", + "text": "@leighalytle why did you move south again?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 452136430643335168, + "in_reply_to_status_id_str": "452136430643335168", + "in_reply_to_user_id": 14136848, + "in_reply_to_user_id_str": "14136848", + "in_reply_to_screen_name": "leighalytle", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 04 17:50:41 +0000 2014", + "id": 452141216751427584, + "id_str": "452141216751427584", + "text": "@ScaleItRon writing productivity comes and goes in bursts. In particular I seem to be on a creative/technical see-saw.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 452140799245828096, + "in_reply_to_status_id_str": "452140799245828096", + "in_reply_to_user_id": 1337194592, + "in_reply_to_user_id_str": "1337194592", + "in_reply_to_screen_name": "ScaleItRon", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 04 17:28:20 +0000 2014", + "id": 452135595159322624, + "id_str": "452135595159322624", + "text": "Just threw out 7,772 words from the draft of book 2. Should probably throw out a few more for good luck.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 04 17:05:41 +0000 2014", + "id": 452129893888057344, + "id_str": "452129893888057344", + "text": "@hinanawi_chan \\o/", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 452129471936872449, + "in_reply_to_status_id_str": "452129471936872449", + "in_reply_to_user_id": 2336014178, + "in_reply_to_user_id_str": "2336014178", + "in_reply_to_screen_name": "hinanawi_chan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Fri Apr 04 16:54:11 +0000 2014", + "id": 452127000820744192, + "id_str": "452127000820744192", + "text": "Melissa Elliott and the Quest to get Tab Stop Sizes to be Consistent Across Documents: a novel of tears and triumph", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 7, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 04 16:50:06 +0000 2014", + "id": 452125974076096512, + "id_str": "452125974076096512", + "text": "@m1sp my husband hasn't even read the first one yet, he's right out", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 452125794693689344, + "in_reply_to_status_id_str": "452125794693689344", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 04 16:47:48 +0000 2014", + "id": 452125393105854464, + "id_str": "452125393105854464", + "text": "@m1sp this is the current state of the dedication page in book 2 http://t.co/rJw0BYJUJw", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 5, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 04 16:04:43 +0000 2014", + "id": 452114551103057920, + "id_str": "452114551103057920", + "text": "@winocm @demize95 @m1sp it’s a trick. This is how he tricked me into following him.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 452114426854797313, + "in_reply_to_status_id_str": "452114426854797313", + "in_reply_to_user_id": 428413732, + "in_reply_to_user_id_str": "428413732", + "in_reply_to_screen_name": "winocm", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 5, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 04 15:59:12 +0000 2014", + "id": 452113164067667968, + "id_str": "452113164067667968", + "text": "@m1sp http://t.co/xazNX3gQ6k", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 452110189903110145, + "in_reply_to_status_id_str": "452110189903110145", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Fri Apr 04 15:41:44 +0000 2014", + "id": 452108766356709377, + "id_str": "452108766356709377", + "text": "@m1sp now find me a Red Swan", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 452107525773463552, + "in_reply_to_status_id_str": "452107525773463552", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 04 15:41:22 +0000 2014", + "id": 452108674753118208, + "id_str": "452108674753118208", + "text": "RT @puellavulnerata: http://t.co/4COaA8vHU1 \"This paper has been temporarily removed. It will return shortly.\" That sounds ... worrying. Ho…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Fri Apr 04 15:39:51 +0000 2014", + "id": 452108292764889091, + "id_str": "452108292764889091", + "text": "http://t.co/4COaA8vHU1 \"This paper has been temporarily removed. It will return shortly.\" That sounds ... worrying. Hope it does return. :/", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 54666727, + "id_str": "54666727" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 7, + "favorite_count": 2, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/4COaA8vHU1", + "expanded_url": "http://dualec.org/DualECTLS.pdf", + "display_url": "dualec.org/DualECTLS.pdf", + "indices": [ + 0, + 22 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 7, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 04 15:40:08 +0000 2014", + "id": 452108363938422784, + "id_str": "452108363938422784", + "text": "RT @m1sp: It's just beautiful that \"black swan\" was used in metaphors to represent a categorical impossibility... until they found them in …", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Fri Apr 04 15:25:39 +0000 2014", + "id": 452104719603748865, + "id_str": "452104719603748865", + "text": "It's just beautiful that \"black swan\" was used in metaphors to represent a categorical impossibility... until they found them in Australia", + "source": "TweetDeck", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 1007638597, + "id_str": "1007638597" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 18, + "favorite_count": 17, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 18, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 04 15:31:42 +0000 2014", + "id": 452106242966970368, + "id_str": "452106242966970368", + "text": "@m1sp … I thought black swans were a thing in Europe and just considered evil", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 452104719603748865, + "in_reply_to_status_id_str": "452104719603748865", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 04 15:31:02 +0000 2014", + "id": 452106076104962048, + "id_str": "452106076104962048", + "text": "@Knomes I assure you MS has two distinct teams for that… they simply managed to miss it entirely", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 452105649157967872, + "in_reply_to_status_id_str": "452105649157967872", + "in_reply_to_user_id": 14838830, + "in_reply_to_user_id_str": "14838830", + "in_reply_to_screen_name": "Knomes", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 04 15:26:51 +0000 2014", + "id": 452105023267561472, + "id_str": "452105023267561472", + "text": "RT @puellavulnerata: @munin @0xabad1dea Looks like he used to be an NSA lawyer: http://t.co/s1Q7PWXsU5", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Fri Apr 04 15:26:20 +0000 2014", + "id": 452104891620532224, + "id_str": "452104891620532224", + "text": "@munin @0xabad1dea Looks like he used to be an NSA lawyer: http://t.co/s1Q7PWXsU5", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 452103100728635392, + "in_reply_to_status_id_str": "452103100728635392", + "in_reply_to_user_id": 8513352, + "in_reply_to_user_id_str": "8513352", + "in_reply_to_screen_name": "munin", + "user": { + "id": 54666727, + "id_str": "54666727" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 1, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/s1Q7PWXsU5", + "expanded_url": "http://cryptome.org/jya/nsa-wiretap98.htm", + "display_url": "cryptome.org/jya/nsa-wireta…", + "indices": [ + 59, + 81 + ] + } + ], + "user_mentions": [ + { + "screen_name": "munin", + "name": "munin", + "id": 8513352, + "id_str": "8513352", + "indices": [ + 0, + 6 + ] + }, + { + "screen_name": "0xabad1dea", + "name": "Melissa", + "id": 126030998, + "id_str": "126030998", + "indices": [ + 7, + 18 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 3, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 04 15:21:27 +0000 2014", + "id": 452103662043951104, + "id_str": "452103662043951104", + "text": "RT @puellavulnerata: WaPo describes switching the constants to ones with a known exponent to get an NSA-like view for testing as \"making up…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Fri Apr 04 15:18:25 +0000 2014", + "id": 452102899053506560, + "id_str": "452102899053506560", + "text": "WaPo describes switching the constants to ones with a known exponent to get an NSA-like view for testing as \"making up a different protocol\"", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 452100771077582849, + "in_reply_to_status_id_str": "452100771077582849", + "in_reply_to_user_id": 54666727, + "in_reply_to_user_id_str": "54666727", + "in_reply_to_screen_name": "puellavulnerata", + "user": { + "id": 54666727, + "id_str": "54666727" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 5, + "favorite_count": 0, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 5, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 04 15:21:09 +0000 2014", + "id": 452103588379394049, + "id_str": "452103588379394049", + "text": "RT @puellavulnerata: http://t.co/XOEbwbTiIZ WaPo claims \"no one has found a backdoor\" in Dual EC DRBG (!)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Fri Apr 04 15:09:58 +0000 2014", + "id": 452100771077582849, + "id_str": "452100771077582849", + "text": "http://t.co/XOEbwbTiIZ WaPo claims \"no one has found a backdoor\" in Dual EC DRBG (!)", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 54666727, + "id_str": "54666727" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 8, + "favorite_count": 3, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/XOEbwbTiIZ", + "expanded_url": "http://www.washingtonpost.com/news/volokh-conspiracy/wp/2014/04/03/hiding-in-plain-sight-evidence-that-nsa-isnt-wrecking-internet-security/", + "display_url": "washingtonpost.com/news/volokh-co…", + "indices": [ + 0, + 22 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 8, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 04 15:16:51 +0000 2014", + "id": 452102504495714304, + "id_str": "452102504495714304", + "text": "@puellavulnerata one of the comments says the author is NSA-affiliated…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 452100771077582849, + "in_reply_to_status_id_str": "452100771077582849", + "in_reply_to_user_id": 54666727, + "in_reply_to_user_id_str": "54666727", + "in_reply_to_screen_name": "puellavulnerata", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 04 15:07:56 +0000 2014", + "id": 452100262996754432, + "id_str": "452100262996754432", + "text": "@zhuowei @m1sp @winocm I’d put Mispy in my BIOS any day", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 452100094490591232, + "in_reply_to_status_id_str": "452100094490591232", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 04 15:07:09 +0000 2014", + "id": 452100061779197952, + "id_str": "452100061779197952", + "text": "My white chocolate mocha habit can be pinned on a single free drink token Sheetz gave me in 2009. That’s a pretty effective ROI", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 04 15:03:09 +0000 2014", + "id": 452099056417112064, + "id_str": "452099056417112064", + "text": "@m1sp @winocm the way they implemented it is nifty because it’s actually copy paste friendly (and API clients get the raw Unicode)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 452098372082495489, + "in_reply_to_status_id_str": "452098372082495489", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 04 14:58:33 +0000 2014", + "id": 452097899447742464, + "id_str": "452097899447742464", + "text": "@m1sp @winocm oh \n\nOh \n\nOhhhhh\n\n🎉🎈🎊 welcome to the party, view on web", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 452097691267260416, + "in_reply_to_status_id_str": "452097691267260416", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 04 14:57:26 +0000 2014", + "id": 452097620111282176, + "id_str": "452097620111282176", + "text": "How on earth did holding down the space bar circumvent the login process, xbox? Event buffer overflow?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 15, + "favorite_count": 8, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 04 14:55:58 +0000 2014", + "id": 452097249565478912, + "id_str": "452097249565478912", + "text": "@m1sp @winocm BECAUSE WE DIAMOND YOU. \n\nI could only get “old school” emoji to work with the new soft-color system in a bio.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 452096849172639745, + "in_reply_to_status_id_str": "452096849172639745", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 04 14:54:59 +0000 2014", + "id": 452097003628285952, + "id_str": "452097003628285952", + "text": "RT @gollmann: Child finds Xbox security flaw http://t.co/ZzFOrwNYL6 < 5yr old", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Fri Apr 04 13:09:39 +0000 2014", + "id": 452070494532280320, + "id_str": "452070494532280320", + "text": "Child finds Xbox security flaw http://t.co/ZzFOrwNYL6 < 5yr old", + "source": "Twitter for Android", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 18163953, + "id_str": "18163953" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 41, + "favorite_count": 14, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/ZzFOrwNYL6", + "expanded_url": "http://www.bbc.co.uk/news/technology-26879185", + "display_url": "bbc.co.uk/news/technolog…", + "indices": [ + 31, + 53 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 41, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 04 14:51:58 +0000 2014", + "id": 452096242144010240, + "id_str": "452096242144010240", + "text": "RT @mrkoot: Using Frankencerts for Automated Adversarial Testing of Cert Validation in SSL/TLS Impl (.pdf, Brubaker et al., 2014) http://t.…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Fri Apr 04 13:24:21 +0000 2014", + "id": 452074193471807489, + "id_str": "452074193471807489", + "text": "Using Frankencerts for Automated Adversarial Testing of Cert Validation in SSL/TLS Impl (.pdf, Brubaker et al., 2014) http://t.co/difLBwrOp4", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 237235302, + "id_str": "237235302" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 5, + "favorite_count": 6, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/difLBwrOp4", + "expanded_url": "http://www.cs.utexas.edu/~shmat/shmat_oak14.pdf", + "display_url": "cs.utexas.edu/~shmat/shmat_o…", + "indices": [ + 118, + 140 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 5, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 04 14:44:01 +0000 2014", + "id": 452094243910455296, + "id_str": "452094243910455296", + "text": "@Talen_Lee perl is disgusting, total turn-off", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 452064308134817792, + "in_reply_to_status_id_str": "452064308134817792", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 04 14:42:39 +0000 2014", + "id": 452093897175728128, + "id_str": "452093897175728128", + "text": "@zbender http://t.co/KLJdGP3kGj", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 452093049020366848, + "in_reply_to_status_id_str": "452093049020366848", + "in_reply_to_user_id": 6661092, + "in_reply_to_user_id_str": "6661092", + "in_reply_to_screen_name": "zbender", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Fri Apr 04 14:29:05 +0000 2014", + "id": 452090484375453696, + "id_str": "452090484375453696", + "text": "Praise the maps.app for we have found a font of fancy coffee and meatball subs in this forsaken wilderness", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 04 13:53:33 +0000 2014", + "id": 452081541532114945, + "id_str": "452081541532114945", + "text": "Welcome back, Turkey. Start planning now for the next blocked website. Resist censorship on both technical and political fronts.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 8, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 04 13:50:15 +0000 2014", + "id": 452080711529689088, + "id_str": "452080711529689088", + "text": "RT @renesys: Twitter is no longer blocked in Turkey. Google/Level3/etc DNS still hijacked. YouTube still DNS poisoned.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Fri Apr 04 09:57:38 +0000 2014", + "id": 452022173310676993, + "id_str": "452022173310676993", + "text": "Twitter is no longer blocked in Turkey. Google/Level3/etc DNS still hijacked. YouTube still DNS poisoned.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 69706816, + "id_str": "69706816" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 107, + "favorite_count": 22, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 107, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 04 13:21:02 +0000 2014", + "id": 452073356788252672, + "id_str": "452073356788252672", + "text": "@_larry0 D’: your beard", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451954485313957889, + "in_reply_to_status_id_str": "451954485313957889", + "in_reply_to_user_id": 17055552, + "in_reply_to_user_id_str": "17055552", + "in_reply_to_screen_name": "_larry0", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 04 01:36:30 +0000 2014", + "id": 451896058038468608, + "id_str": "451896058038468608", + "text": "@0xdeadbabe I'm reviewing which steam games I own contain the fewest megabytes now.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 451895612141608961, + "in_reply_to_status_id_str": "451895612141608961", + "in_reply_to_user_id": 19806908, + "in_reply_to_user_id_str": "19806908", + "in_reply_to_screen_name": "0xdeadbabe", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 04 01:30:36 +0000 2014", + "id": 451894573187760128, + "id_str": "451894573187760128", + "text": "Well, what do I pay for all this cellular data for, if not to install Steam over LTE", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 12, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 04 01:01:49 +0000 2014", + "id": 451887327573733376, + "id_str": "451887327573733376", + "text": "@_larry0 🎊", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451887066016931840, + "in_reply_to_status_id_str": "451887066016931840", + "in_reply_to_user_id": 17055552, + "in_reply_to_user_id_str": "17055552", + "in_reply_to_screen_name": "_larry0", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Fri Apr 04 00:59:51 +0000 2014", + "id": 451886831978942464, + "id_str": "451886831978942464", + "text": "RT @PHP_CEO: MY FRIEND BRENDAN EICH’S SUPPORT OF PEP8 IS BEING BLOWN GREATLY OUT OF PROPORTION BY THE MEDIA", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Thu Apr 03 19:44:59 +0000 2014", + "id": 451807593175220224, + "id_str": "451807593175220224", + "text": "MY FRIEND BRENDAN EICH’S SUPPORT OF PEP8 IS BEING BLOWN GREATLY OUT OF PROPORTION BY THE MEDIA", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2317524115, + "id_str": "2317524115" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 67, + "favorite_count": 71, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 67, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 04 00:58:21 +0000 2014", + "id": 451886456060256256, + "id_str": "451886456060256256", + "text": "@eevee well it really, really depends on the font, doesn’t it? Though the list of emote people is clearly Japanese in origin.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451782096231473152, + "in_reply_to_status_id_str": "451782096231473152", + "in_reply_to_user_id": 14412937, + "in_reply_to_user_id_str": "14412937", + "in_reply_to_screen_name": "eevee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 04 00:52:30 +0000 2014", + "id": 451884983238815744, + "id_str": "451884983238815744", + "text": "@NaNoWriMo a backstory as detailed as the protagonist’s", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451881780782850048, + "in_reply_to_status_id_str": "451881780782850048", + "in_reply_to_user_id": 8984102, + "in_reply_to_user_id_str": "8984102", + "in_reply_to_screen_name": "NaNoWriMo", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 04 00:51:31 +0000 2014", + "id": 451884737448398848, + "id_str": "451884737448398848", + "text": "@blowdart @vogon hey, I married a larper", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451884594229288960, + "in_reply_to_status_id_str": "451884594229288960", + "in_reply_to_user_id": 1847381, + "in_reply_to_user_id_str": "1847381", + "in_reply_to_screen_name": "blowdart", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 04 00:49:29 +0000 2014", + "id": 451884223591612416, + "id_str": "451884223591612416", + "text": "@blowdart @vogon 😻💞😻", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451884081295278080, + "in_reply_to_status_id_str": "451884081295278080", + "in_reply_to_user_id": 1847381, + "in_reply_to_user_id_str": "1847381", + "in_reply_to_screen_name": "blowdart", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Fri Apr 04 00:47:57 +0000 2014", + "id": 451883840689438720, + "id_str": "451883840689438720", + "text": "@blowdart 👬💕", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451883624690749440, + "in_reply_to_status_id_str": "451883624690749440", + "in_reply_to_user_id": 1847381, + "in_reply_to_user_id_str": "1847381", + "in_reply_to_screen_name": "blowdart", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Fri Apr 04 00:46:42 +0000 2014", + "id": 451883525177106432, + "id_str": "451883525177106432", + "text": "@blowdart well there’s a correlation between me writing yaoi fiction and…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451876004605083648, + "in_reply_to_status_id_str": "451876004605083648", + "in_reply_to_user_id": 1847381, + "in_reply_to_user_id_str": "1847381", + "in_reply_to_screen_name": "blowdart", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 04 00:37:00 +0000 2014", + "id": 451881083072942081, + "id_str": "451881083072942081", + "text": "@vogon yeah. Ugh. I have a terrible headache and I can’t word good. Sorry.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451880778146664448, + "in_reply_to_status_id_str": "451880778146664448", + "in_reply_to_user_id": 6326912, + "in_reply_to_user_id_str": "6326912", + "in_reply_to_screen_name": "vogon", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 04 00:33:49 +0000 2014", + "id": 451880283592466432, + "id_str": "451880283592466432", + "text": "@vogon I follow her (trans person in question) on twitter. She seems to take it as meant lighthearted…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451843584690356224, + "in_reply_to_status_id_str": "451843584690356224", + "in_reply_to_user_id": 6326912, + "in_reply_to_user_id_str": "6326912", + "in_reply_to_screen_name": "vogon", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 04 00:27:06 +0000 2014", + "id": 451878592540995584, + "id_str": "451878592540995584", + "text": "Please update your smoke alarm over wifi https://t.co/6CYXmPhC9t", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 10, + "favorite_count": 6, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 04 00:17:47 +0000 2014", + "id": 451876245438205952, + "id_str": "451876245438205952", + "text": "RT @GoldS_TCRF: So it turns that out that Lakitu's Spiny egg throwing routine in SMB1 was bugged this whole time..for ~30 years.\nhttp://t.c…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Thu Apr 03 15:17:27 +0000 2014", + "id": 451740266949779456, + "id_str": "451740266949779456", + "text": "So it turns that out that Lakitu's Spiny egg throwing routine in SMB1 was bugged this whole time..for ~30 years.\nhttp://t.co/x3C0StbGh7", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 1489385234, + "id_str": "1489385234" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 71, + "favorite_count": 25, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/x3C0StbGh7", + "expanded_url": "http://tcrf.net/Super_Mario_Bros.#Unused_Spiny_Egg_Behavior", + "display_url": "tcrf.net/Super_Mario_Br…", + "indices": [ + 113, + 135 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 71, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 04 00:06:57 +0000 2014", + "id": 451873522215038976, + "id_str": "451873522215038976", + "text": "@m1sp you know of one action specifically calculated to be extremely clear about the condition of one’s heart, and…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451803171816353792, + "in_reply_to_status_id_str": "451803171816353792", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Apr 04 00:02:30 +0000 2014", + "id": 451872400498778112, + "id_str": "451872400498778112", + "text": "RT @Kufat: .@0xabad1dea \"Oracle CEO Larry Ellison topped the Forbes Most Punchable list for the second year running...\" http://t.co/mgSTTiu…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Fri Apr 04 00:01:04 +0000 2014", + "id": 451872041978044416, + "id_str": "451872041978044416", + "text": ".@0xabad1dea \"Oracle CEO Larry Ellison topped the Forbes Most Punchable list for the second year running...\" http://t.co/mgSTTiuCkD", + "source": "MetroTwit", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 207691003, + "id_str": "207691003" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 1, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/mgSTTiuCkD", + "expanded_url": "http://www.theonion.com/articles/forbes-releases-2014-list-of-most-punchable-ceos,35694/", + "display_url": "theonion.com/articles/forbe…", + "indices": [ + 109, + 131 + ] + } + ], + "user_mentions": [ + { + "screen_name": "0xabad1dea", + "name": "Melissa", + "id": 126030998, + "id_str": "126030998", + "indices": [ + 1, + 12 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 2, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 03 23:58:44 +0000 2014", + "id": 451871453588496384, + "id_str": "451871453588496384", + "text": "@demize95 @Talen_Lee yes. The convention is partly run by people from V", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451871076213981184, + "in_reply_to_status_id_str": "451871076213981184", + "in_reply_to_user_id": 137133048, + "in_reply_to_user_id_str": "137133048", + "in_reply_to_screen_name": "demize95", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 03 23:57:54 +0000 2014", + "id": 451871245559410689, + "id_str": "451871245559410689", + "text": "@almightygod bi. The word he’s looking for is bi. For Jesus.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451787832122548224, + "in_reply_to_status_id_str": "451787832122548224", + "in_reply_to_user_id": 15659248, + "in_reply_to_user_id_str": "15659248", + "in_reply_to_screen_name": "almightygod", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 03 23:56:45 +0000 2014", + "id": 451870954952876032, + "id_str": "451870954952876032", + "text": "@demize95 @Talen_Lee source Boston", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451870899205988352, + "in_reply_to_status_id_str": "451870899205988352", + "in_reply_to_user_id": 137133048, + "in_reply_to_user_id_str": "137133048", + "in_reply_to_screen_name": "demize95", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 03 23:50:57 +0000 2014", + "id": 451869494286118912, + "id_str": "451869494286118912", + "text": "@m1sp kindly avoid huffing chemicals", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451727394802372608, + "in_reply_to_status_id_str": "451727394802372608", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 03 23:44:44 +0000 2014", + "id": 451867929865629696, + "id_str": "451867929865629696", + "text": "@blowdart I award myself one (1) intercorporate diplomacy point", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 451865556723855360, + "in_reply_to_status_id_str": "451865556723855360", + "in_reply_to_user_id": 1847381, + "in_reply_to_user_id_str": "1847381", + "in_reply_to_screen_name": "blowdart", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 03 23:43:59 +0000 2014", + "id": 451867742325723137, + "id_str": "451867742325723137", + "text": "@Talen_Lee I don't mind working the convention but it's going to be exhausting", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 451865087397994496, + "in_reply_to_status_id_str": "451865087397994496", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 03 23:30:56 +0000 2014", + "id": 451864457812402177, + "id_str": "451864457812402177", + "text": "@Talen_Lee No. Not leaving until Sunday. And then it's convention week!!!", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 451864184553091072, + "in_reply_to_status_id_str": "451864184553091072", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 03 23:24:02 +0000 2014", + "id": 451862720061931520, + "id_str": "451862720061931520", + "text": "Dear people DM'ing me: I get a phone alert with the beginning of the DM, but the Twitter interface shows nothing. @Talen_Lee @blowdart", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 03 23:03:36 +0000 2014", + "id": 451857576721137665, + "id_str": "451857576721137665", + "text": "@bcrypt @fredowsley yeh gimme a few", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 451857347518808064, + "in_reply_to_status_id_str": "451857347518808064", + "in_reply_to_user_id": 968881477, + "in_reply_to_user_id_str": "968881477", + "in_reply_to_screen_name": "bcrypt", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 03 23:03:19 +0000 2014", + "id": 451857505887731712, + "id_str": "451857505887731712", + "text": ".@demize95 advanced persistent threat", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 451856755702525953, + "in_reply_to_status_id_str": "451856755702525953", + "in_reply_to_user_id": 137133048, + "in_reply_to_user_id_str": "137133048", + "in_reply_to_screen_name": "demize95", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 03 22:51:37 +0000 2014", + "id": 451854563247943680, + "id_str": "451854563247943680", + "text": "\"There's no password on our free wifi!\" Oh no the APT is going to get me! Wait. This is a rural hotel. It's me. I'm the APT.", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 17, + "favorite_count": 30, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 03 22:34:17 +0000 2014", + "id": 451850198848110592, + "id_str": "451850198848110592", + "text": "@m1sp I passed a farm called Clarion :o", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 451849201517740033, + "in_reply_to_status_id_str": "451849201517740033", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 03 22:30:00 +0000 2014", + "id": 451849121448869888, + "id_str": "451849121448869888", + "text": "@m1sp apparently ??", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 451823702305280001, + "in_reply_to_status_id_str": "451823702305280001", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 03 22:27:13 +0000 2014", + "id": 451848424007421952, + "id_str": "451848424007421952", + "text": "Just passed over thirty consecutive horse farms every one of which had a fancy name on a plaque: Piedmont, Edgeworth, Airlisle, Clarion", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 03 20:08:29 +0000 2014", + "id": 451813508930621440, + "id_str": "451813508930621440", + "text": "@m1sp thinking of you in this forsaken land http://t.co/aBUpXfs6r8", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 03 18:18:32 +0000 2014", + "id": 451785839404916737, + "id_str": "451785839404916737", + "text": "@blowdart @vogon so I'm out of office ATM and I can't check my own email for hours. Hang on a sec...", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 451785338575261696, + "in_reply_to_status_id_str": "451785338575261696", + "in_reply_to_user_id": 1847381, + "in_reply_to_user_id_str": "1847381", + "in_reply_to_screen_name": "blowdart", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 03 18:14:16 +0000 2014", + "id": 451784763532005376, + "id_str": "451784763532005376", + "text": "@vogon @blowdart you'd think after all that fuss about follow back begging...", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 451784207266611200, + "in_reply_to_status_id_str": "451784207266611200", + "in_reply_to_user_id": 6326912, + "in_reply_to_user_id_str": "6326912", + "in_reply_to_screen_name": "vogon", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 03 18:06:42 +0000 2014", + "id": 451782859679076353, + "id_str": "451782859679076353", + "text": "In the sort of bookstore that puts Kevin Mitnick and Richard Clarke in the science section O.o", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 03 18:05:21 +0000 2014", + "id": 451782523392385025, + "id_str": "451782523392385025", + "text": "@Mordicant I secretly opine that BASIC in a Commodore 64 emulator is not considered harmful", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 451756146450509824, + "in_reply_to_status_id_str": "451756146450509824", + "in_reply_to_user_id": 21220563, + "in_reply_to_user_id_str": "21220563", + "in_reply_to_screen_name": "Mordicant", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 03 14:53:38 +0000 2014", + "id": 451734273008369665, + "id_str": "451734273008369665", + "text": "@Herrackman @Talen_Lee this is true.\nalso, Rocky is the dumbest name for a mountain range ever.", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 451731825862254592, + "in_reply_to_status_id_str": "451731825862254592", + "in_reply_to_user_id": 84528836, + "in_reply_to_user_id_str": "84528836", + "in_reply_to_screen_name": "Herrackman", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 03 14:36:20 +0000 2014", + "id": 451729919341789184, + "id_str": "451729919341789184", + "text": "@Talen_Lee the south will rise again virginia", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 451720593327419392, + "in_reply_to_status_id_str": "451720593327419392", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 03 14:35:16 +0000 2014", + "id": 451729654022676480, + "id_str": "451729654022676480", + "text": "@surajeet_ghosh because that's where my husband parked.", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 451721347278729216, + "in_reply_to_status_id_str": "451721347278729216", + "in_reply_to_user_id": 230398655, + "in_reply_to_user_id_str": "230398655", + "in_reply_to_screen_name": "surajeet_ghosh", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 03 14:34:49 +0000 2014", + "id": 451729537651728385, + "id_str": "451729537651728385", + "text": "@sakjur Boston is where I was twelve hours ago", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 451723267817340928, + "in_reply_to_status_id_str": "451723267817340928", + "in_reply_to_user_id": 63478005, + "in_reply_to_user_id_str": "63478005", + "in_reply_to_screen_name": "sakjur", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 03 13:53:04 +0000 2014", + "id": 451719031666769920, + "id_str": "451719031666769920", + "text": "I woke up in a parking lot in Virginia. It’s hot out and people talk funny. Did I really spend half my life here?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 6, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 03 13:48:26 +0000 2014", + "id": 451717868288475136, + "id_str": "451717868288475136", + "text": "RT @OxbloodRuffin: US secretly built 'Cuban Twitter' to stir unrest http://t.co/Nm0ViXZFGK", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Thu Apr 03 11:40:13 +0000 2014", + "id": 451685597879345152, + "id_str": "451685597879345152", + "text": "US secretly built 'Cuban Twitter' to stir unrest http://t.co/Nm0ViXZFGK", + "source": "Tweet Button", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 10027222, + "id_str": "10027222" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 7, + "favorite_count": 0, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/Nm0ViXZFGK", + "expanded_url": "http://www.sfgate.com/business/technology/article/US-secretly-built-Cuban-Twitter-to-stir-unrest-5372422.php", + "display_url": "sfgate.com/business/techn…", + "indices": [ + 49, + 71 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 7, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 03 13:45:06 +0000 2014", + "id": 451717027108237312, + "id_str": "451717027108237312", + "text": "RT @AlexanderAbdo: Not convinced that secret oversight of secret #NSA surveillance needs to be reformed? http://t.co/3KNZUy7McE", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Wed Apr 02 19:58:08 +0000 2014", + "id": 451448514669588480, + "id_str": "451448514669588480", + "text": "Not convinced that secret oversight of secret #NSA surveillance needs to be reformed? http://t.co/3KNZUy7McE", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 495463485, + "id_str": "495463485" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 84, + "favorite_count": 37, + "entities": { + "hashtags": [ + { + "text": "NSA", + "indices": [ + 46, + 50 + ] + } + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ], + "media": [ + { + "id": 451448514673782784, + "id_str": "451448514673782784", + "indices": [ + 86, + 108 + ], + "media_url": "http://pbs.twimg.com/media/BkPeCD-CMAAsuMp.png", + "media_url_https": "https://pbs.twimg.com/media/BkPeCD-CMAAsuMp.png", + "url": "http://t.co/3KNZUy7McE", + "display_url": "pic.twitter.com/3KNZUy7McE", + "expanded_url": "http://twitter.com/AlexanderAbdo/status/451448514669588480/photo/1", + "type": "photo", + "sizes": { + "medium": { + "w": 600, + "h": 356, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 202, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 771, + "h": 458, + "resize": "fit" + } + } + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 84, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 03 04:35:40 +0000 2014", + "id": 451578756465848321, + "id_str": "451578756465848321", + "text": "The humans have embarked on their journey. Now to see if I can sleep in a car while my husband insists on playing music ಠ_ಠ", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 03 03:53:35 +0000 2014", + "id": 451568166611595264, + "id_str": "451568166611595264", + "text": "@q3hardcore @m1sp because they got sick of waiting for desktop browsers to uniformly implement it", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451567834942824449, + "in_reply_to_status_id_str": "451567834942824449", + "in_reply_to_user_id": 361023488, + "in_reply_to_user_id_str": "361023488", + "in_reply_to_screen_name": "q3hardcore", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 03 03:49:20 +0000 2014", + "id": 451567096745295872, + "id_str": "451567096745295872", + "text": "@q3hardcore @Misp absolutely. Like no one else.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 361023488, + "in_reply_to_user_id_str": "361023488", + "in_reply_to_screen_name": "q3hardcore", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 03 03:39:23 +0000 2014", + "id": 451564595203682304, + "id_str": "451564595203682304", + "text": "@m1sp I'm 1200 words into this Bars x Luz omake and I'm *just* getting around to starting the actual point", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 03 03:35:17 +0000 2014", + "id": 451563561442349056, + "id_str": "451563561442349056", + "text": "Oh good twitter API is returning nonsense errors about endpoints and duplicate tweets 😐", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 4, + "favorite_count": 5, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 03 03:34:06 +0000 2014", + "id": 451563262673682432, + "id_str": "451563262673682432", + "text": "@m1sp @Talen_Lee snark aside that looks like real anime titling", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451563098332082176, + "in_reply_to_status_id_str": "451563098332082176", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 03 03:32:44 +0000 2014", + "id": 451562921584123905, + "id_str": "451562921584123905", + "text": "@Talen_Lee needs more villain", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451554682192674816, + "in_reply_to_status_id_str": "451554682192674816", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 03 03:30:27 +0000 2014", + "id": 451562343651377152, + "id_str": "451562343651377152", + "text": "RT @deadgirlfriend: RT if u remember when apple was a FRUIT,kids played OUTSIDE not on ipads, and decomposing VICTIMS of the BUBONIC plague…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Wed Apr 02 20:36:52 +0000 2014", + "id": 451458264799006721, + "id_str": "451458264799006721", + "text": "RT if u remember when apple was a FRUIT,kids played OUTSIDE not on ipads, and decomposing VICTIMS of the BUBONIC plague LITTERED the STREETS", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 282869398, + "id_str": "282869398" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 383, + "favorite_count": 457, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 383, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 03 03:13:55 +0000 2014", + "id": 451558186567618560, + "id_str": "451558186567618560", + "text": "@jesster_king @m1sp yes. I diamond him so hard. http://t.co/913J5Dv1dM", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 451557279838773248, + "in_reply_to_status_id_str": "451557279838773248", + "in_reply_to_user_id": 46763517, + "in_reply_to_user_id_str": "46763517", + "in_reply_to_screen_name": "jesster_king", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 03 02:19:14 +0000 2014", + "id": 451544422837411840, + "id_str": "451544422837411840", + "text": "RT @joshcorman: Roll Call! RT if coming to / speaking at SOURCE Boston next week http://t.co/wt3iD5JLtl #srcbos @SOURCEConf", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Thu Apr 03 00:41:12 +0000 2014", + "id": 451519751102410753, + "id_str": "451519751102410753", + "text": "Roll Call! RT if coming to / speaking at SOURCE Boston next week http://t.co/wt3iD5JLtl #srcbos @SOURCEConf", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 40706825, + "id_str": "40706825" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 13, + "favorite_count": 1, + "entities": { + "hashtags": [ + { + "text": "srcbos", + "indices": [ + 88, + 95 + ] + } + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/wt3iD5JLtl", + "expanded_url": "http://sourceconference.com/boston/speakers_2014.html", + "display_url": "sourceconference.com/boston/speaker…", + "indices": [ + 65, + 87 + ] + } + ], + "user_mentions": [ + { + "screen_name": "SOURCEConf", + "name": "SOURCE Conference", + "id": 13867762, + "id_str": "13867762", + "indices": [ + 96, + 107 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 13, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 03 02:19:10 +0000 2014", + "id": 451544408740335616, + "id_str": "451544408740335616", + "text": "@joshcorman @SOURCEConf see you there, chief", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451519751102410753, + "in_reply_to_status_id_str": "451519751102410753", + "in_reply_to_user_id": 40706825, + "in_reply_to_user_id_str": "40706825", + "in_reply_to_screen_name": "joshcorman", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 03 02:15:16 +0000 2014", + "id": 451543426153349121, + "id_str": "451543426153349121", + "text": "@Talen_Lee wow uh, I assume it most definitely does not predate the Jetsons", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451542890582261761, + "in_reply_to_status_id_str": "451542890582261761", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 03 02:08:47 +0000 2014", + "id": 451541795412119552, + "id_str": "451541795412119552", + "text": "@FakeUnicode @Kufat You managed to break pastebin, it is considering the raw.php as a download. Viewing the in-site version works.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 451541223371595776, + "in_reply_to_status_id_str": "451541223371595776", + "in_reply_to_user_id": 2183231114, + "in_reply_to_user_id_str": "2183231114", + "in_reply_to_screen_name": "FakeUnicode", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 03 02:05:42 +0000 2014", + "id": 451541018706706432, + "id_str": "451541018706706432", + "text": "@Shadowhawk_64 assuming large and blue is not your default font, I declare victory", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 451540602753019905, + "in_reply_to_status_id_str": "451540602753019905", + "in_reply_to_user_id": 167585710, + "in_reply_to_user_id_str": "167585710", + "in_reply_to_screen_name": "Shadowhawk_64", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 03 02:01:40 +0000 2014", + "id": 451540004272345088, + "id_str": "451540004272345088", + "text": "@Shadowhawk_64 it might look more (or less?) obnoxious if you check it from Web, I don’t know what Android does with those glyphs :)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451539773170020352, + "in_reply_to_status_id_str": "451539773170020352", + "in_reply_to_user_id": 167585710, + "in_reply_to_user_id_str": "167585710", + "in_reply_to_screen_name": "Shadowhawk_64", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 03 01:58:32 +0000 2014", + "id": 451539214396837888, + "id_str": "451539214396837888", + "text": "@me_irl @_bam I’m afraid I can’t disclose the contents of a report though I can say I remember being involved and I didn’t (╯°□°)╯︵ ┻━┻", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451538607979765760, + "in_reply_to_status_id_str": "451538607979765760", + "in_reply_to_user_id": 16142493, + "in_reply_to_user_id_str": "16142493", + "in_reply_to_screen_name": "me_irl", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "ja" + }, + { + "created_at": "Thu Apr 03 01:56:30 +0000 2014", + "id": 451538700355518464, + "id_str": "451538700355518464", + "text": "@savagejen well good gods what else would a hungry toddler need? They sell marshmallows by the gallon if you need more :)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451536621041897472, + "in_reply_to_status_id_str": "451536621041897472", + "in_reply_to_user_id": 11324652, + "in_reply_to_user_id_str": "11324652", + "in_reply_to_screen_name": "savagejen", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 03 01:55:30 +0000 2014", + "id": 451538451310342144, + "id_str": "451538451310342144", + "text": "@FakeUnicode @Kufat can confirm, combines into flag on iOS. I wonder which one is more in-spec.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 451538236528029696, + "in_reply_to_status_id_str": "451538236528029696", + "in_reply_to_user_id": 2183231114, + "in_reply_to_user_id_str": "2183231114", + "in_reply_to_screen_name": "FakeUnicode", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 03 01:51:43 +0000 2014", + "id": 451537499656294401, + "id_str": "451537499656294401", + "text": "@DumpOnIt http://t.co/Um9HL1PaU8 \n\nBe aware that D will come out as a purple \"ID\" because reasons", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 451537289106038784, + "in_reply_to_status_id_str": "451537289106038784", + "in_reply_to_user_id": 285085831, + "in_reply_to_user_id_str": "285085831", + "in_reply_to_screen_name": "DumpOnIt", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 03 01:45:13 +0000 2014", + "id": 451535864913735680, + "id_str": "451535864913735680", + "text": "I don't know why y'all are complaining about the soft-emoji. This is 🇬🇱🇴🇷🇮🇴🇺­🇸", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 9, + "favorite_count": 11, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 03 01:44:36 +0000 2014", + "id": 451535706788462592, + "id_str": "451535706788462592", + "text": "@Kufat @h0m54r it's a Chinese flag, specifically.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 451535281997766656, + "in_reply_to_status_id_str": "451535281997766656", + "in_reply_to_user_id": 207691003, + "in_reply_to_user_id_str": "207691003", + "in_reply_to_screen_name": "Kufat", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 03 01:43:51 +0000 2014", + "id": 451535518619435010, + "id_str": "451535518619435010", + "text": "@Kufat @h0m54r to clarify: there is no D in *web twitter* specifically, @FakeUnicode couldn’t make it work", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451535281997766656, + "in_reply_to_status_id_str": "451535281997766656", + "in_reply_to_user_id": 207691003, + "in_reply_to_user_id_str": "207691003", + "in_reply_to_screen_name": "Kufat", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 03 01:42:35 +0000 2014", + "id": 451535198896029696, + "id_str": "451535198896029696", + "text": "@RSWestmoreland I mean I resented it for being ten minutes too many.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451534085950029824, + "in_reply_to_status_id_str": "451534085950029824", + "in_reply_to_user_id": 242595690, + "in_reply_to_user_id_str": "242595690", + "in_reply_to_screen_name": "RSWestmoreland", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 03 01:38:41 +0000 2014", + "id": 451534217521152000, + "id_str": "451534217521152000", + "text": "RT @h0m54r: @0xabad1dea The Unicode consortium will give you all the regional letters, but they won't give you the D?", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Thu Apr 03 01:37:48 +0000 2014", + "id": 451533996740968448, + "id_str": "451533996740968448", + "text": "@0xabad1dea The Unicode consortium will give you all the regional letters, but they won't give you the D?", + "source": "YoruFukurou", + "truncated": false, + "in_reply_to_status_id": 451533864960536576, + "in_reply_to_status_id_str": "451533864960536576", + "in_reply_to_user_id": 126030998, + "in_reply_to_user_id_str": "126030998", + "in_reply_to_screen_name": "0xabad1dea", + "user": { + "id": 65610821, + "id_str": "65610821" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 5, + "favorite_count": 6, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "0xabad1dea", + "name": "MeliSSL", + "id": 126030998, + "id_str": "126030998", + "indices": [ + 0, + 11 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 5, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 03 01:37:17 +0000 2014", + "id": 451533864960536576, + "id_str": "451533864960536576", + "text": "@h0m54r there is no plain D because ❓", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451533634214690816, + "in_reply_to_status_id_str": "451533634214690816", + "in_reply_to_user_id": 65610821, + "in_reply_to_user_id_str": "65610821", + "in_reply_to_screen_name": "h0m54r", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 03 01:34:03 +0000 2014", + "id": 451533053957898240, + "id_str": "451533053957898240", + "text": "@h0m54r come hang out on the web with the cool kids http://t.co/6oPh32k59S", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 451532868410277888, + "in_reply_to_status_id_str": "451532868410277888", + "in_reply_to_user_id": 65610821, + "in_reply_to_user_id_str": "65610821", + "in_reply_to_screen_name": "h0m54r", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 03 01:30:48 +0000 2014", + "id": 451532233107841024, + "id_str": "451532233107841024", + "text": "🇾🇪­🇸 🇭🇪🇱🇱🇴 🇮 🇼🇴🇺🇱🆔 🇱🇮🇰🇪 🇹🇴 🇧🇪 🇴🇧🇳🇴🇽🇮🇴🇺­🇸", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 22, + "favorite_count": 25, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Thu Apr 03 01:23:59 +0000 2014", + "id": 451530518996459523, + "id_str": "451530518996459523", + "text": "@starguarded I wrote another section (which was originally going to be in book 2) based on feedback which isn’t in there yet just FYI", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451530226900545536, + "in_reply_to_status_id_str": "451530226900545536", + "in_reply_to_user_id": 18947075, + "in_reply_to_user_id_str": "18947075", + "in_reply_to_screen_name": "starguarded", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 03 01:20:12 +0000 2014", + "id": 451529567078191104, + "id_str": "451529567078191104", + "text": "RT @matthew_d_green: I would also like to say: good job NSA. You turned Yahoo into an encryption powerhouse. *Yahoo*.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Thu Apr 03 01:08:44 +0000 2014", + "id": 451526680981819392, + "id_str": "451526680981819392", + "text": "I would also like to say: good job NSA. You turned Yahoo into an encryption powerhouse. *Yahoo*.", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 106234268, + "id_str": "106234268" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 74, + "favorite_count": 67, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 74, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 03 01:14:23 +0000 2014", + "id": 451528105010937856, + "id_str": "451528105010937856", + "text": "I'm prejudiced against all weddings, not just the one I'm going to. My wedding was ten minutes at the town hall and I resented it.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 8, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 03 01:13:16 +0000 2014", + "id": 451527821245288448, + "id_str": "451527821245288448", + "text": "@geekable vertically, not horizontally. You won't see me in your earthquake deathtrap anytime soon.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 451527663274844160, + "in_reply_to_status_id_str": "451527663274844160", + "in_reply_to_user_id": 755035, + "in_reply_to_user_id_str": "755035", + "in_reply_to_screen_name": "geekable", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 03 01:12:23 +0000 2014", + "id": 451527598561312768, + "id_str": "451527598561312768", + "text": "If I am coming down with a cold right as I get dragged across the country to a wedding, so help me heathen gods", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 03 00:49:49 +0000 2014", + "id": 451521920287399936, + "id_str": "451521920287399936", + "text": "It’s about time we had an RFC to address this http://t.co/YTFYMWyiET", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 15, + "favorite_count": 8, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 03 00:47:19 +0000 2014", + "id": 451521290978205696, + "id_str": "451521290978205696", + "text": "@demize95 I don’t always accept certs signed by private CAs, but when I do", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451521175089184768, + "in_reply_to_status_id_str": "451521175089184768", + "in_reply_to_user_id": 137133048, + "in_reply_to_user_id_str": "137133048", + "in_reply_to_screen_name": "demize95", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 03 00:46:43 +0000 2014", + "id": 451521140364959744, + "id_str": "451521140364959744", + "text": "@Mark_Coker smart meter infrastructure", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451521052468715520, + "in_reply_to_status_id_str": "451521052468715520", + "in_reply_to_user_id": 64872429, + "in_reply_to_user_id_str": "64872429", + "in_reply_to_screen_name": "Mark_Coker", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 03 00:45:55 +0000 2014", + "id": 451520939390664704, + "id_str": "451520939390664704", + "text": "@Mark_Coker to go outside? Not in the opinion of the police who patrol the elementary school across the street…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451520714265604096, + "in_reply_to_status_id_str": "451520714265604096", + "in_reply_to_user_id": 64872429, + "in_reply_to_user_id_str": "64872429", + "in_reply_to_screen_name": "Mark_Coker", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 03 00:34:58 +0000 2014", + "id": 451518184060096512, + "id_str": "451518184060096512", + "text": "@demize95 I only know of one mathematician in Israel, and… … …", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451513298035286016, + "in_reply_to_status_id_str": "451513298035286016", + "in_reply_to_user_id": 137133048, + "in_reply_to_user_id_str": "137133048", + "in_reply_to_screen_name": "demize95", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 03 00:34:43 +0000 2014", + "id": 451518119958552577, + "id_str": "451518119958552577", + "text": "@demize95 o.o;;", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451513298035286016, + "in_reply_to_status_id_str": "451513298035286016", + "in_reply_to_user_id": 137133048, + "in_reply_to_user_id_str": "137133048", + "in_reply_to_screen_name": "demize95", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "pt" + }, + { + "created_at": "Thu Apr 03 00:33:47 +0000 2014", + "id": 451517884427403264, + "id_str": "451517884427403264", + "text": "@vogon (Someone else in the thread was all, I met my cofounder on tinder, we only did it that one night…)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451517592977420288, + "in_reply_to_status_id_str": "451517592977420288", + "in_reply_to_user_id": 6326912, + "in_reply_to_user_id_str": "6326912", + "in_reply_to_screen_name": "vogon", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 03 00:33:13 +0000 2014", + "id": 451517741548470272, + "id_str": "451517741548470272", + "text": "@vogon I’m willing to hold out a tiny niche of hope for they were totally kidding but", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451517592977420288, + "in_reply_to_status_id_str": "451517592977420288", + "in_reply_to_user_id": 6326912, + "in_reply_to_user_id_str": "6326912", + "in_reply_to_screen_name": "vogon", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 03 00:30:09 +0000 2014", + "id": 451516971092561920, + "id_str": "451516971092561920", + "text": "Oh of course! Problem solved. http://t.co/LzgMpw8ah2", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu Apr 03 00:20:23 +0000 2014", + "id": 451514512127295488, + "id_str": "451514512127295488", + "text": "@starguarded um, well, okay http://t.co/7YIBJx3gbl\n\nI can send you a pre-build of the pending free release if you want one…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451485814577311744, + "in_reply_to_status_id_str": "451485814577311744", + "in_reply_to_user_id": 18947075, + "in_reply_to_user_id_str": "18947075", + "in_reply_to_screen_name": "starguarded", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 02 23:56:33 +0000 2014", + "id": 451508514335490048, + "id_str": "451508514335490048", + "text": "@tw @FakeUnicode @hairyegg I like them. The not-quite-flat shading is nice.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 451505234980790273, + "in_reply_to_status_id_str": "451505234980790273", + "in_reply_to_user_id": 46338147, + "in_reply_to_user_id_str": "46338147", + "in_reply_to_screen_name": "tw", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 02 22:36:12 +0000 2014", + "id": 451488294224678912, + "id_str": "451488294224678912", + "text": "@wolfoftheair you can in fact get several going simultaneously.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 451487804627755008, + "in_reply_to_status_id_str": "451487804627755008", + "in_reply_to_user_id": 5142931, + "in_reply_to_user_id_str": "5142931", + "in_reply_to_screen_name": "wolfoftheair", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 02 22:35:49 +0000 2014", + "id": 451488197672198144, + "id_str": "451488197672198144", + "text": "@wolfoftheair there's a yellow box to indicate it detects a face and is auto-focusing around that square :)", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 451487804627755008, + "in_reply_to_status_id_str": "451487804627755008", + "in_reply_to_user_id": 5142931, + "in_reply_to_user_id_str": "5142931", + "in_reply_to_screen_name": "wolfoftheair", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 02 22:29:20 +0000 2014", + "id": 451486568990375936, + "id_str": "451486568990375936", + "text": "@Talen_Lee you were considering something else?!", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 451486219285704704, + "in_reply_to_status_id_str": "451486219285704704", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 02 22:22:46 +0000 2014", + "id": 451484915650293760, + "id_str": "451484915650293760", + "text": "@zhuowei Gahh. Well. The handwriting panel in Windows was not too terribly accurate for me.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 451484718429511680, + "in_reply_to_status_id_str": "451484718429511680", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 02 22:16:58 +0000 2014", + "id": 451483454023430144, + "id_str": "451483454023430144", + "text": "I write with a stylus that which I would not have the computers know: cursive yet eludes them.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 6, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 02 22:13:03 +0000 2014", + "id": 451482467980300288, + "id_str": "451482467980300288", + "text": "@Talen_Lee in other news, I just got brave enough to transcribe my handwriting to typing. Where the machines can find it.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451481301258739712, + "in_reply_to_status_id_str": "451481301258739712", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 02 22:09:32 +0000 2014", + "id": 451481583732940800, + "id_str": "451481583732940800", + "text": "RT @forthood: All personnel on post are asked to shelter in place.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Wed Apr 02 22:01:34 +0000 2014", + "id": 451479579996471296, + "id_str": "451479579996471296", + "text": "All personnel on post are asked to shelter in place.", + "source": "Facebook", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 40055348, + "id_str": "40055348" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3470, + "favorite_count": 763, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 3470, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 02 22:06:31 +0000 2014", + "id": 451480823678914560, + "id_str": "451480823678914560", + "text": "@Talen_Lee https://t.co/zriSQTUEv9", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451480639871528960, + "in_reply_to_status_id_str": "451480639871528960", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Wed Apr 02 22:04:56 +0000 2014", + "id": 451480424691564544, + "id_str": "451480424691564544", + "text": "@Talen_Lee yes, by proof of construction of Game of Life, though the extant videos are of terrible quality", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451480269267013633, + "in_reply_to_status_id_str": "451480269267013633", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 02 22:04:04 +0000 2014", + "id": 451480207992815616, + "id_str": "451480207992815616", + "text": "@mikeorren @evacide sir I take this as a challenge", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451479559423025152, + "in_reply_to_status_id_str": "451479559423025152", + "in_reply_to_user_id": 19406291, + "in_reply_to_user_id_str": "19406291", + "in_reply_to_screen_name": "mikeorren", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 02 22:02:18 +0000 2014", + "id": 451479763363049472, + "id_str": "451479763363049472", + "text": "@mahmoud_akl @mikko dollars to donuts it’s for uploading checks.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451454004695150594, + "in_reply_to_status_id_str": "451454004695150594", + "in_reply_to_user_id": 67178972, + "in_reply_to_user_id_str": "67178972", + "in_reply_to_screen_name": "mahmoud_akl", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 02 22:00:51 +0000 2014", + "id": 451479397506514944, + "id_str": "451479397506514944", + "text": "@Shufflejoy they also know how to once in a while admit they crossed the unfunny horizon and retract one", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451479246347571202, + "in_reply_to_status_id_str": "451479246347571202", + "in_reply_to_user_id": 1567524811, + "in_reply_to_user_id_str": "1567524811", + "in_reply_to_screen_name": "Shufflejoy", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 02 21:56:28 +0000 2014", + "id": 451478296291991552, + "id_str": "451478296291991552", + "text": "@Talen_Lee http://t.co/913J5Dv1dM", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451477959094706177, + "in_reply_to_status_id_str": "451477959094706177", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Wed Apr 02 21:55:38 +0000 2014", + "id": 451478087197528064, + "id_str": "451478087197528064", + "text": "RT @codinghorror: \"Yeah I’m still not getting pizza. Can you check the roads?\" http://t.co/uBCcN14G7x (via @amyengineer)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Wed Apr 02 21:51:59 +0000 2014", + "id": 451477166148943872, + "id_str": "451477166148943872", + "text": "\"Yeah I’m still not getting pizza. Can you check the roads?\" http://t.co/uBCcN14G7x (via @amyengineer)", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 5637652, + "id_str": "5637652" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 123, + "favorite_count": 52, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/uBCcN14G7x", + "expanded_url": "http://www.reddit.com/r/sysadmin/comments/22151n/it_made_me_giggle_d/", + "display_url": "reddit.com/r/sysadmin/com…", + "indices": [ + 61, + 83 + ] + } + ], + "user_mentions": [ + { + "screen_name": "amyengineer", + "name": "Amy Renee ", + "id": 14800144, + "id_str": "14800144", + "indices": [ + 89, + 101 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 123, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 02 21:51:37 +0000 2014", + "id": 451477074466070528, + "id_str": "451477074466070528", + "text": "By bouncing back and forth editing between web and tweetbot, I've coerced my bio to display exactly one of the soft-emoji", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 02 21:39:15 +0000 2014", + "id": 451473961550102529, + "id_str": "451473961550102529", + "text": "RT @TheOnion: Increasing Number Of Men Pressured To Accept Realistic Standards Of Female Beauty http://t.co/2VbNLYXDSc", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Wed Apr 02 17:36:56 +0000 2014", + "id": 451412983315316736, + "id_str": "451412983315316736", + "text": "Increasing Number Of Men Pressured To Accept Realistic Standards Of Female Beauty http://t.co/2VbNLYXDSc", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 14075928, + "id_str": "14075928" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 371, + "favorite_count": 285, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/2VbNLYXDSc", + "expanded_url": "http://onion.com/1dRQKYK", + "display_url": "onion.com/1dRQKYK", + "indices": [ + 82, + 104 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 371, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 02 20:58:30 +0000 2014", + "id": 451463709077303296, + "id_str": "451463709077303296", + "text": "@LRcomic @vogon \nJanuary 2: Snowhog Day\nFebruary 2: Groundhog Day\nMarch 2: Windhog Day\nApril 2: Rainhog Day\nMay 2: Grasshog Day\nJune 2: Sunh", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451462093577789440, + "in_reply_to_status_id_str": "451462093577789440", + "in_reply_to_user_id": 36898952, + "in_reply_to_user_id_str": "36898952", + "in_reply_to_screen_name": "LRcomic", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 02 20:58:18 +0000 2014", + "id": 451463657797722112, + "id_str": "451463657797722112", + "text": "RT @LRcomic: february 2nd is groundhog day but i think the 2nd of every month should be a different elemental hog day", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Wed Apr 02 20:52:05 +0000 2014", + "id": 451462093577789440, + "id_str": "451462093577789440", + "text": "february 2nd is groundhog day but i think the 2nd of every month should be a different elemental hog day", + "source": "Twitter for Mac", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 36898952, + "id_str": "36898952" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 31, + "favorite_count": 52, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 31, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 02 20:56:36 +0000 2014", + "id": 451463230373003264, + "id_str": "451463230373003264", + "text": "@LRcomic @vogon April showers bring rainhogs", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451462093577789440, + "in_reply_to_status_id_str": "451462093577789440", + "in_reply_to_user_id": 36898952, + "in_reply_to_user_id_str": "36898952", + "in_reply_to_screen_name": "LRcomic", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 02 20:54:32 +0000 2014", + "id": 451462710656786433, + "id_str": "451462710656786433", + "text": "@demize95 @Shufflejoy @m1sp I don’t feel *safe* if someone can see it. I feel at extreme risk to abuse.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451461896978182144, + "in_reply_to_status_id_str": "451461896978182144", + "in_reply_to_user_id": 137133048, + "in_reply_to_user_id_str": "137133048", + "in_reply_to_screen_name": "demize95", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 02 20:49:34 +0000 2014", + "id": 451461460397666304, + "id_str": "451461460397666304", + "text": "@demize95 @Shufflejoy @m1sp *adjusts shirt*", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451457762145230848, + "in_reply_to_status_id_str": "451457762145230848", + "in_reply_to_user_id": 137133048, + "in_reply_to_user_id_str": "137133048", + "in_reply_to_screen_name": "demize95", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 02 20:28:28 +0000 2014", + "id": 451456150069080064, + "id_str": "451456150069080064", + "text": "RT @mattblaze: @marshray @JoeBeOne @runasand ...per year.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Wed Apr 02 20:27:27 +0000 2014", + "id": 451455895869067264, + "id_str": "451455895869067264", + "text": "@marshray @JoeBeOne @runasand ...per year.", + "source": "TweetDeck", + "truncated": false, + "in_reply_to_status_id": 451432368046231552, + "in_reply_to_status_id_str": "451432368046231552", + "in_reply_to_user_id": 88223099, + "in_reply_to_user_id_str": "88223099", + "in_reply_to_screen_name": "marshray", + "user": { + "id": 26567591, + "id_str": "26567591" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 4, + "favorite_count": 2, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "marshray", + "name": "Marsh Ray", + "id": 88223099, + "id_str": "88223099", + "indices": [ + 0, + 9 + ] + }, + { + "screen_name": "JoeBeOne", + "name": "Joseph Lorenzo Hall", + "id": 22186723, + "id_str": "22186723", + "indices": [ + 10, + 19 + ] + }, + { + "screen_name": "runasand", + "name": "Runa A. Sandvik", + "id": 19959946, + "id_str": "19959946", + "indices": [ + 20, + 29 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 4, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 02 20:28:24 +0000 2014", + "id": 451456134776635394, + "id_str": "451456134776635394", + "text": "RT @marshray: @JoeBeOne @mattblaze @runasand I'm more concerned about where did the other $240,000,000 for subverting industry/standards cr…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Wed Apr 02 18:53:58 +0000 2014", + "id": 451432368046231552, + "id_str": "451432368046231552", + "text": "@JoeBeOne @mattblaze @runasand I'm more concerned about where did the other $240,000,000 for subverting industry/standards crypto go?", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 451424095042035712, + "in_reply_to_status_id_str": "451424095042035712", + "in_reply_to_user_id": 22186723, + "in_reply_to_user_id_str": "22186723", + "in_reply_to_screen_name": "JoeBeOne", + "user": { + "id": 88223099, + "id_str": "88223099" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 11, + "favorite_count": 6, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "JoeBeOne", + "name": "Joseph Lorenzo Hall", + "id": 22186723, + "id_str": "22186723", + "indices": [ + 0, + 9 + ] + }, + { + "screen_name": "mattblaze", + "name": "matt blaze", + "id": 26567591, + "id_str": "26567591", + "indices": [ + 10, + 20 + ] + }, + { + "screen_name": "runasand", + "name": "Runa A. Sandvik", + "id": 19959946, + "id_str": "19959946", + "indices": [ + 21, + 30 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 11, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 02 20:27:08 +0000 2014", + "id": 451455813018984452, + "id_str": "451455813018984452", + "text": "@Shufflejoy @demize95 @m1sp I’m serious \n\nI find it genuinely distressing", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451455677542572032, + "in_reply_to_status_id_str": "451455677542572032", + "in_reply_to_user_id": 1567524811, + "in_reply_to_user_id_str": "1567524811", + "in_reply_to_screen_name": "Shufflejoy", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 02 20:23:36 +0000 2014", + "id": 451454925059686409, + "id_str": "451454925059686409", + "text": "@demize95 @Shufflejoy @m1sp I have this… thing about cleavage.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451454583684866048, + "in_reply_to_status_id_str": "451454583684866048", + "in_reply_to_user_id": 137133048, + "in_reply_to_user_id_str": "137133048", + "in_reply_to_screen_name": "demize95", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 02 20:21:27 +0000 2014", + "id": 451454386376826884, + "id_str": "451454386376826884", + "text": "@demize95 @Shufflejoy @m1sp note that I mean too low cut according to my calibration and not to, perhaps, the average calibration.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451453886797062144, + "in_reply_to_status_id_str": "451453886797062144", + "in_reply_to_user_id": 137133048, + "in_reply_to_user_id_str": "137133048", + "in_reply_to_screen_name": "demize95", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 02 20:21:00 +0000 2014", + "id": 451454271738089472, + "id_str": "451454271738089472", + "text": "@demize95 @Shufflejoy @m1sp I do too except it’s too low-cut to actually wear in public. Can’t tell here as it’s artistically adjusted", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451453886797062144, + "in_reply_to_status_id_str": "451453886797062144", + "in_reply_to_user_id": 137133048, + "in_reply_to_user_id_str": "137133048", + "in_reply_to_screen_name": "demize95", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 02 20:17:54 +0000 2014", + "id": 451453490037260289, + "id_str": "451453490037260289", + "text": "RT @FredericJacobs: Intelligence community backed study shows that 'arm chair analysts' are doing better work than they do.\n\nhttp://t.co/f4…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Wed Apr 02 20:12:36 +0000 2014", + "id": 451452155346436096, + "id_str": "451452155346436096", + "text": "Intelligence community backed study shows that 'arm chair analysts' are doing better work than they do.\n\nhttp://t.co/f494ermmO9", + "source": "Twitter for Mac", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 18018877, + "id_str": "18018877" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 17, + "favorite_count": 7, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/f494ermmO9", + "expanded_url": "http://www.npr.org/blogs/parallels/2014/04/02/297839429/-so-you-think-youre-smarter-than-a-cia-agent", + "display_url": "npr.org/blogs/parallel…", + "indices": [ + 105, + 127 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 17, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 02 20:10:08 +0000 2014", + "id": 451451535801995265, + "id_str": "451451535801995265", + "text": "@blowdart wait, Windows is free? ಠ_ಠ", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451451418847621120, + "in_reply_to_status_id_str": "451451418847621120", + "in_reply_to_user_id": 1847381, + "in_reply_to_user_id_str": "1847381", + "in_reply_to_screen_name": "blowdart", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 02 20:07:16 +0000 2014", + "id": 451450814901800960, + "id_str": "451450814901800960", + "text": "@Shufflejoy I’m unusually sassy today cc @m1sp http://t.co/KNUu0UBK0c", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451448550107672577, + "in_reply_to_status_id_str": "451448550107672577", + "in_reply_to_user_id": 1567524811, + "in_reply_to_user_id_str": "1567524811", + "in_reply_to_screen_name": "Shufflejoy", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 02 19:57:36 +0000 2014", + "id": 451448382926884864, + "id_str": "451448382926884864", + "text": "@Shufflejoy http://t.co/dfFQBpL4re", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451447969246502912, + "in_reply_to_status_id_str": "451447969246502912", + "in_reply_to_user_id": 1567524811, + "in_reply_to_user_id_str": "1567524811", + "in_reply_to_screen_name": "Shufflejoy", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Wed Apr 02 19:53:52 +0000 2014", + "id": 451447443633487872, + "id_str": "451447443633487872", + "text": "@Shufflejoy something on your mind Shuffles", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451447285201633280, + "in_reply_to_status_id_str": "451447285201633280", + "in_reply_to_user_id": 1567524811, + "in_reply_to_user_id_str": "1567524811", + "in_reply_to_screen_name": "Shufflejoy", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 02 19:52:56 +0000 2014", + "id": 451447207540297730, + "id_str": "451447207540297730", + "text": "(What y’all don’t know is that I take selfies *all the time* and only ever post like 1% of them)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 02 19:51:38 +0000 2014", + "id": 451446881445773314, + "id_str": "451446881445773314", + "text": "I’m offended at how often iOS draws a facial recognition box directly on my nose", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 15, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 02 19:41:33 +0000 2014", + "id": 451444341006159873, + "id_str": "451444341006159873", + "text": "RT @TheAtlantic: \"It's impossible to work your way through college nowadays.\" http://t.co/SxIG9DjTbp", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Wed Apr 02 03:33:00 +0000 2014", + "id": 451200599095132160, + "id_str": "451200599095132160", + "text": "\"It's impossible to work your way through college nowadays.\" http://t.co/SxIG9DjTbp", + "source": "Sprout Social", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 35773039, + "id_str": "35773039" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 89, + "favorite_count": 63, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/SxIG9DjTbp", + "expanded_url": "http://theatln.tc/1dNioWS", + "display_url": "theatln.tc/1dNioWS", + "indices": [ + 61, + 83 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 89, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 02 19:34:35 +0000 2014", + "id": 451442590051991553, + "id_str": "451442590051991553", + "text": "Tightening the screws on my eyeglasses. Dangit, can’t see. Push the glasses back up my nose. Poke myself in eye. Existential crisis.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 5, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 02 19:22:35 +0000 2014", + "id": 451439571986055168, + "id_str": "451439571986055168", + "text": "@thezeist I was slowly building this need in my head to shout at them that we know empirically databases leak constantly", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451439346957451264, + "in_reply_to_status_id_str": "451439346957451264", + "in_reply_to_user_id": 100964199, + "in_reply_to_user_id_str": "100964199", + "in_reply_to_screen_name": "thezeist", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 02 19:18:16 +0000 2014", + "id": 451438484184920065, + "id_str": "451438484184920065", + "text": ".@thezeist DANG that’s a good one.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451437726509043712, + "in_reply_to_status_id_str": "451437726509043712", + "in_reply_to_user_id": 100964199, + "in_reply_to_user_id_str": "100964199", + "in_reply_to_screen_name": "thezeist", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 02 19:17:30 +0000 2014", + "id": 451438290185756672, + "id_str": "451438290185756672", + "text": "RT @thezeist: Why You Might Want to Store Your Passwords in Plain Text https://t.co/4rhDPLTNPy", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Wed Apr 02 19:15:15 +0000 2014", + "id": 451437726509043712, + "id_str": "451437726509043712", + "text": "Why You Might Want to Store Your Passwords in Plain Text https://t.co/4rhDPLTNPy", + "source": "iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 100964199, + "id_str": "100964199" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 31, + "favorite_count": 18, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "https://t.co/4rhDPLTNPy", + "expanded_url": "https://stormpath.com/blog/why-you-might-want-to-store-your-passwords-in-plain-text/", + "display_url": "stormpath.com/blog/why-you-m…", + "indices": [ + 57, + 80 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 31, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 02 19:10:38 +0000 2014", + "id": 451436564321947648, + "id_str": "451436564321947648", + "text": "I’m going on a long roadtrip tonight (not thrilled). I feel like I should be doing something cool with an SDR on the road", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 02 19:02:59 +0000 2014", + "id": 451434636242341888, + "id_str": "451434636242341888", + "text": "— I should see if the package is here yet.\n\n— My pants are upstairs \n\n— I should see if the API says the package is here yet.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 14, + "favorite_count": 25, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 02 19:01:48 +0000 2014", + "id": 451434340346765312, + "id_str": "451434340346765312", + "text": "@hairyegg thank you, but none of those seem to be the set Twitter web is using?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451433966231646208, + "in_reply_to_status_id_str": "451433966231646208", + "in_reply_to_user_id": 33617866, + "in_reply_to_user_id_str": "33617866", + "in_reply_to_screen_name": "hairyegg", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 02 18:53:17 +0000 2014", + "id": 451432194557640704, + "id_str": "451432194557640704", + "text": "@psobot it just takes an extra degree of WTF to get PHP to spill its own source code in production", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451431894421209089, + "in_reply_to_status_id_str": "451431894421209089", + "in_reply_to_user_id": 19135819, + "in_reply_to_user_id_str": "19135819", + "in_reply_to_screen_name": "psobot", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 02 18:51:33 +0000 2014", + "id": 451431760812068864, + "id_str": "451431760812068864", + "text": ".@matthew_d_green I sense a startup", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451430193832689664, + "in_reply_to_status_id_str": "451430193832689664", + "in_reply_to_user_id": 106234268, + "in_reply_to_user_id_str": "106234268", + "in_reply_to_screen_name": "matthew_d_green", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 02 18:51:19 +0000 2014", + "id": 451431699722035202, + "id_str": "451431699722035202", + "text": "RT @matthew_d_green: My son lost his first tooth the other day. I had to persuade him that no, the Tooth Fairy does not pay in Bitcoin.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Wed Apr 02 18:45:20 +0000 2014", + "id": 451430193832689664, + "id_str": "451430193832689664", + "text": "My son lost his first tooth the other day. I had to persuade him that no, the Tooth Fairy does not pay in Bitcoin.", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 106234268, + "id_str": "106234268" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 77, + "favorite_count": 78, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 77, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 02 18:50:45 +0000 2014", + "id": 451431560290787328, + "id_str": "451431560290787328", + "text": "@psobot oh my gods what even. Isn’t that stuff only supposed to render to localhost?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451430976678133760, + "in_reply_to_status_id_str": "451430976678133760", + "in_reply_to_user_id": 19135819, + "in_reply_to_user_id_str": "19135819", + "in_reply_to_screen_name": "psobot", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 02 18:47:44 +0000 2014", + "id": 451430798349312001, + "id_str": "451430798349312001", + "text": "@psobot Very Legitimate", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451429189745270784, + "in_reply_to_status_id_str": "451429189745270784", + "in_reply_to_user_id": 19135819, + "in_reply_to_user_id_str": "19135819", + "in_reply_to_screen_name": "psobot", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "sl" + }, + { + "created_at": "Wed Apr 02 18:43:11 +0000 2014", + "id": 451429655195955200, + "id_str": "451429655195955200", + "text": "RT @TelecomixTurkey: The decision is binding and no appeal is possible. Erdogan, we are all waiting.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Wed Apr 02 18:24:52 +0000 2014", + "id": 451425044330057728, + "id_str": "451425044330057728", + "text": "The decision is binding and no appeal is possible. Erdogan, we are all waiting.", + "source": "Twitter for Mac", + "truncated": false, + "in_reply_to_status_id": 451425022993633280, + "in_reply_to_status_id_str": "451425022993633280", + "in_reply_to_user_id": 1480638702, + "in_reply_to_user_id_str": "1480638702", + "in_reply_to_screen_name": "TelecomixTurkey", + "user": { + "id": 1480638702, + "id_str": "1480638702" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 9, + "favorite_count": 6, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 9, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 02 18:42:53 +0000 2014", + "id": 451429578238869505, + "id_str": "451429578238869505", + "text": "@kherge nah I mean like… to use. as opposed to steal. 😛", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451429198742044673, + "in_reply_to_status_id_str": "451429198742044673", + "in_reply_to_user_id": 389676688, + "in_reply_to_user_id_str": "389676688", + "in_reply_to_screen_name": "kherge", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 02 18:42:15 +0000 2014", + "id": 451429420826656768, + "id_str": "451429420826656768", + "text": "@doot0 Ohh. The standard Android font is monochrome and very robot-centric afaik", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451429202689294336, + "in_reply_to_status_id_str": "451429202689294336", + "in_reply_to_user_id": 376338820, + "in_reply_to_user_id_str": "376338820", + "in_reply_to_screen_name": "doot0", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 02 18:40:20 +0000 2014", + "id": 451428936611004416, + "id_str": "451428936611004416", + "text": "@doot0 that’s Working As Intended, I refer strictly to the new web workaround", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451428793962729473, + "in_reply_to_status_id_str": "451428793962729473", + "in_reply_to_user_id": 376338820, + "in_reply_to_user_id_str": "376338820", + "in_reply_to_screen_name": "doot0", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 02 18:39:45 +0000 2014", + "id": 451428790153912320, + "id_str": "451428790153912320", + "text": "RT @TelecomixTurkey: Turkey's highest court overturns Twitter ban. \n\nhttp://t.co/BU0DUSXW5U", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Wed Apr 02 18:24:47 +0000 2014", + "id": 451425022993633280, + "id_str": "451425022993633280", + "text": "Turkey's highest court overturns Twitter ban. \n\nhttp://t.co/BU0DUSXW5U", + "source": "Twitter for Mac", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 1480638702, + "id_str": "1480638702" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 54, + "favorite_count": 17, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/BU0DUSXW5U", + "expanded_url": "http://www.aljazeera.com/news/europe/2014/04/turkey-court-says-twitter-ban-violates-rights-201442152339408910.html", + "display_url": "aljazeera.com/news/europe/20…", + "indices": [ + 48, + 70 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 54, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 02 18:38:18 +0000 2014", + "id": 451428424352296961, + "id_str": "451428424352296961", + "text": "Is the icon set Twitter is using for emoji now available somewhere? It seems familiar", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 02 18:37:31 +0000 2014", + "id": 451428227740090368, + "id_str": "451428227740090368", + "text": "RT @FakeUnicode: Well, it isn't too bad, they are copy-paste-able. At least they include the alt=\"\" tag.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Wed Apr 02 18:36:00 +0000 2014", + "id": 451427845307244544, + "id_str": "451427845307244544", + "text": "Well, it isn't too bad, they are copy-paste-able. At least they include the alt=\"\" tag.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 451427057126232065, + "in_reply_to_status_id_str": "451427057126232065", + "in_reply_to_user_id": 2183231114, + "in_reply_to_user_id_str": "2183231114", + "in_reply_to_screen_name": "FakeUnicode", + "user": { + "id": 2183231114, + "id_str": "2183231114" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 4, + "favorite_count": 2, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 4, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 02 18:29:41 +0000 2014", + "id": 451426257709060096, + "id_str": "451426257709060096", + "text": "@hiramiyaa @m1sp who, me? Couldn’t be.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451406835988582400, + "in_reply_to_status_id_str": "451406835988582400", + "in_reply_to_user_id": 18446424, + "in_reply_to_user_id_str": "18446424", + "in_reply_to_screen_name": "hiramiyaa", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 02 17:08:50 +0000 2014", + "id": 451405912587378688, + "id_str": "451405912587378688", + "text": "@m1sp @antumbral gahhhhh why do you do this to me", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 451405717199527936, + "in_reply_to_status_id_str": "451405717199527936", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 02 16:57:21 +0000 2014", + "id": 451403022426710018, + "id_str": "451403022426710018", + "text": "@m1sp I have no eyes and I must cry\n\n#shudder", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451400006675607553, + "in_reply_to_status_id_str": "451400006675607553", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 02 16:49:44 +0000 2014", + "id": 451401103582978048, + "id_str": "451401103582978048", + "text": "Now the fact that a substantial portion of my tweets contain a 🔪 won’t be lost on the web plebs.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 02 16:46:09 +0000 2014", + "id": 451400204181573632, + "id_str": "451400204181573632", + "text": "I see Twitter has taken that pending \"emoji support\" ticket over at Chrome into its own hands.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 5, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 02 16:44:48 +0000 2014", + "id": 451399862333235200, + "id_str": "451399862333235200", + "text": "RT @Support: 😍 Twitter users love tweeting emoji from their phones – now you can view these emoji on web! #emojiparty 🎉 😜 👯 🍻 🎈 🎤 🎮 🚀 🌉 ✨", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Wed Apr 02 16:42:56 +0000 2014", + "id": 451399393850052610, + "id_str": "451399393850052610", + "text": "😍 Twitter users love tweeting emoji from their phones – now you can view these emoji on web! #emojiparty 🎉 😜 👯 🍻 🎈 🎤 🎮 🚀 🌉 ✨", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 17874544, + "id_str": "17874544" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 5289, + "favorite_count": 2994, + "entities": { + "hashtags": [ + { + "text": "emojiparty", + "indices": [ + 93, + 104 + ] + } + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 5289, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 02 16:43:08 +0000 2014", + "id": 451399441183162368, + "id_str": "451399441183162368", + "text": "@hiramiyaa that’s my job", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451399346849083392, + "in_reply_to_status_id_str": "451399346849083392", + "in_reply_to_user_id": 18446424, + "in_reply_to_user_id_str": "18446424", + "in_reply_to_screen_name": "hiramiyaa", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 02 16:40:38 +0000 2014", + "id": 451398815896326144, + "id_str": "451398815896326144", + "text": "RT @hiramiyaa: Excuse http://t.co/kl31CSRPZ0", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Wed Apr 02 16:38:08 +0000 2014", + "id": 451398183927967744, + "id_str": "451398183927967744", + "text": "Excuse http://t.co/kl31CSRPZ0", + "source": "Twitter for Android", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 18446424, + "id_str": "18446424" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 23, + "favorite_count": 12, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ], + "media": [ + { + "id": 451398178701848577, + "id_str": "451398178701848577", + "indices": [ + 7, + 29 + ], + "media_url": "http://pbs.twimg.com/media/BkOwQH3IMAEa-Kv.jpg", + "media_url_https": "https://pbs.twimg.com/media/BkOwQH3IMAEa-Kv.jpg", + "url": "http://t.co/kl31CSRPZ0", + "display_url": "pic.twitter.com/kl31CSRPZ0", + "expanded_url": "http://twitter.com/hiramiyaa/status/451398183927967744/photo/1", + "type": "photo", + "sizes": { + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 143, + "resize": "fit" + }, + "large": { + "w": 1024, + "h": 431, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 252, + "resize": "fit" + } + } + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 23, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 02 16:35:47 +0000 2014", + "id": 451397593739051008, + "id_str": "451397593739051008", + "text": "The pebble’s penchant for randomly repeating old SMS keeps making me think someone’s triggering my twitter account’s two-factor", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 02 15:57:27 +0000 2014", + "id": 451387947888418816, + "id_str": "451387947888418816", + "text": "@mikko @JyriTiimonen dang. No-one aboard??", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451387046615994369, + "in_reply_to_status_id_str": "451387046615994369", + "in_reply_to_user_id": 23566038, + "in_reply_to_user_id_str": "23566038", + "in_reply_to_screen_name": "mikko", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 02 15:51:19 +0000 2014", + "id": 451386402899783680, + "id_str": "451386402899783680", + "text": "@travisgoodspeed it’s a certain god. He’s getting desperate to get through to you. Just ignore him…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451385452885733376, + "in_reply_to_status_id_str": "451385452885733376", + "in_reply_to_user_id": 81458523, + "in_reply_to_user_id_str": "81458523", + "in_reply_to_screen_name": "travisgoodspeed", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 02 14:56:46 +0000 2014", + "id": 451372673088913408, + "id_str": "451372673088913408", + "text": "@alt_m1sp :3 :3 :3", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451349058968231937, + "in_reply_to_status_id_str": "451349058968231937", + "in_reply_to_user_id": 2401670173, + "in_reply_to_user_id_str": "2401670173", + "in_reply_to_screen_name": "alt_m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "pl" + }, + { + "created_at": "Wed Apr 02 14:52:10 +0000 2014", + "id": 451371517621071872, + "id_str": "451371517621071872", + "text": "RT @bitcoin_txt: http://t.co/Mlob5c5Vn3", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Wed Apr 02 11:08:04 +0000 2014", + "id": 451315120774582273, + "id_str": "451315120774582273", + "text": "http://t.co/Mlob5c5Vn3", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 1327139984, + "id_str": "1327139984" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 34, + "favorite_count": 25, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/Mlob5c5Vn3", + "expanded_url": "http://www.beepboopbitcoin.com/", + "display_url": "beepboopbitcoin.com", + "indices": [ + 0, + 22 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + "retweet_count": 34, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Wed Apr 02 14:47:52 +0000 2014", + "id": 451370434576281600, + "id_str": "451370434576281600", + "text": "@_larry0 💝", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451320666965696512, + "in_reply_to_status_id_str": "451320666965696512", + "in_reply_to_user_id": 17055552, + "in_reply_to_user_id_str": "17055552", + "in_reply_to_screen_name": "_larry0", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Wed Apr 02 14:47:52 +0000 2014", + "id": 451370434576281600, + "id_str": "451370434576281600", + "text": "@_larry0 💝", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451320666965696512, + "in_reply_to_status_id_str": "451320666965696512", + "in_reply_to_user_id": 17055552, + "in_reply_to_user_id_str": "17055552", + "in_reply_to_screen_name": "_larry0", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Wed Apr 02 14:40:30 +0000 2014", + "id": 451368579834073088, + "id_str": "451368579834073088", + "text": "RT @newshtwit: \"The Securitate ordered us not to pull the curtains in the kitchen to make it easier for them to observe us.\"\nhttp://t.co/ma…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Wed Apr 02 06:07:19 +0000 2014", + "id": 451239435242201088, + "id_str": "451239435242201088", + "text": "\"The Securitate ordered us not to pull the curtains in the kitchen to make it easier for them to observe us.\"\nhttp://t.co/maFy3v7VXp", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 317629382, + "id_str": "317629382" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 9, + "favorite_count": 8, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/maFy3v7VXp", + "expanded_url": "http://www.bbc.com/news/magazine-26838177", + "display_url": "bbc.com/news/magazine-…", + "indices": [ + 110, + 132 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 9, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 02 14:20:32 +0000 2014", + "id": 451363557201174528, + "id_str": "451363557201174528", + "text": "@Shufflejoy remember what I said about their signature counter being seemingly deliberately confusing?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451243539700006912, + "in_reply_to_status_id_str": "451243539700006912", + "in_reply_to_user_id": 1567524811, + "in_reply_to_user_id_str": "1567524811", + "in_reply_to_screen_name": "Shufflejoy", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 02 14:06:04 +0000 2014", + "id": 451359916348153856, + "id_str": "451359916348153856", + "text": "@ClaudioDekker I’m pretty sure it aligns with precedent cases, for better or for worse", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451245183938854912, + "in_reply_to_status_id_str": "451245183938854912", + "in_reply_to_user_id": 78721809, + "in_reply_to_user_id_str": "78721809", + "in_reply_to_screen_name": "ClaudioDekker", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 02 05:16:29 +0000 2014", + "id": 451226641403224064, + "id_str": "451226641403224064", + "text": "@solidsnack if you think about it, there are fairly few functions a government provides where knowing someone’s gender is strictly needed", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451225572035674112, + "in_reply_to_status_id_str": "451225572035674112", + "in_reply_to_user_id": 5816752, + "in_reply_to_user_id_str": "5816752", + "in_reply_to_screen_name": "solidsnack", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 02 05:02:36 +0000 2014", + "id": 451223146621046784, + "id_str": "451223146621046784", + "text": "@moogtrain @eevee I’ve noticed that, actually :)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451222044286255104, + "in_reply_to_status_id_str": "451222044286255104", + "in_reply_to_user_id": 257063867, + "in_reply_to_user_id_str": "257063867", + "in_reply_to_screen_name": "moogtrain", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 02 05:00:09 +0000 2014", + "id": 451222531203411968, + "id_str": "451222531203411968", + "text": "@eevee for a while I frequently was followed by teenage boys and girls who thought I spoke their language and tried to talk to me", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451221374707568640, + "in_reply_to_status_id_str": "451221374707568640", + "in_reply_to_user_id": 14412937, + "in_reply_to_user_id_str": "14412937", + "in_reply_to_screen_name": "eevee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 02 04:58:35 +0000 2014", + "id": 451222139337994240, + "id_str": "451222139337994240", + "text": "@eevee I think my 9% Indonesian follow rate is a sampling bias quirk of Twitter’s “who to follow” recommendations for a new account", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451221374707568640, + "in_reply_to_status_id_str": "451221374707568640", + "in_reply_to_user_id": 14412937, + "in_reply_to_user_id_str": "14412937", + "in_reply_to_screen_name": "eevee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 02 04:56:06 +0000 2014", + "id": 451221513157763072, + "id_str": "451221513157763072", + "text": "@eevee can’t say that I’ve noticed that.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451221374707568640, + "in_reply_to_status_id_str": "451221374707568640", + "in_reply_to_user_id": 14412937, + "in_reply_to_user_id_str": "14412937", + "in_reply_to_screen_name": "eevee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 02 04:55:14 +0000 2014", + "id": 451221294978457601, + "id_str": "451221294978457601", + "text": "@dancapper @chronic they were incorporated in the US and based out of Japan.\n\nJust to make life difficult for themselves, apparently", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451221045744132098, + "in_reply_to_status_id_str": "451221045744132098", + "in_reply_to_user_id": 15438688, + "in_reply_to_user_id_str": "15438688", + "in_reply_to_screen_name": "dancapper", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 02 04:52:54 +0000 2014", + "id": 451220706890895360, + "id_str": "451220706890895360", + "text": "@eevee incidentally literally 9% of my followers are in Indonesia according to official analytics. They’re pretty big on social media.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451219931770531840, + "in_reply_to_status_id_str": "451219931770531840", + "in_reply_to_user_id": 14412937, + "in_reply_to_user_id_str": "14412937", + "in_reply_to_screen_name": "eevee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 02 04:42:52 +0000 2014", + "id": 451218181030682624, + "id_str": "451218181030682624", + "text": "@eevee rank 139 of 179 in the press freedom index; how aspirational.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451215755388784640, + "in_reply_to_status_id_str": "451215755388784640", + "in_reply_to_user_id": 14412937, + "in_reply_to_user_id_str": "14412937", + "in_reply_to_screen_name": "eevee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 02 04:26:02 +0000 2014", + "id": 451213947568685056, + "id_str": "451213947568685056", + "text": "@Viss @Packetknife *faint smell of cherry mingled with misery*", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451213724469051394, + "in_reply_to_status_id_str": "451213724469051394", + "in_reply_to_user_id": 2269701, + "in_reply_to_user_id_str": "2269701", + "in_reply_to_screen_name": "Viss", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 02 04:16:13 +0000 2014", + "id": 451211475148099584, + "id_str": "451211475148099584", + "text": "@_defcon_ @Niki7a is the list of past speakers still in progress or was I fired", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451209805474955264, + "in_reply_to_status_id_str": "451209805474955264", + "in_reply_to_user_id": 14924965, + "in_reply_to_user_id_str": "14924965", + "in_reply_to_screen_name": "_defcon_", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 02 03:59:38 +0000 2014", + "id": 451207302918721537, + "id_str": "451207302918721537", + "text": "@jwatte while that’s my flippant response about my orientation, it turns out being flippant isn’t polite :)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451207032662536192, + "in_reply_to_status_id_str": "451207032662536192", + "in_reply_to_user_id": 27054163, + "in_reply_to_user_id_str": "27054163", + "in_reply_to_screen_name": "jwatte", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 02 03:38:24 +0000 2014", + "id": 451201958943416320, + "id_str": "451201958943416320", + "text": "There is a petition to add “other” gender(s) to US govt forms that has 2/3rds of required signatures for response https://t.co/QLyy71L7se", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 28, + "favorite_count": 12, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 02 03:35:35 +0000 2014", + "id": 451201247849488386, + "id_str": "451201247849488386", + "text": "@demize95 @Shufflejoy I swear they do this on purpose to be confusing", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451199634627493888, + "in_reply_to_status_id_str": "451199634627493888", + "in_reply_to_user_id": 137133048, + "in_reply_to_user_id_str": "137133048", + "in_reply_to_screen_name": "demize95", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 02 03:34:46 +0000 2014", + "id": 451201044815839233, + "id_str": "451201044815839233", + "text": "@Shufflejoy already signed it. For all my European pretensions, turns out I really am American.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451200854654066688, + "in_reply_to_status_id_str": "451200854654066688", + "in_reply_to_user_id": 1567524811, + "in_reply_to_user_id_str": "1567524811", + "in_reply_to_screen_name": "Shufflejoy", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 02 03:00:45 +0000 2014", + "id": 451192482769154048, + "id_str": "451192482769154048", + "text": "@ra6bit he’s definitely subtweeting us.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451190107308310529, + "in_reply_to_status_id_str": "451190107308310529", + "in_reply_to_user_id": 537333195, + "in_reply_to_user_id_str": "537333195", + "in_reply_to_screen_name": "ra6bit", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 02 01:58:26 +0000 2014", + "id": 451176800442658816, + "id_str": "451176800442658816", + "text": "@m1sp April the first, dear one. It’s not over yet.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451176248459292672, + "in_reply_to_status_id_str": "451176248459292672", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 02 01:55:11 +0000 2014", + "id": 451175984608587776, + "id_str": "451175984608587776", + "text": "@Talen_Lee I was gonna point out your terminology problem but that’d make me sound American", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451175851141246976, + "in_reply_to_status_id_str": "451175851141246976", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 02 01:52:43 +0000 2014", + "id": 451175364120039425, + "id_str": "451175364120039425", + "text": "@Talen_Lee I’m just trying to make him maximally embarrassed.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451174849935720448, + "in_reply_to_status_id_str": "451174849935720448", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 02 01:52:20 +0000 2014", + "id": 451175264220114944, + "id_str": "451175264220114944", + "text": "@Talen_Lee no comment about which side I think he gets it from.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451174790611496960, + "in_reply_to_status_id_str": "451174790611496960", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 02 01:51:04 +0000 2014", + "id": 451174947319472128, + "id_str": "451174947319472128", + "text": "@ra6bit yeah pretty much. Don’t forget the genre caught on and was locally produced in Europe!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451174782713991169, + "in_reply_to_status_id_str": "451174782713991169", + "in_reply_to_user_id": 537333195, + "in_reply_to_user_id_str": "537333195", + "in_reply_to_screen_name": "ra6bit", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 02 01:49:26 +0000 2014", + "id": 451174535308804096, + "id_str": "451174535308804096", + "text": "@Talen_Lee we all know he is the offspring of some fiiiiine genetic material. Hotness 2.0. Now with more kawaii.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451173274362183680, + "in_reply_to_status_id_str": "451173274362183680", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 02 01:47:33 +0000 2014", + "id": 451174061201444864, + "id_str": "451174061201444864", + "text": "@ra6bit for the same reason the Japanese are all ninjas and the Canadians are all Mounties", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451173273238515712, + "in_reply_to_status_id_str": "451173273238515712", + "in_reply_to_user_id": 537333195, + "in_reply_to_user_id_str": "537333195", + "in_reply_to_screen_name": "ra6bit", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 02 01:41:48 +0000 2014", + "id": 451172615647158272, + "id_str": "451172615647158272", + "text": "@Talen_Lee wicked and godless prose", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451172537481719808, + "in_reply_to_status_id_str": "451172537481719808", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 02 01:34:41 +0000 2014", + "id": 451170822963855360, + "id_str": "451170822963855360", + "text": "@m1sp @Talen_Lee don’t break my heart like he did ;(", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451170631615135744, + "in_reply_to_status_id_str": "451170631615135744", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 02 01:19:31 +0000 2014", + "id": 451167009246826496, + "id_str": "451167009246826496", + "text": "@Talen_Lee @m1sp it’s entirely coincidental he was short, dark-haired, and prone to wearing an actual green cloak. In public.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451166148201947137, + "in_reply_to_status_id_str": "451166148201947137", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 02 01:17:46 +0000 2014", + "id": 451166565137129472, + "id_str": "451166565137129472", + "text": "@Talen_Lee @m1sp I eventually grew up. We are still friends in the sort of way that lapses for years until suddenly.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451166148201947137, + "in_reply_to_status_id_str": "451166148201947137", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 02 01:14:29 +0000 2014", + "id": 451165740981555200, + "id_str": "451165740981555200", + "text": "@Talen_Lee @m1sp but he never loved me back.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451165123378282496, + "in_reply_to_status_id_str": "451165123378282496", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 02 01:14:19 +0000 2014", + "id": 451165698942062592, + "id_str": "451165698942062592", + "text": "@Talen_Lee @m1sp I have heard of it. I actually have a story about falling in love with a boy as he recited that scene from the Watchmen.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451165123378282496, + "in_reply_to_status_id_str": "451165123378282496", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 02 01:10:56 +0000 2014", + "id": 451164846646898688, + "id_str": "451164846646898688", + "text": "@Talen_Lee @m1sp indeed.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451164769949458432, + "in_reply_to_status_id_str": "451164769949458432", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "da" + }, + { + "created_at": "Wed Apr 02 01:09:09 +0000 2014", + "id": 451164399529918465, + "id_str": "451164399529918465", + "text": "@ternus grats!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451162467595714560, + "in_reply_to_status_id_str": "451162467595714560", + "in_reply_to_user_id": 3170281, + "in_reply_to_user_id_str": "3170281", + "in_reply_to_screen_name": "ternus", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "lv" + }, + { + "created_at": "Wed Apr 02 01:08:36 +0000 2014", + "id": 451164258068623360, + "id_str": "451164258068623360", + "text": "@Talen_Lee @m1sp *whistles innocently* http://t.co/WMCFCLAOCw", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451148103567962113, + "in_reply_to_status_id_str": "451148103567962113", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 02 00:52:41 +0000 2014", + "id": 451160254404100097, + "id_str": "451160254404100097", + "text": "@fredowsley @nickdepetrillo with pleasure.\n\nYou know, boys, I’m gonna be in Virginia in about 30 hours… … to go to a wedding, sigh.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451159319992877057, + "in_reply_to_status_id_str": "451159319992877057", + "in_reply_to_user_id": 14156096, + "in_reply_to_user_id_str": "14156096", + "in_reply_to_screen_name": "fredowsley", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 02 00:46:32 +0000 2014", + "id": 451158707096027136, + "id_str": "451158707096027136", + "text": "@nickdepetrillo @fredowsley oh he’s with YOU? No wonder he missed my birthday.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451158571276075008, + "in_reply_to_status_id_str": "451158571276075008", + "in_reply_to_user_id": 40222002, + "in_reply_to_user_id_str": "40222002", + "in_reply_to_screen_name": "nickdepetrillo", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 02 00:33:19 +0000 2014", + "id": 451155380140519424, + "id_str": "451155380140519424", + "text": "@hinanawi_chan @m1sp is it… chaste?!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451155247419772928, + "in_reply_to_status_id_str": "451155247419772928", + "in_reply_to_user_id": 2336014178, + "in_reply_to_user_id_str": "2336014178", + "in_reply_to_screen_name": "hinanawi_chan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 02 00:32:14 +0000 2014", + "id": 451155108928446464, + "id_str": "451155108928446464", + "text": "@m1sp @hinanawi_chan oh my gods are you two… *skyping*", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451154897107300352, + "in_reply_to_status_id_str": "451154897107300352", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 02 00:28:43 +0000 2014", + "id": 451154222965604352, + "id_str": "451154222965604352", + "text": "Happy birthday to the Weasley Twins.\n\n… :(", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 4, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 02 00:27:49 +0000 2014", + "id": 451153997878280192, + "id_str": "451153997878280192", + "text": "@Talen_Lee @m1sp *me*? I star nothing.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451152952598601728, + "in_reply_to_status_id_str": "451152952598601728", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 02 00:12:02 +0000 2014", + "id": 451150024697974784, + "id_str": "451150024697974784", + "text": "RT @PzFeed: ALERT: Tsunami warnings in effect for Chile, Peru and Ecuador after 8.0 quake. DETAILS: http://t.co/I4knhhUk1N", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Wed Apr 02 00:01:22 +0000 2014", + "id": 451147338917380096, + "id_str": "451147338917380096", + "text": "ALERT: Tsunami warnings in effect for Chile, Peru and Ecuador after 8.0 quake. DETAILS: http://t.co/I4knhhUk1N", + "source": "TweetDeck", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 292777349, + "id_str": "292777349" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 128, + "favorite_count": 17, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/I4knhhUk1N", + "expanded_url": "http://bnowire.com/inbox/?id=2282", + "display_url": "bnowire.com/inbox/?id=2282", + "indices": [ + 88, + 110 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 128, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed Apr 02 00:03:25 +0000 2014", + "id": 451147855047430144, + "id_str": "451147855047430144", + "text": "@m1sp @Talen_Lee *glances around* *opens writing app*", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451135304733192192, + "in_reply_to_status_id_str": "451135304733192192", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 01 23:09:29 +0000 2014", + "id": 451134284997615616, + "id_str": "451134284997615616", + "text": "@tenfootfangs how do you make snakes look so kawaii", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451134060157337600, + "in_reply_to_status_id_str": "451134060157337600", + "in_reply_to_user_id": 22337789, + "in_reply_to_user_id_str": "22337789", + "in_reply_to_screen_name": "tenfootfangs", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 01 23:06:38 +0000 2014", + "id": 451133564449738752, + "id_str": "451133564449738752", + "text": "@hinanawi_chan @m1sp … really?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451133448090955776, + "in_reply_to_status_id_str": "451133448090955776", + "in_reply_to_user_id": 2336014178, + "in_reply_to_user_id_str": "2336014178", + "in_reply_to_screen_name": "hinanawi_chan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "ht" + }, + { + "created_at": "Tue Apr 01 23:05:22 +0000 2014", + "id": 451133247507136512, + "id_str": "451133247507136512", + "text": "@m1sp @hinanawi_chan *ruffles hair*", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451132820933459968, + "in_reply_to_status_id_str": "451132820933459968", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 01 23:04:47 +0000 2014", + "id": 451133102065479680, + "id_str": "451133102065479680", + "text": "@amazingant exactly. :)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451132782350442496, + "in_reply_to_status_id_str": "451132782350442496", + "in_reply_to_user_id": 20122387, + "in_reply_to_user_id_str": "20122387", + "in_reply_to_screen_name": "amazingant", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 01 22:55:10 +0000 2014", + "id": 451130680106565632, + "id_str": "451130680106565632", + "text": "RT @nmap: I'm sorry but I can't take this anymore. New Full Disclosure list closed! http://t.co/Ep8mHuMv0p", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue Apr 01 22:37:25 +0000 2014", + "id": 451126215001128960, + "id_str": "451126215001128960", + "text": "I'm sorry but I can't take this anymore. New Full Disclosure list closed! http://t.co/Ep8mHuMv0p", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 15388317, + "id_str": "15388317" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 59, + "favorite_count": 32, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/Ep8mHuMv0p", + "expanded_url": "http://seclists.org/fulldisclosure/2014/Apr/14", + "display_url": "seclists.org/fulldisclosure…", + "indices": [ + 74, + 96 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 59, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 01 22:53:58 +0000 2014", + "id": 451130378183774208, + "id_str": "451130378183774208", + "text": "@mirell you could try pitch bending upwards slightly in an audio editor and playing that back through good speakers to the phone", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451129742507253760, + "in_reply_to_status_id_str": "451129742507253760", + "in_reply_to_user_id": 12733992, + "in_reply_to_user_id_str": "12733992", + "in_reply_to_screen_name": "mirell", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 01 22:48:25 +0000 2014", + "id": 451128983057625088, + "id_str": "451128983057625088", + "text": "RT @chronic: Judge orders Mt Gox CEO to U.S. for questions on failed bitcoin exchange\n\n http://t.co/WlWHxNHpeS", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue Apr 01 22:45:58 +0000 2014", + "id": 451128364418744320, + "id_str": "451128364418744320", + "text": "Judge orders Mt Gox CEO to U.S. for questions on failed bitcoin exchange\n\n http://t.co/WlWHxNHpeS", + "source": "iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 86315276, + "id_str": "86315276" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 9, + "favorite_count": 1, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/WlWHxNHpeS", + "expanded_url": "http://mobile.reuters.com/article/idUSBREA3021920140401?irpc=932", + "display_url": "mobile.reuters.com/article/idUSBR…", + "indices": [ + 75, + 97 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 9, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 01 22:42:24 +0000 2014", + "id": 451127466640539649, + "id_str": "451127466640539649", + "text": "RT @dangoodin001: Strange malware from 2013 propagated via fake Ukraine-related documents http://t.co/nOXQXJ0XJ7 by @cfarivar", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue Apr 01 22:33:16 +0000 2014", + "id": 451125169369530368, + "id_str": "451125169369530368", + "text": "Strange malware from 2013 propagated via fake Ukraine-related documents http://t.co/nOXQXJ0XJ7 by @cfarivar", + "source": "TweetDeck", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 14150736, + "id_str": "14150736" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 4, + "favorite_count": 3, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/nOXQXJ0XJ7", + "expanded_url": "http://ars.to/PfEW7w", + "display_url": "ars.to/PfEW7w", + "indices": [ + 72, + 94 + ] + } + ], + "user_mentions": [ + { + "screen_name": "cfarivar", + "name": "Cyrus Farivar", + "id": 709313, + "id_str": "709313", + "indices": [ + 98, + 107 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 4, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 01 22:38:52 +0000 2014", + "id": 451126577435533312, + "id_str": "451126577435533312", + "text": "@demize95 @Talen_Lee @hinanawi_chan American public schools are government, but they have all sorts of weirdness around custody of the kids", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451126275273285632, + "in_reply_to_status_id_str": "451126275273285632", + "in_reply_to_user_id": 137133048, + "in_reply_to_user_id_str": "137133048", + "in_reply_to_screen_name": "demize95", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 01 22:37:27 +0000 2014", + "id": 451126221624332288, + "id_str": "451126221624332288", + "text": "@lrigknat_geek 🔪💀", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451126007303401472, + "in_reply_to_status_id_str": "451126007303401472", + "in_reply_to_user_id": 14517660, + "in_reply_to_user_id_str": "14517660", + "in_reply_to_screen_name": "lrigknat_geek", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Tue Apr 01 22:37:01 +0000 2014", + "id": 451126114174631937, + "id_str": "451126114174631937", + "text": "@rmd1023 Woburn is primarily known for being the inspiration for a movie about negligence of the water safety. \\o/", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451125751824539648, + "in_reply_to_status_id_str": "451125751824539648", + "in_reply_to_user_id": 14821220, + "in_reply_to_user_id_str": "14821220", + "in_reply_to_screen_name": "rmd1023", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 01 22:35:57 +0000 2014", + "id": 451125844623503360, + "id_str": "451125844623503360", + "text": ".@lojikil I’ve found that if you use a handle as your primary identity, people will assume your “real name” is automatically secret :)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451124931699302400, + "in_reply_to_status_id_str": "451124931699302400", + "in_reply_to_user_id": 369714291, + "in_reply_to_user_id_str": "369714291", + "in_reply_to_screen_name": "lojikil", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 01 22:34:46 +0000 2014", + "id": 451125546404286465, + "id_str": "451125546404286465", + "text": "@Talen_Lee yeah she was all like who is THIS, why do you have his picture, and I wasn’t in TROUBLE but she just… well. Yeah.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451125094593474560, + "in_reply_to_status_id_str": "451125094593474560", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 01 22:32:35 +0000 2014", + "id": 451124998745632768, + "id_str": "451124998745632768", + "text": "@Talen_Lee for no apparent reason, and — get this — she PRINTED OUT a photograph of an internet friend she found in my documents", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451124461664604160, + "in_reply_to_status_id_str": "451124461664604160", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 01 22:31:13 +0000 2014", + "id": 451124653399228416, + "id_str": "451124653399228416", + "text": "@Talen_Lee it WAS my hard drive, actually. My mother broke into my computer while I was abroad.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451124461664604160, + "in_reply_to_status_id_str": "451124461664604160", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 01 22:30:41 +0000 2014", + "id": 451124521106669568, + "id_str": "451124521106669568", + "text": "@lojikil it’s on my github, but a lot of people don’t notice that and think I keep leaking a secret identity :)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451124347566956544, + "in_reply_to_status_id_str": "451124347566956544", + "in_reply_to_user_id": 369714291, + "in_reply_to_user_id_str": "369714291", + "in_reply_to_screen_name": "lojikil", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 01 22:29:33 +0000 2014", + "id": 451124232769265664, + "id_str": "451124232769265664", + "text": "@Talen_Lee oh hey so guess what I still haven’t forgiven my mother for a decade later", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451119887146942466, + "in_reply_to_status_id_str": "451119887146942466", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 01 22:28:51 +0000 2014", + "id": 451124057921298432, + "id_str": "451124057921298432", + "text": "I will emoji-shank the first person to say I’m compromising my OPSEC by revealing I do, in fact, have a last name and live in a town 🔪", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 11, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 01 22:26:39 +0000 2014", + "id": 451123505573396480, + "id_str": "451123505573396480", + "text": "I was trying to figure out why there were news crews around the hospital today… no dice.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 01 22:23:28 +0000 2014", + "id": 451122704465547264, + "id_str": "451122704465547264", + "text": "Apparently I am currently in The Least Interesting Town in the World http://t.co/4lZ1EWSJhA", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 01 22:19:24 +0000 2014", + "id": 451121679960649728, + "id_str": "451121679960649728", + "text": "@querulus @frkbmb that’s right on the dot for young earth creationism", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451105323957223424, + "in_reply_to_status_id_str": "451105323957223424", + "in_reply_to_user_id": 366333581, + "in_reply_to_user_id_str": "366333581", + "in_reply_to_screen_name": "querulus", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 01 21:24:27 +0000 2014", + "id": 451107849247424512, + "id_str": "451107849247424512", + "text": "@zhuowei @Talen_Lee although there’s multiple dimensions of which I “like best” — she’s not “the one I would most cuddle” :)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451107347839324161, + "in_reply_to_status_id_str": "451107347839324161", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 01 21:23:31 +0000 2014", + "id": 451107614727110656, + "id_str": "451107614727110656", + "text": "@zhuowei @Talen_Lee Houri, the Red Swan of Tarim, you heard it here first", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451107347839324161, + "in_reply_to_status_id_str": "451107347839324161", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 01 21:22:40 +0000 2014", + "id": 451107401841016832, + "id_str": "451107401841016832", + "text": "@Talen_Lee my hips will never sashay like that though :(", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451106749416615936, + "in_reply_to_status_id_str": "451106749416615936", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 01 21:15:39 +0000 2014", + "id": 451105635120472064, + "id_str": "451105635120472064", + "text": "@Talen_Lee (channeling my own favorite character in ultimate author arrogance)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451100861217783808, + "in_reply_to_status_id_str": "451100861217783808", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 01 21:09:22 +0000 2014", + "id": 451104053729427456, + "id_str": "451104053729427456", + "text": "@samuelpepys got any tips for convincing other people they’re froward?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451103483195047937, + "in_reply_to_status_id_str": "451103483195047937", + "in_reply_to_user_id": 14475268, + "in_reply_to_user_id_str": "14475268", + "in_reply_to_screen_name": "samuelpepys", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 01 21:06:01 +0000 2014", + "id": 451103210078736384, + "id_str": "451103210078736384", + "text": "@Talen_Lee @Shufflejoy http://t.co/3mB5PyRrgJ", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451100861217783808, + "in_reply_to_status_id_str": "451100861217783808", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Tue Apr 01 20:56:01 +0000 2014", + "id": 451100695551569921, + "id_str": "451100695551569921", + "text": "@Talen_Lee @Shufflejoy what is this device, shall enemies be crushed upon it", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451100362435342336, + "in_reply_to_status_id_str": "451100362435342336", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 01 20:53:29 +0000 2014", + "id": 451100058692616192, + "id_str": "451100058692616192", + "text": "@Talen_Lee @Shufflejoy is it the shoe with which we CRUSH OUR ENEMIES?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451099501885812736, + "in_reply_to_status_id_str": "451099501885812736", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 01 20:46:25 +0000 2014", + "id": 451098279561142272, + "id_str": "451098279561142272", + "text": "@Talen_Lee ᕕ( ᐛ )ᕗ", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451098201685110784, + "in_reply_to_status_id_str": "451098201685110784", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "iu" + }, + { + "created_at": "Tue Apr 01 20:22:45 +0000 2014", + "id": 451092322093387776, + "id_str": "451092322093387776", + "text": "@miaubiz he’s drunk on kawaii.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451092171949867010, + "in_reply_to_status_id_str": "451092171949867010", + "in_reply_to_user_id": 30510723, + "in_reply_to_user_id_str": "30510723", + "in_reply_to_screen_name": "miaubiz", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "tl" + }, + { + "created_at": "Tue Apr 01 20:18:37 +0000 2014", + "id": 451091284267372544, + "id_str": "451091284267372544", + "text": "@jennifurret I’m not good with words, so: here is a flower http://t.co/5Py3A64bYv", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451088428419911680, + "in_reply_to_status_id_str": "451088428419911680", + "in_reply_to_user_id": 42256596, + "in_reply_to_user_id_str": "42256596", + "in_reply_to_screen_name": "jennifurret", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 01 20:05:50 +0000 2014", + "id": 451088068117020672, + "id_str": "451088068117020672", + "text": "@fewerror bingo baby!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451087935115649024, + "in_reply_to_status_id_str": "451087935115649024", + "in_reply_to_user_id": 1932168457, + "in_reply_to_user_id_str": "1932168457", + "in_reply_to_screen_name": "fewerror", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "tl" + }, + { + "created_at": "Tue Apr 01 20:05:17 +0000 2014", + "id": 451087929046482944, + "id_str": "451087929046482944", + "text": "@vogon @fewerror less wrong! #botbaiting", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451087365079973888, + "in_reply_to_status_id_str": "451087365079973888", + "in_reply_to_user_id": 6326912, + "in_reply_to_user_id_str": "6326912", + "in_reply_to_screen_name": "vogon", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 01 19:38:36 +0000 2014", + "id": 451081214783664128, + "id_str": "451081214783664128", + "text": "RT @arstechnica: Hands-on with Bioware’s Garrus Vakarian body pillow—very, very hands-on http://t.co/PVchDNgmVl by @Lee_Ars", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue Apr 01 19:36:13 +0000 2014", + "id": 451080611818504192, + "id_str": "451080611818504192", + "text": "Hands-on with Bioware’s Garrus Vakarian body pillow—very, very hands-on http://t.co/PVchDNgmVl by @Lee_Ars", + "source": "Ars tweetbot", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 717313, + "id_str": "717313" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 18, + "favorite_count": 13, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/PVchDNgmVl", + "expanded_url": "http://ars.to/1kpDglN", + "display_url": "ars.to/1kpDglN", + "indices": [ + 72, + 94 + ] + } + ], + "user_mentions": [ + { + "screen_name": "Lee_Ars", + "name": "Lee Hutchinson", + "id": 785388690, + "id_str": "785388690", + "indices": [ + 98, + 106 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 18, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 01 19:32:19 +0000 2014", + "id": 451079632788258816, + "id_str": "451079632788258816", + "text": "RT @fredowsley: @nickdepetrillo @chriseng @AmberBaldet Don't forget http://t.co/g5SBMcUO4q is always free.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue Apr 01 19:30:22 +0000 2014", + "id": 451079142138974208, + "id_str": "451079142138974208", + "text": "@nickdepetrillo @chriseng @AmberBaldet Don't forget http://t.co/g5SBMcUO4q is always free.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 451069559299383296, + "in_reply_to_status_id_str": "451069559299383296", + "in_reply_to_user_id": 40222002, + "in_reply_to_user_id_str": "40222002", + "in_reply_to_screen_name": "nickdepetrillo", + "user": { + "id": 14156096, + "id_str": "14156096" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 7, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/g5SBMcUO4q", + "expanded_url": "http://print-a-cert.com/", + "display_url": "print-a-cert.com", + "indices": [ + 52, + 74 + ] + } + ], + "user_mentions": [ + { + "screen_name": "nickdepetrillo", + "name": "NickDe", + "id": 40222002, + "id_str": "40222002", + "indices": [ + 0, + 15 + ] + }, + { + "screen_name": "chriseng", + "name": "Chris Eng", + "id": 13752192, + "id_str": "13752192", + "indices": [ + 16, + 25 + ] + }, + { + "screen_name": "AmberBaldet", + "name": "Amber", + "id": 14872837, + "id_str": "14872837", + "indices": [ + 26, + 38 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 3, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 01 19:31:51 +0000 2014", + "id": 451079515432050688, + "id_str": "451079515432050688", + "text": "Pleased to announce that we are joining the NSA-RSA Joint Reverse Bug Bounty Program. In unrelated news, I’m taking an extravagant vacation.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 5, + "favorite_count": 10, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 01 19:28:51 +0000 2014", + "id": 451078758293045250, + "id_str": "451078758293045250", + "text": "RT @RSnake: Don’t forget, there is a special on getting your Application Security Specialist cert today - it’s FREE: http://t.co/gyXyXoLt3h", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue Apr 01 16:52:00 +0000 2014", + "id": 451039287610314752, + "id_str": "451039287610314752", + "text": "Don’t forget, there is a special on getting your Application Security Specialist cert today - it’s FREE: http://t.co/gyXyXoLt3h", + "source": "Janetter for Mac", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 15637093, + "id_str": "15637093" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 30, + "favorite_count": 17, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/gyXyXoLt3h", + "expanded_url": "http://www.asscert.com/", + "display_url": "asscert.com", + "indices": [ + 105, + 127 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 30, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 01 19:21:05 +0000 2014", + "id": 451076804527525888, + "id_str": "451076804527525888", + "text": ".@jonoberheide I hope you at least got more than ten million dollars", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451076532522717185, + "in_reply_to_status_id_str": "451076532522717185", + "in_reply_to_user_id": 18132825, + "in_reply_to_user_id_str": "18132825", + "in_reply_to_screen_name": "jonoberheide", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 01 19:17:37 +0000 2014", + "id": 451075931785138177, + "id_str": "451075931785138177", + "text": "RT @duosec: Important announcement from Duo: http://t.co/5i2WAT4IWk", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue Apr 01 19:12:18 +0000 2014", + "id": 451074594292498432, + "id_str": "451074594292498432", + "text": "Important announcement from Duo: http://t.co/5i2WAT4IWk", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 95339302, + "id_str": "95339302" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 34, + "favorite_count": 18, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/5i2WAT4IWk", + "expanded_url": "http://duo.sc/1iaujvb", + "display_url": "duo.sc/1iaujvb", + "indices": [ + 33, + 55 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "de" + }, + "retweet_count": 34, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "de" + }, + { + "created_at": "Tue Apr 01 19:05:53 +0000 2014", + "id": 451072979850764289, + "id_str": "451072979850764289", + "text": "@ShadowTodd stereotypes about nobles being softies taken to satirical extremes, afaik.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451072796773191680, + "in_reply_to_status_id_str": "451072796773191680", + "in_reply_to_user_id": 168769498, + "in_reply_to_user_id_str": "168769498", + "in_reply_to_screen_name": "ShadowTodd", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 01 19:01:19 +0000 2014", + "id": 451071828967321600, + "id_str": "451071828967321600", + "text": "@vruz if they genuinely did not expect this backlash then they really failed in due diligence when they chose him...", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 451071261981298689, + "in_reply_to_status_id_str": "451071261981298689", + "in_reply_to_user_id": 28009632, + "in_reply_to_user_id_str": "28009632", + "in_reply_to_screen_name": "vruz", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 01 18:43:58 +0000 2014", + "id": 451067464328421376, + "id_str": "451067464328421376", + "text": "@demize95 @chriseng ˙ ͜ʟ˙", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451067384414347264, + "in_reply_to_status_id_str": "451067384414347264", + "in_reply_to_user_id": 137133048, + "in_reply_to_user_id_str": "137133048", + "in_reply_to_screen_name": "demize95", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "vi" + }, + { + "created_at": "Tue Apr 01 18:42:37 +0000 2014", + "id": 451067123599949824, + "id_str": "451067123599949824", + "text": ".@chriseng *me*, abuse emoticons? (ㆆ▃ㆆ)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451066248965943296, + "in_reply_to_status_id_str": "451066248965943296", + "in_reply_to_user_id": 13752192, + "in_reply_to_user_id_str": "13752192", + "in_reply_to_screen_name": "chriseng", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 4, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "ko" + }, + { + "created_at": "Tue Apr 01 18:42:13 +0000 2014", + "id": 451067024215908352, + "id_str": "451067024215908352", + "text": "RT @chriseng: Somehow @0xabad1dea must've gotten write access to the Chrome product backlog. No other explanation: http://t.co/3HM6lekFFi", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue Apr 01 18:39:08 +0000 2014", + "id": 451066248965943296, + "id_str": "451066248965943296", + "text": "Somehow @0xabad1dea must've gotten write access to the Chrome product backlog. No other explanation: http://t.co/3HM6lekFFi", + "source": "MetroTwit", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 13752192, + "id_str": "13752192" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 1, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/3HM6lekFFi", + "expanded_url": "http://www.youtube.com/watch?v=G3NXNnoGr3Y&feature=youtu.be", + "display_url": "youtube.com/watch?v=G3NXNn…", + "indices": [ + 101, + 123 + ] + } + ], + "user_mentions": [ + { + "screen_name": "0xabad1dea", + "name": "Melissa", + "id": 126030998, + "id_str": "126030998", + "indices": [ + 8, + 19 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 2, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 01 18:25:06 +0000 2014", + "id": 451062716103671808, + "id_str": "451062716103671808", + "text": "RT @chriseng: 2014 Verizon DBIR leaked: http://t.co/ItXen9KCOz", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue Apr 01 17:12:55 +0000 2014", + "id": 451044552309481472, + "id_str": "451044552309481472", + "text": "2014 Verizon DBIR leaked: http://t.co/ItXen9KCOz", + "source": "MetroTwit", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 13752192, + "id_str": "13752192" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 17, + "favorite_count": 4, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/ItXen9KCOz", + "expanded_url": "http://threatverti.ca/pubs/2014dbir.pdf", + "display_url": "threatverti.ca/pubs/2014dbir.…", + "indices": [ + 26, + 48 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 17, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 01 18:23:06 +0000 2014", + "id": 451062211126231040, + "id_str": "451062211126231040", + "text": "RT @hinanawi_chan: @landley That’s the sign of a UNIX programmer’s mind.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue Apr 01 17:05:12 +0000 2014", + "id": 451042607616262145, + "id_str": "451042607616262145", + "text": "@landley That’s the sign of a UNIX programmer’s mind.", + "source": "Tweetbot for Mac", + "truncated": false, + "in_reply_to_status_id": 451042547830251520, + "in_reply_to_status_id_str": "451042547830251520", + "in_reply_to_user_id": 14326287, + "in_reply_to_user_id_str": "14326287", + "in_reply_to_screen_name": "landley", + "user": { + "id": 2336014178, + "id_str": "2336014178" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 18, + "favorite_count": 11, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "landley", + "name": "@landley", + "id": 14326287, + "id_str": "14326287", + "indices": [ + 0, + 8 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 18, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 01 18:23:03 +0000 2014", + "id": 451062198027423745, + "id_str": "451062198027423745", + "text": "RT @landley: @hinanawi_chan I was sitting in it at the time.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue Apr 01 17:04:58 +0000 2014", + "id": 451042547830251520, + "id_str": "451042547830251520", + "text": "@hinanawi_chan I was sitting in it at the time.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 451040993710972929, + "in_reply_to_status_id_str": "451040993710972929", + "in_reply_to_user_id": 2336014178, + "in_reply_to_user_id_str": "2336014178", + "in_reply_to_screen_name": "hinanawi_chan", + "user": { + "id": 14326287, + "id_str": "14326287" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 18, + "favorite_count": 8, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "hinanawi_chan", + "name": "「Catherine ★」", + "id": 2336014178, + "id_str": "2336014178", + "indices": [ + 0, + 14 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 18, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 01 18:22:59 +0000 2014", + "id": 451062183892647937, + "id_str": "451062183892647937", + "text": "RT @hinanawi_chan: @landley That’s the sign of a programmer’s mind.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue Apr 01 17:04:54 +0000 2014", + "id": 451042534136242177, + "id_str": "451042534136242177", + "text": "@landley That’s the sign of a programmer’s mind.", + "source": "Tweetbot for Mac", + "truncated": false, + "in_reply_to_status_id": 451042485729382400, + "in_reply_to_status_id_str": "451042485729382400", + "in_reply_to_user_id": 14326287, + "in_reply_to_user_id_str": "14326287", + "in_reply_to_screen_name": "landley", + "user": { + "id": 2336014178, + "id_str": "2336014178" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 17, + "favorite_count": 6, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "landley", + "name": "@landley", + "id": 14326287, + "id_str": "14326287", + "indices": [ + 0, + 8 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 17, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 01 18:22:56 +0000 2014", + "id": 451062169401319425, + "id_str": "451062169401319425", + "text": "RT @landley: @hinanawi_chan I took my desk apart in class once to see how many screws I could remove before it fell apart.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue Apr 01 17:04:43 +0000 2014", + "id": 451042485729382400, + "id_str": "451042485729382400", + "text": "@hinanawi_chan I took my desk apart in class once to see how many screws I could remove before it fell apart.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 451040993710972929, + "in_reply_to_status_id_str": "451040993710972929", + "in_reply_to_user_id": 2336014178, + "in_reply_to_user_id_str": "2336014178", + "in_reply_to_screen_name": "hinanawi_chan", + "user": { + "id": 14326287, + "id_str": "14326287" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 18, + "favorite_count": 10, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "hinanawi_chan", + "name": "「Catherine ★」", + "id": 2336014178, + "id_str": "2336014178", + "indices": [ + 0, + 14 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 18, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 01 18:19:53 +0000 2014", + "id": 451061401206161408, + "id_str": "451061401206161408", + "text": "RT @mnemosynekurai: WHY IS THIS AN APRIL FOOL'S DAY JOKE. BIOWARE. WHY IS THIS ONLY A JOKE. http://t.co/2IbnYTjYEL", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue Apr 01 16:24:39 +0000 2014", + "id": 451032402110865408, + "id_str": "451032402110865408", + "text": "WHY IS THIS AN APRIL FOOL'S DAY JOKE. BIOWARE. WHY IS THIS ONLY A JOKE. http://t.co/2IbnYTjYEL", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 22143460, + "id_str": "22143460" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 83, + "favorite_count": 44, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/2IbnYTjYEL", + "expanded_url": "http://www.biowarestore.com/brands/mass-effect/garrus-vakarian-body-pillow.html", + "display_url": "biowarestore.com/brands/mass-ef…", + "indices": [ + 72, + 94 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 83, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 01 17:26:54 +0000 2014", + "id": 451048070940459009, + "id_str": "451048070940459009", + "text": "@TheEijk no, it's definitely not Windows XP at all :)", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 451046349614878720, + "in_reply_to_status_id_str": "451046349614878720", + "in_reply_to_user_id": 1366506102, + "in_reply_to_user_id_str": "1366506102", + "in_reply_to_screen_name": "TheEijk", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 01 16:28:22 +0000 2014", + "id": 451033337818521600, + "id_str": "451033337818521600", + "text": "@DainCaldon I actually already own two or three Windows computers that are better than this one. But I can't use them because Reasons", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 451032744995594242, + "in_reply_to_status_id_str": "451032744995594242", + "in_reply_to_user_id": 241553870, + "in_reply_to_user_id_str": "241553870", + "in_reply_to_screen_name": "DainCaldon", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 01 16:27:13 +0000 2014", + "id": 451033051448238082, + "id_str": "451033051448238082", + "text": "@DainCaldon please don't draw the attention of my CEO :)", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 451032744995594242, + "in_reply_to_status_id_str": "451032744995594242", + "in_reply_to_user_id": 241553870, + "in_reply_to_user_id_str": "241553870", + "in_reply_to_screen_name": "DainCaldon", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 01 16:22:38 +0000 2014", + "id": 451031894663385088, + "id_str": "451031894663385088", + "text": "@DainCaldon lenovo e531? It falls short of every single requirement I had but there's a ban on ordering new laptops because who knows", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 451031553079255040, + "in_reply_to_status_id_str": "451031553079255040", + "in_reply_to_user_id": 241553870, + "in_reply_to_user_id_str": "241553870", + "in_reply_to_screen_name": "DainCaldon", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 01 16:19:57 +0000 2014", + "id": 451031220345135106, + "id_str": "451031220345135106", + "text": "Oh sweet the keyboard has a calc.exe button for covering up when your live exploit demo failed", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 12, + "favorite_count": 23, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 01 16:15:23 +0000 2014", + "id": 451030070195658752, + "id_str": "451030070195658752", + "text": "@demize95 no, why would... ... huh. It does. What am I supposed to do with this??", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 451029926443876353, + "in_reply_to_status_id_str": "451029926443876353", + "in_reply_to_user_id": 137133048, + "in_reply_to_user_id_str": "137133048", + "in_reply_to_screen_name": "demize95", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 01 16:10:09 +0000 2014", + "id": 451028755142934528, + "id_str": "451028755142934528", + "text": "@demize95 at least it has a real HDMI port so I can upgrade to the Minimum Viable Resolution of 1080p if I lug around my monitor everywhere", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 451028198453559296, + "in_reply_to_status_id_str": "451028198453559296", + "in_reply_to_user_id": 137133048, + "in_reply_to_user_id_str": "137133048", + "in_reply_to_screen_name": "demize95", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 01 16:02:03 +0000 2014", + "id": 451026717642338305, + "id_str": "451026717642338305", + "text": "@blowdart I hired <redacted> to stand in for me. He’s so shy, so he’ll never betray me.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451026424040660992, + "in_reply_to_status_id_str": "451026424040660992", + "in_reply_to_user_id": 1847381, + "in_reply_to_user_id_str": "1847381", + "in_reply_to_screen_name": "blowdart", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 01 15:57:54 +0000 2014", + "id": 451025669518946304, + "id_str": "451025669518946304", + "text": "Looks legit. http://t.co/sEebbhqhuY", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 5, + "favorite_count": 8, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 01 15:57:09 +0000 2014", + "id": 451025481383809024, + "id_str": "451025481383809024", + "text": "@travisgoodspeed check your privilege", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451025370272133120, + "in_reply_to_status_id_str": "451025370272133120", + "in_reply_to_user_id": 81458523, + "in_reply_to_user_id_str": "81458523", + "in_reply_to_screen_name": "travisgoodspeed", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 01 15:53:37 +0000 2014", + "id": 451024593172840448, + "id_str": "451024593172840448", + "text": "Screw it, if work won’t buy me a nice laptop then I’m retiring to live off my winnings as Pinkie Pie. Yes me. The PINK one? Duh.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 01 15:43:35 +0000 2014", + "id": 451022069510443009, + "id_str": "451022069510443009", + "text": "@unixronin still can’t see anything chief.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451021944557563904, + "in_reply_to_status_id_str": "451021944557563904", + "in_reply_to_user_id": 25068712, + "in_reply_to_user_id_str": "25068712", + "in_reply_to_screen_name": "unixronin", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 01 15:41:07 +0000 2014", + "id": 451021448761843712, + "id_str": "451021448761843712", + "text": "@abrahamvegh yeah if only.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451021419192004609, + "in_reply_to_status_id_str": "451021419192004609", + "in_reply_to_user_id": 19140065, + "in_reply_to_user_id_str": "19140065", + "in_reply_to_screen_name": "abrahamvegh", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 01 15:39:25 +0000 2014", + "id": 451021021588770816, + "id_str": "451021021588770816", + "text": "I had to go begging for a new laptop at work and I got one with a 768px 15” screen. I can’t see anything and I want to die.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 4, + "favorite_count": 6, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 01 15:33:15 +0000 2014", + "id": 451019470275088384, + "id_str": "451019470275088384", + "text": "@hinanawi_chan Catherine the Great", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451019285096562688, + "in_reply_to_status_id_str": "451019285096562688", + "in_reply_to_user_id": 2336014178, + "in_reply_to_user_id_str": "2336014178", + "in_reply_to_screen_name": "hinanawi_chan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 01 15:31:38 +0000 2014", + "id": 451019060969758720, + "id_str": "451019060969758720", + "text": ".@captcarl13 I’m hoping to make a jailbreaker cry :)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451018874444853249, + "in_reply_to_status_id_str": "451018874444853249", + "in_reply_to_user_id": 25856211, + "in_reply_to_user_id_str": "25856211", + "in_reply_to_screen_name": "captcarl13", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 01 15:30:27 +0000 2014", + "id": 451018764457639936, + "id_str": "451018764457639936", + "text": ".@captcarl13 You do realize I am not stupid and I *am* mean, right", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451018625240276992, + "in_reply_to_status_id_str": "451018625240276992", + "in_reply_to_user_id": 25856211, + "in_reply_to_user_id_str": "25856211", + "in_reply_to_screen_name": "captcarl13", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 01 15:28:17 +0000 2014", + "id": 451018220661932032, + "id_str": "451018220661932032", + "text": "RT @jeremiahfelt: Apple bought iFixit. Hmm.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue Apr 01 15:08:21 +0000 2014", + "id": 451013203561316353, + "id_str": "451013203561316353", + "text": "Apple bought iFixit. Hmm.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 9154112, + "id_str": "9154112" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 7, + "favorite_count": 2, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 7, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 01 15:27:13 +0000 2014", + "id": 451017948606758912, + "id_str": "451017948606758912", + "text": "@jeremiahfelt for a split second there…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451013203561316353, + "in_reply_to_status_id_str": "451013203561316353", + "in_reply_to_user_id": 9154112, + "in_reply_to_user_id_str": "9154112", + "in_reply_to_screen_name": "jeremiahfelt", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 01 15:25:12 +0000 2014", + "id": 451017442966650880, + "id_str": "451017442966650880", + "text": "RT @mikko: Someone enumerated Coinbase user emails, created an account called \"❢ Urgent: Coinbase hacked\" and spammed them with: http://t.c…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue Apr 01 14:48:35 +0000 2014", + "id": 451008228453650432, + "id_str": "451008228453650432", + "text": "Someone enumerated Coinbase user emails, created an account called \"❢ Urgent: Coinbase hacked\" and spammed them with: http://t.co/mpuHHx0Phj", + "source": "Tweet Button", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 23566038, + "id_str": "23566038" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 39, + "favorite_count": 31, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ], + "media": [ + { + "id": 450967034365374464, + "id_str": "450967034365374464", + "indices": [ + 118, + 140 + ], + "media_url": "http://pbs.twimg.com/media/BkIoIODCcAAFFWD.png", + "media_url_https": "https://pbs.twimg.com/media/BkIoIODCcAAFFWD.png", + "url": "http://t.co/mpuHHx0Phj", + "display_url": "pic.twitter.com/mpuHHx0Phj", + "expanded_url": "http://twitter.com/nivs/status/450967034356985857/photo/1", + "type": "photo", + "sizes": { + "large": { + "w": 768, + "h": 1569, + "resize": "fit" + }, + "small": { + "w": 333, + "h": 680, + "resize": "fit" + }, + "medium": { + "w": 587, + "h": 1200, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + } + }, + "source_status_id": 450967034356985857, + "source_status_id_str": "450967034356985857" + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 39, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 01 15:22:57 +0000 2014", + "id": 451016876521713666, + "id_str": "451016876521713666", + "text": "@m1sp better than the most obvious reason", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 451005564726677505, + "in_reply_to_status_id_str": "451005564726677505", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 01 15:20:57 +0000 2014", + "id": 451016372777406464, + "id_str": "451016372777406464", + "text": "@Talen_Lee you DM’d me in my sleep! Apparently I also answered in my sleep, if logs are to be believe", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 450998793677193216, + "in_reply_to_status_id_str": "450998793677193216", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 01 15:07:04 +0000 2014", + "id": 451012877785501697, + "id_str": "451012877785501697", + "text": "The amount of blood and tears required to “just add another account” to my Wind+ws 8 tablet (HELLO TECH SUPPORT NO I DO NOT NEED HELP BYE)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 01 15:05:30 +0000 2014", + "id": 451012486490521601, + "id_str": "451012486490521601", + "text": "@protosphere_ @m1sp in my building, the one on the left will always open first", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 450933874072096768, + "in_reply_to_status_id_str": "450933874072096768", + "in_reply_to_user_id": 354662280, + "in_reply_to_user_id_str": "354662280", + "in_reply_to_screen_name": "protosphere_", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 01 14:06:58 +0000 2014", + "id": 450997755797053440, + "id_str": "450997755797053440", + "text": "@m1sp @kivikakk oh. My husband wanted you to know that it’s vulnerable to high-quality gaming mice", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 450882638547410944, + "in_reply_to_status_id_str": "450882638547410944", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 01 14:03:31 +0000 2014", + "id": 450996887123152896, + "id_str": "450996887123152896", + "text": "@puellavulnerata oh my gods this isn’t even April Fools is it", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 450879202720362497, + "in_reply_to_status_id_str": "450879202720362497", + "in_reply_to_user_id": 54666727, + "in_reply_to_user_id_str": "54666727", + "in_reply_to_screen_name": "puellavulnerata", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 01 13:58:30 +0000 2014", + "id": 450995623727472640, + "id_str": "450995623727472640", + "text": "@m1sp aww what did I ever do to them besides create them and give them self-awareness of their own suffering", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 450868247714209792, + "in_reply_to_status_id_str": "450868247714209792", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 01 13:55:46 +0000 2014", + "id": 450994938042675200, + "id_str": "450994938042675200", + "text": "RT @kevinlange: PonyOS 2.0 is out! http://t.co/l73V4YY3ux http://t.co/rbw8Lx24a9", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue Apr 01 05:13:48 +0000 2014", + "id": 450863579118325760, + "id_str": "450863579118325760", + "text": "PonyOS 2.0 is out! http://t.co/l73V4YY3ux http://t.co/rbw8Lx24a9", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 25143948, + "id_str": "25143948" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 76, + "favorite_count": 25, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/l73V4YY3ux", + "expanded_url": "http://ponyos.org", + "display_url": "ponyos.org", + "indices": [ + 19, + 41 + ] + } + ], + "user_mentions": [ + + ], + "media": [ + { + "id": 450863579126714368, + "id_str": "450863579126714368", + "indices": [ + 42, + 64 + ], + "media_url": "http://pbs.twimg.com/media/BkHKCVQCUAAo6ad.png", + "media_url_https": "https://pbs.twimg.com/media/BkHKCVQCUAAo6ad.png", + "url": "http://t.co/rbw8Lx24a9", + "display_url": "pic.twitter.com/rbw8Lx24a9", + "expanded_url": "http://twitter.com/kevinlange/status/450863579118325760/photo/1", + "type": "photo", + "sizes": { + "medium": { + "w": 600, + "h": 338, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 191, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 1024, + "h": 576, + "resize": "fit" + } + } + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 76, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 01 04:46:24 +0000 2014", + "id": 450856682596626434, + "id_str": "450856682596626434", + "text": "What does Weird Twitter do on April Fool’s? Instagram their lunch?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 5, + "favorite_count": 15, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 01 04:45:11 +0000 2014", + "id": 450856379126136832, + "id_str": "450856379126136832", + "text": "RT @puellavulnerata: A web browser doesn't so much have an attack surface as an fractal attack sponge of infinite area.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue Apr 01 04:44:37 +0000 2014", + "id": 450856233071697920, + "id_str": "450856233071697920", + "text": "A web browser doesn't so much have an attack surface as an fractal attack sponge of infinite area.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 450855892368375809, + "in_reply_to_status_id_str": "450855892368375809", + "in_reply_to_user_id": 54666727, + "in_reply_to_user_id_str": "54666727", + "in_reply_to_screen_name": "puellavulnerata", + "user": { + "id": 54666727, + "id_str": "54666727" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 97, + "favorite_count": 73, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 97, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 01 04:41:34 +0000 2014", + "id": 450855467901026304, + "id_str": "450855467901026304", + "text": "RT @defcoin: Tired of making real money with your GPU farm? Why not mine defcoin instead?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue Apr 01 04:05:47 +0000 2014", + "id": 450846463589744640, + "id_str": "450846463589744640", + "text": "Tired of making real money with your GPU farm? Why not mine defcoin instead?", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2371143588, + "id_str": "2371143588" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 38, + "favorite_count": 18, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 38, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 01 04:40:48 +0000 2014", + "id": 450855273583104000, + "id_str": "450855273583104000", + "text": "If you’re Satoshi Nakamoto and it’s been weighing heavy on your heart, now would be a good time to blurt it out", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 12, + "favorite_count": 13, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 01 04:29:40 +0000 2014", + "id": 450852473578995712, + "id_str": "450852473578995712", + "text": "@mralext20 @zhuowei go reserve your top hat before they run out :)", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 450851982564020224, + "in_reply_to_status_id_str": "450851982564020224", + "in_reply_to_user_id": 905041434, + "in_reply_to_user_id_str": "905041434", + "in_reply_to_screen_name": "mralext20", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 01 04:27:20 +0000 2014", + "id": 450851883469787136, + "id_str": "450851883469787136", + "text": "@mralext20 @zhuowei oooh.... it's still March in Alaska ain't it.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 450851705807044609, + "in_reply_to_status_id_str": "450851705807044609", + "in_reply_to_user_id": 905041434, + "in_reply_to_user_id_str": "905041434", + "in_reply_to_screen_name": "mralext20", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 01 04:25:29 +0000 2014", + "id": 450851419277369345, + "id_str": "450851419277369345", + "text": "@m1sp Tsovinar in a Hat http://t.co/r8FUpmX9uO", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "in" + }, + { + "created_at": "Tue Apr 01 04:23:37 +0000 2014", + "id": 450850949238906880, + "id_str": "450850949238906880", + "text": "@zhuowei do you not see the hat", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 450850797366964224, + "in_reply_to_status_id_str": "450850797366964224", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 01 04:16:31 +0000 2014", + "id": 450849163572297729, + "id_str": "450849163572297729", + "text": "Upgraded my tumblr account to pro. http://t.co/mKaQ2ban8b", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 8, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 01 03:45:47 +0000 2014", + "id": 450841427006992384, + "id_str": "450841427006992384", + "text": "RT @feitclub: The best thing about pregnant women is the free Wifi http://t.co/DozRPXnulg", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue Apr 01 02:28:34 +0000 2014", + "id": 450821996650057728, + "id_str": "450821996650057728", + "text": "The best thing about pregnant women is the free Wifi http://t.co/DozRPXnulg", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 15425325, + "id_str": "15425325" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 17156, + "favorite_count": 11401, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ], + "media": [ + { + "id": 450821993147809792, + "id_str": "450821993147809792", + "indices": [ + 53, + 75 + ], + "media_url": "http://pbs.twimg.com/media/BkGkNtaCQAAQ5c-.jpg", + "media_url_https": "https://pbs.twimg.com/media/BkGkNtaCQAAQ5c-.jpg", + "url": "http://t.co/DozRPXnulg", + "display_url": "pic.twitter.com/DozRPXnulg", + "expanded_url": "http://twitter.com/feitclub/status/450821996650057728/photo/1", + "type": "photo", + "sizes": { + "medium": { + "w": 600, + "h": 450, + "resize": "fit" + }, + "large": { + "w": 1024, + "h": 768, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 255, + "resize": "fit" + } + } + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 17156, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 01 03:38:21 +0000 2014", + "id": 450839557001719808, + "id_str": "450839557001719808", + "text": "@hinanawi_chan @zhuowei it's fine. This is waaaay too many presents, it will go to my head.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 450839196257624064, + "in_reply_to_status_id_str": "450839196257624064", + "in_reply_to_user_id": 2336014178, + "in_reply_to_user_id_str": "2336014178", + "in_reply_to_screen_name": "hinanawi_chan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 01 03:36:32 +0000 2014", + "id": 450839102913802240, + "id_str": "450839102913802240", + "text": "@zhuowei @hinanawi_chan \\o/ just in time :D", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 450836868309848064, + "in_reply_to_status_id_str": "450836868309848064", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "fr" + }, + { + "created_at": "Tue Apr 01 03:14:34 +0000 2014", + "id": 450833571171692544, + "id_str": "450833571171692544", + "text": "@m1sp I just agonized over this edit to work in some better worldlore, I think it came out okay http://t.co/hNdkLDEtJT", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 01 03:06:20 +0000 2014", + "id": 450831499265601536, + "id_str": "450831499265601536", + "text": "Agonizing over one paragraph of exposition for hours #JustWriterThings", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 01 02:47:40 +0000 2014", + "id": 450826801695440896, + "id_str": "450826801695440896", + "text": "@JimmyS continual penetration testing. B- on the physical front.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 450825549670129665, + "in_reply_to_status_id_str": "450825549670129665", + "in_reply_to_user_id": 8335182, + "in_reply_to_user_id_str": "8335182", + "in_reply_to_screen_name": "JimmyS", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 01 02:34:42 +0000 2014", + "id": 450823540460486656, + "id_str": "450823540460486656", + "text": "@wakachamo @eevee … and the teacher grades it as ‘?’…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 450822842092105728, + "in_reply_to_status_id_str": "450822842092105728", + "in_reply_to_user_id": 14103188, + "in_reply_to_user_id_str": "14103188", + "in_reply_to_screen_name": "wakachamo", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 01 02:13:23 +0000 2014", + "id": 450818174708359168, + "id_str": "450818174708359168", + "text": "@demize95 @Talen_Lee because I mean, I’m just saying — boys and ropes", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 450812461088649216, + "in_reply_to_status_id_str": "450812461088649216", + "in_reply_to_user_id": 137133048, + "in_reply_to_user_id_str": "137133048", + "in_reply_to_screen_name": "demize95", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 01 02:11:40 +0000 2014", + "id": 450817745060634624, + "id_str": "450817745060634624", + "text": "RT @mattblaze: Remember, people in the southern hemisphere observe \"October fools day\" and will be confused & angered by your pranks tomorr…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue Apr 01 01:54:37 +0000 2014", + "id": 450813451796250624, + "id_str": "450813451796250624", + "text": "Remember, people in the southern hemisphere observe \"October fools day\" and will be confused & angered by your pranks tomorrow.", + "source": "TweetDeck", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 26567591, + "id_str": "26567591" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 80, + "favorite_count": 34, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 80, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 01 01:26:43 +0000 2014", + "id": 450806430661345281, + "id_str": "450806430661345281", + "text": "@JZdziarski …. Yeeeeeees? Most of my friends have accounts there…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 450805865504047104, + "in_reply_to_status_id_str": "450805865504047104", + "in_reply_to_user_id": 1267770224, + "in_reply_to_user_id_str": "1267770224", + "in_reply_to_screen_name": "JZdziarski", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 01 01:20:45 +0000 2014", + "id": 450804929071161344, + "id_str": "450804929071161344", + "text": "@Talen_Lee >_>", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 450804615106146304, + "in_reply_to_status_id_str": "450804615106146304", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "pt" + }, + { + "created_at": "Tue Apr 01 01:16:20 +0000 2014", + "id": 450803819564523520, + "id_str": "450803819564523520", + "text": "RT @shit_hn_says: If anything, Prop 8 would've helped them. Their core business is dating, right? If you can't marry, you date more. Wheref…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue Apr 01 01:06:39 +0000 2014", + "id": 450801382753189889, + "id_str": "450801382753189889", + "text": "If anything, Prop 8 would've helped them. Their core business is dating, right? If you can't marry, you date more. Wherefore the problem?", + "source": "Twitter for Mac", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 752430234, + "id_str": "752430234" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 73, + "favorite_count": 44, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 73, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 01 01:15:00 +0000 2014", + "id": 450803481663004672, + "id_str": "450803481663004672", + "text": "@Talen_Lee a-are you keeping notes on people’s confessed fetishes or—", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 450803140191723520, + "in_reply_to_status_id_str": "450803140191723520", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 01 01:12:34 +0000 2014", + "id": 450802869722439681, + "id_str": "450802869722439681", + "text": "@Talen_Lee then maybe I can’t flippantly be like “that sounds hot” :(", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 450802580776431616, + "in_reply_to_status_id_str": "450802580776431616", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 01 01:10:55 +0000 2014", + "id": 450802455404904448, + "id_str": "450802455404904448", + "text": "@Talen_Lee I need to know if the context is fictional or not because reasons", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 450801905988407297, + "in_reply_to_status_id_str": "450801905988407297", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 01 00:41:25 +0000 2014", + "id": 450795032002715649, + "id_str": "450795032002715649", + "text": "@zhuowei @pcmattman ahh-hah!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 450794809717178368, + "in_reply_to_status_id_str": "450794809717178368", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "lv" + }, + { + "created_at": "Tue Apr 01 00:41:08 +0000 2014", + "id": 450794960955408384, + "id_str": "450794960955408384", + "text": "RT @zhuowei: @0xabad1dea One of the authors of lynx went to Netscape, where he inspired the creation of the <blink> tag. http://t.co/woYJJ7…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue Apr 01 00:40:32 +0000 2014", + "id": 450794809717178368, + "id_str": "450794809717178368", + "text": "@0xabad1dea One of the authors of lynx went to Netscape, where he inspired the creation of the <blink> tag. http://t.co/woYJJ7Uuyq", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 450794153702879232, + "in_reply_to_status_id_str": "450794153702879232", + "in_reply_to_user_id": 126030998, + "in_reply_to_user_id_str": "126030998", + "in_reply_to_screen_name": "0xabad1dea", + "user": { + "id": 383083538, + "id_str": "383083538" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 27, + "favorite_count": 25, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/woYJJ7Uuyq", + "expanded_url": "http://www.montulli.org/theoriginofthe%3Cblink%3Etag", + "display_url": "montulli.org/theoriginofthe…", + "indices": [ + 114, + 136 + ] + } + ], + "user_mentions": [ + { + "screen_name": "0xabad1dea", + "name": "MeliSSL ", + "id": 126030998, + "id_str": "126030998", + "indices": [ + 0, + 11 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 27, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 01 00:37:56 +0000 2014", + "id": 450794153702879232, + "id_str": "450794153702879232", + "text": "I am aware that literally every browser vendor is backed by someone who does SOMETHING I don’t like.\n\nI just don’t know what lynx did yet.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 77, + "favorite_count": 71, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 01 00:33:36 +0000 2014", + "id": 450793063443857408, + "id_str": "450793063443857408", + "text": "@Talen_Lee that… that can’t be the same Wendy’s as we have", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 450776125644357633, + "in_reply_to_status_id_str": "450776125644357633", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 01 00:32:08 +0000 2014", + "id": 450792696924602369, + "id_str": "450792696924602369", + "text": "@ThomasWinwood it’s one of those quotes where the more you dig the more “real” origins you will find", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 450792499519688704, + "in_reply_to_status_id_str": "450792499519688704", + "in_reply_to_user_id": 1190210935, + "in_reply_to_user_id_str": "1190210935", + "in_reply_to_screen_name": "ThomasWinwood", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 01 00:29:26 +0000 2014", + "id": 450792017195704320, + "id_str": "450792017195704320", + "text": "@AlyssaRowan @hyperelliptic from the amount that goes over an SSL handshake? If so that’d be a whole new level of broken!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 450791620875923456, + "in_reply_to_status_id_str": "450791620875923456", + "in_reply_to_user_id": 2269606975, + "in_reply_to_user_id_str": "2269606975", + "in_reply_to_screen_name": "AlyssaRowan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 01 00:23:24 +0000 2014", + "id": 450790495678365696, + "id_str": "450790495678365696", + "text": "@SOMAMadman but I have no easy answer for the problem that obviously not everyone in a company will agree 2/2", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 450789675767062529, + "in_reply_to_status_id_str": "450789675767062529", + "in_reply_to_user_id": 126105959, + "in_reply_to_user_id_str": "126105959", + "in_reply_to_screen_name": "SOMAMadman", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 01 00:23:01 +0000 2014", + "id": 450790398857056256, + "id_str": "450790398857056256", + "text": "@SOMAMadman by taking a political stance I mean having a publicly issued opinion on some relevant matter 1/2", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 450789675767062529, + "in_reply_to_status_id_str": "450789675767062529", + "in_reply_to_user_id": 126105959, + "in_reply_to_user_id_str": "126105959", + "in_reply_to_screen_name": "SOMAMadman", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 01 00:20:56 +0000 2014", + "id": 450789876481658881, + "id_str": "450789876481658881", + "text": "@JZdziarski kept them to himself to the tune of $$$$. Quiet as the grave. Forced no one to follow laws he funded to enact. Totally optional.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 450765786601521152, + "in_reply_to_status_id_str": "450765786601521152", + "in_reply_to_user_id": 1267770224, + "in_reply_to_user_id_str": "1267770224", + "in_reply_to_screen_name": "JZdziarski", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 01 00:17:35 +0000 2014", + "id": 450789032252157952, + "id_str": "450789032252157952", + "text": "RT @chriseng: Since ppl are posting truncated screenshots, note that @okcupid is not *blocking* FF; there is a \"Continue to OkCupid\" link a…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Mon Mar 31 22:32:19 +0000 2014", + "id": 450762542881964032, + "id_str": "450762542881964032", + "text": "Since ppl are posting truncated screenshots, note that @okcupid is not *blocking* FF; there is a \"Continue to OkCupid\" link at the bottom.", + "source": "MetroTwit", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 13752192, + "id_str": "13752192" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 6, + "favorite_count": 2, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "okcupid", + "name": "OkCupid", + "id": 53543144, + "id_str": "53543144", + "indices": [ + 55, + 63 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 6, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 01 00:14:23 +0000 2014", + "id": 450788228510277632, + "id_str": "450788228510277632", + "text": "@dancapper I’m sick of certain people criticizing certain corporations’ decision to publicly criticize Mozilla.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 450787903015100416, + "in_reply_to_status_id_str": "450787903015100416", + "in_reply_to_user_id": 15438688, + "in_reply_to_user_id_str": "15438688", + "in_reply_to_screen_name": "dancapper", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 01 00:13:32 +0000 2014", + "id": 450788015095689217, + "id_str": "450788015095689217", + "text": "Let the record show that I totally wanted to ungender that quote but then I’d be misquoting its apocryphal attribution", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 01 00:11:04 +0000 2014", + "id": 450787394313547776, + "id_str": "450787394313547776", + "text": "@Talen_Lee @Avian_Flame technically it’s not free yet but if someone wants an advance copy of the pending free release I’m game", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 450757987540279296, + "in_reply_to_status_id_str": "450757987540279296", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Apr 01 00:09:16 +0000 2014", + "id": 450786940754087937, + "id_str": "450786940754087937", + "text": "“Corporations should never take a political stance”\n\n——————————\n\n“All that is necessary for the triumph of evil is that good men do nothing”", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 19, + "favorite_count": 21, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 31 22:33:03 +0000 2014", + "id": 450762725791387649, + "id_str": "450762725791387649", + "text": "@Talen_Lee @m1sp D: nooo", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 450754762841935873, + "in_reply_to_status_id_str": "450754762841935873", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "it" + }, + { + "created_at": "Mon Mar 31 22:31:57 +0000 2014", + "id": 450762451693608960, + "id_str": "450762451693608960", + "text": "@WhiteMageSlave no. Orange, I think.", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 450753357943414784, + "in_reply_to_status_id_str": "450753357943414784", + "in_reply_to_user_id": 90791634, + "in_reply_to_user_id_str": "90791634", + "in_reply_to_screen_name": "WhiteMageSlave", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 31 21:33:53 +0000 2014", + "id": 450747835932508160, + "id_str": "450747835932508160", + "text": "@WhiteMageSlave a gimmick to get people to install it and use it instead of Apple Maps, I reckon", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 450747730730971136, + "in_reply_to_status_id_str": "450747730730971136", + "in_reply_to_user_id": 90791634, + "in_reply_to_user_id_str": "90791634", + "in_reply_to_screen_name": "WhiteMageSlave", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 31 20:17:25 +0000 2014", + "id": 450728593161990144, + "id_str": "450728593161990144", + "text": "@hinanawi_chan @m1sp I would be quite happy to have my handle splattered across ten million SSDs >:D", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 450728343550169088, + "in_reply_to_status_id_str": "450728343550169088", + "in_reply_to_user_id": 2336014178, + "in_reply_to_user_id_str": "2336014178", + "in_reply_to_screen_name": "hinanawi_chan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 31 20:06:55 +0000 2014", + "id": 450725951039881217, + "id_str": "450725951039881217", + "text": "... Granted, it's a game that's apparently about mass-murdering the character who most resembles *me*. @m1sp", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 31 20:02:20 +0000 2014", + "id": 450724797883097088, + "id_str": "450724797883097088", + "text": "Best friend forever until the end of the world @m1sp made me a fan game for my birthday :'D https://t.co/XUwqsnyV3D with my own NES sprites.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 4, + "favorite_count": 9, + "favorited": false, + "retweeted": true, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 31 19:59:19 +0000 2014", + "id": 450724038978322433, + "id_str": "450724038978322433", + "text": "@geekable I've seen the pattern of closet teen -> get the hell out -> open several times in people I personally know", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 450722419838156800, + "in_reply_to_status_id_str": "450722419838156800", + "in_reply_to_user_id": 755035, + "in_reply_to_user_id_str": "755035", + "in_reply_to_screen_name": "geekable", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 31 19:58:39 +0000 2014", + "id": 450723870392459264, + "id_str": "450723870392459264", + "text": "@geekable I'm not in any closets. I'm just thinking of people (esp. teens) who have legitimate concern they will be Literally Murdered", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 450722419838156800, + "in_reply_to_status_id_str": "450722419838156800", + "in_reply_to_user_id": 755035, + "in_reply_to_user_id_str": "755035", + "in_reply_to_screen_name": "geekable", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 31 19:51:34 +0000 2014", + "id": 450722089306435584, + "id_str": "450722089306435584", + "text": "@geekable I know people on every side who are on every side of this question. It’s a legitimate debate with no easy answer IMO.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 450721218270732288, + "in_reply_to_status_id_str": "450721218270732288", + "in_reply_to_user_id": 755035, + "in_reply_to_user_id_str": "755035", + "in_reply_to_screen_name": "geekable", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 31 19:42:53 +0000 2014", + "id": 450719904568975361, + "id_str": "450719904568975361", + "text": "@needshortername I just meant that they’re in every facet of my social existence", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 450719111019266048, + "in_reply_to_status_id_str": "450719111019266048", + "in_reply_to_user_id": 26157562, + "in_reply_to_user_id_str": "26157562", + "in_reply_to_screen_name": "needshortername", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 31 19:40:26 +0000 2014", + "id": 450719286957735936, + "id_str": "450719286957735936", + "text": "Many of them are not “out” in day-to-day life because of backlash from parents, work, and school, or because of marriage laws, or… :(", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 31 19:37:25 +0000 2014", + "id": 450718525435695104, + "id_str": "450718525435695104", + "text": "Transgender Visibility Day: my friends, my family, my enemies, there are lots and LOTS of transgender people in my life.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 6, + "favorite_count": 10, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 31 19:34:38 +0000 2014", + "id": 450717827889381376, + "id_str": "450717827889381376", + "text": "@WhiteMageSlave install google maps on your ipad and use the search bar, there should be a \"start\" button", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 450717450196504576, + "in_reply_to_status_id_str": "450717450196504576", + "in_reply_to_user_id": 90791634, + "in_reply_to_user_id_str": "90791634", + "in_reply_to_screen_name": "WhiteMageSlave", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 31 19:28:51 +0000 2014", + "id": 450716370112888832, + "id_str": "450716370112888832", + "text": "@Packetknife … feet?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 450712249821585408, + "in_reply_to_status_id_str": "450712249821585408", + "in_reply_to_user_id": 19564254, + "in_reply_to_user_id_str": "19564254", + "in_reply_to_screen_name": "Packetknife", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "ht" + }, + { + "created_at": "Mon Mar 31 19:18:45 +0000 2014", + "id": 450713829505503233, + "id_str": "450713829505503233", + "text": "@admung well, it looked like that, but I'm pretty sure it was just in that general style and not literally Dragon Quest", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 450713650869706753, + "in_reply_to_status_id_str": "450713650869706753", + "in_reply_to_user_id": 701874878, + "in_reply_to_user_id_str": "701874878", + "in_reply_to_screen_name": "admung", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 31 19:17:20 +0000 2014", + "id": 450713474826780673, + "id_str": "450713474826780673", + "text": "@admung there was a joke about loading it on a famicom with a cartridge, but that's it", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 450712992628228096, + "in_reply_to_status_id_str": "450712992628228096", + "in_reply_to_user_id": 701874878, + "in_reply_to_user_id_str": "701874878", + "in_reply_to_screen_name": "admung", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 31 19:16:59 +0000 2014", + "id": 450713384003330048, + "id_str": "450713384003330048", + "text": "@admung it wasn't promoting any particular game or other salable object, it was just in generic 8-bit style", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 450712992628228096, + "in_reply_to_status_id_str": "450712992628228096", + "in_reply_to_user_id": 701874878, + "in_reply_to_user_id_str": "701874878", + "in_reply_to_screen_name": "admung", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 31 19:01:34 +0000 2014", + "id": 450709504205004800, + "id_str": "450709504205004800", + "text": "@WhiteMageSlave blah blah blah sister in law getting married this weekend", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 450709263439372288, + "in_reply_to_status_id_str": "450709263439372288", + "in_reply_to_user_id": 90791634, + "in_reply_to_user_id_str": "90791634", + "in_reply_to_screen_name": "WhiteMageSlave", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 31 18:58:55 +0000 2014", + "id": 450708838782492672, + "id_str": "450708838782492672", + "text": "@WhiteMageSlave thank you and that's okay! I'm gonna be in Virginia in a few days actually though a meetup may not be in the cards", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 450708719639465984, + "in_reply_to_status_id_str": "450708719639465984", + "in_reply_to_user_id": 90791634, + "in_reply_to_user_id_str": "90791634", + "in_reply_to_screen_name": "WhiteMageSlave", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 31 18:56:26 +0000 2014", + "id": 450708213563142146, + "id_str": "450708213563142146", + "text": "While pokemon is pretty innocent, using April Fool's for essentially a giant brand promotion does taste a little sour, Google", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 31 18:44:40 +0000 2014", + "id": 450705250379653120, + "id_str": "450705250379653120", + "text": "Dad\n\nStop trying to use Japanese-style emotes\n\nDad you aren't cool en-- Dad!!", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 10, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 31 18:21:35 +0000 2014", + "id": 450699443143462913, + "id_str": "450699443143462913", + "text": "@frkbmb actually they were pretty big on grim humor based on the medieval book art I've seen", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 450698969216081922, + "in_reply_to_status_id_str": "450698969216081922", + "in_reply_to_user_id": 540721095, + "in_reply_to_user_id_str": "540721095", + "in_reply_to_screen_name": "frkbmb", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 31 18:18:28 +0000 2014", + "id": 450698660591190016, + "id_str": "450698660591190016", + "text": "@frkbmb yes but I can’t think of it…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 450698542344970240, + "in_reply_to_status_id_str": "450698542344970240", + "in_reply_to_user_id": 540721095, + "in_reply_to_user_id_str": "540721095", + "in_reply_to_screen_name": "frkbmb", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 31 18:18:01 +0000 2014", + "id": 450698546971676672, + "id_str": "450698546971676672", + "text": "@djrbliss @nickdepetrillo no offense to NickDe. <3", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 450697757204828160, + "in_reply_to_status_id_str": "450697757204828160", + "in_reply_to_user_id": 115962165, + "in_reply_to_user_id_str": "115962165", + "in_reply_to_screen_name": "djrbliss", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "pl" + }, + { + "created_at": "Mon Mar 31 18:16:19 +0000 2014", + "id": 450698117487550464, + "id_str": "450698117487550464", + "text": "@djrbliss @nickdepetrillo I’m not saying you’re handsome, Bliss, I’m saying Nick isn’t.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 450697757204828160, + "in_reply_to_status_id_str": "450697757204828160", + "in_reply_to_user_id": 115962165, + "in_reply_to_user_id_str": "115962165", + "in_reply_to_screen_name": "djrbliss", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 31 18:14:50 +0000 2014", + "id": 450697744865566721, + "id_str": "450697744865566721", + "text": "RT @mattblaze: Rule #1 of starting a company: don't name it after yourself. It might get sold to weasels. #RSA", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Mon Mar 31 18:14:02 +0000 2014", + "id": 450697544591753216, + "id_str": "450697544591753216", + "text": "Rule #1 of starting a company: don't name it after yourself. It might get sold to weasels. #RSA", + "source": "TweetDeck", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 26567591, + "id_str": "26567591" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 29, + "favorite_count": 19, + "entities": { + "hashtags": [ + { + "text": "RSA", + "indices": [ + 91, + 95 + ] + } + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 29, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 31 18:11:49 +0000 2014", + "id": 450696986929688576, + "id_str": "450696986929688576", + "text": "RT @jeresig: I frequently get accused of “hacking” web sites because someone views source and sees my name on jQuery. http://t.co/sUIdAwmFzI", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Mon Mar 31 17:42:30 +0000 2014", + "id": 450689605546020864, + "id_str": "450689605546020864", + "text": "I frequently get accused of “hacking” web sites because someone views source and sees my name on jQuery. http://t.co/sUIdAwmFzI", + "source": "Tweetbot for Mac", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 752673, + "id_str": "752673" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1738, + "favorite_count": 1111, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ], + "media": [ + { + "id": 450689605378244608, + "id_str": "450689605378244608", + "indices": [ + 105, + 127 + ], + "media_url": "http://pbs.twimg.com/media/BkErzuiIAAARgbI.png", + "media_url_https": "https://pbs.twimg.com/media/BkErzuiIAAARgbI.png", + "url": "http://t.co/sUIdAwmFzI", + "display_url": "pic.twitter.com/sUIdAwmFzI", + "expanded_url": "http://twitter.com/jeresig/status/450689605546020864/photo/1", + "type": "photo", + "sizes": { + "small": { + "w": 340, + "h": 121, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 440, + "h": 157, + "resize": "fit" + }, + "large": { + "w": 440, + "h": 157, + "resize": "fit" + } + } + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 1738, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 31 18:09:58 +0000 2014", + "id": 450696520242069504, + "id_str": "450696520242069504", + "text": "@nickdepetrillo @djrbliss you’re really giving yourself too much credit there.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 450688082191196160, + "in_reply_to_status_id_str": "450688082191196160", + "in_reply_to_user_id": 40222002, + "in_reply_to_user_id_str": "40222002", + "in_reply_to_screen_name": "nickdepetrillo", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 31 18:09:09 +0000 2014", + "id": 450696314461110272, + "id_str": "450696314461110272", + "text": "@apiary @focalintent we’ll even let you out once a day for lunch if you’re good.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 450691640257421312, + "in_reply_to_status_id_str": "450691640257421312", + "in_reply_to_user_id": 17897532, + "in_reply_to_user_id_str": "17897532", + "in_reply_to_screen_name": "apiary", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 31 18:07:19 +0000 2014", + "id": 450695852475318272, + "id_str": "450695852475318272", + "text": "RT @mattblaze: But RSA *trusted* NSA. You know what they say: \"Fool me once shame on you. Fool me twice, pay me $10 Million.\"", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Mon Mar 31 17:01:30 +0000 2014", + "id": 450679288170553345, + "id_str": "450679288170553345", + "text": "But RSA *trusted* NSA. You know what they say: \"Fool me once shame on you. Fool me twice, pay me $10 Million.\"", + "source": "TweetDeck", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 26567591, + "id_str": "26567591" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 76, + "favorite_count": 41, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 76, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 31 18:05:13 +0000 2014", + "id": 450695324416630784, + "id_str": "450695324416630784", + "text": "RT @mattyglesias: Fox News is throwing a y-axis party: http://t.co/rzXqeMpTEY http://t.co/9m9GUQfg4R", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Mon Mar 31 16:28:47 +0000 2014", + "id": 450671057968857088, + "id_str": "450671057968857088", + "text": "Fox News is throwing a y-axis party: http://t.co/rzXqeMpTEY http://t.co/9m9GUQfg4R", + "source": "Tweetbot for Mac", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 15446531, + "id_str": "15446531" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 889, + "favorite_count": 570, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/9m9GUQfg4R", + "expanded_url": "http://mediamatters.org/blog/2014/03/31/dishonest-fox-charts-obamacare-enrollment-editi/198679", + "display_url": "mediamatters.org/blog/2014/03/3…", + "indices": [ + 60, + 82 + ] + } + ], + "user_mentions": [ + + ], + "media": [ + { + "id": 450668343729455104, + "id_str": "450668343729455104", + "indices": [ + 37, + 59 + ], + "media_url": "http://pbs.twimg.com/media/BkEYeIuCAAAyfJf.jpg", + "media_url_https": "https://pbs.twimg.com/media/BkEYeIuCAAAyfJf.jpg", + "url": "http://t.co/rzXqeMpTEY", + "display_url": "pic.twitter.com/rzXqeMpTEY", + "expanded_url": "http://twitter.com/sarahkliff/status/450668343909830656/photo/1", + "type": "photo", + "sizes": { + "medium": { + "w": 600, + "h": 356, + "resize": "fit" + }, + "large": { + "w": 645, + "h": 383, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 202, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + } + }, + "source_status_id": 450668343909830656, + "source_status_id_str": "450668343909830656" + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 889, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 31 18:03:09 +0000 2014", + "id": 450694803614097409, + "id_str": "450694803614097409", + "text": "@radiofreekruzr @DrPizza in other words there are people who believe the OT stories mandate that races maintain cultural separation", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 450694147847233536, + "in_reply_to_status_id_str": "450694147847233536", + "in_reply_to_user_id": 5424492, + "in_reply_to_user_id_str": "5424492", + "in_reply_to_screen_name": "radiofreekruzr", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 31 18:01:18 +0000 2014", + "id": 450694340743290880, + "id_str": "450694340743290880", + "text": "@radiofreekruzr @DrPizza they try, usually with recourse to Cain, to Noah’s sons, and the Tower of Babel", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 450694147847233536, + "in_reply_to_status_id_str": "450694147847233536", + "in_reply_to_user_id": 5424492, + "in_reply_to_user_id_str": "5424492", + "in_reply_to_screen_name": "radiofreekruzr", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 31 17:59:56 +0000 2014", + "id": 450693994461552640, + "id_str": "450693994461552640", + "text": "@radiofreekruzr @DrPizza there was a *black* church near my house who expelled a black-Native American couple because it wasn’t “right”.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 450693457074720768, + "in_reply_to_status_id_str": "450693457074720768", + "in_reply_to_user_id": 5424492, + "in_reply_to_user_id_str": "5424492", + "in_reply_to_screen_name": "radiofreekruzr", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 31 17:58:41 +0000 2014", + "id": 450693681075720192, + "id_str": "450693681075720192", + "text": "@radiofreekruzr @DrPizza for context I have lived about half my life in the rural American south and attended religious schools therein.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 450693457074720768, + "in_reply_to_status_id_str": "450693457074720768", + "in_reply_to_user_id": 5424492, + "in_reply_to_user_id_str": "5424492", + "in_reply_to_screen_name": "radiofreekruzr", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 31 17:56:17 +0000 2014", + "id": 450693075493728257, + "id_str": "450693075493728257", + "text": "@radiofreekruzr @DrPizza do we know the same Christianity? Opposition to mixed-race was/is absolutely “justified” with recourse to religion", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 450665445784551424, + "in_reply_to_status_id_str": "450665445784551424", + "in_reply_to_user_id": 5424492, + "in_reply_to_user_id_str": "5424492", + "in_reply_to_screen_name": "radiofreekruzr", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 31 17:45:46 +0000 2014", + "id": 450690428791447552, + "id_str": "450690428791447552", + "text": ".@spacerog I'm not willing to trust this, itself, isn't the April Fool's on engadget's part", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 450689917312831488, + "in_reply_to_status_id_str": "450689917312831488", + "in_reply_to_user_id": 14133061, + "in_reply_to_user_id_str": "14133061", + "in_reply_to_screen_name": "spacerog", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 31 17:45:24 +0000 2014", + "id": 450690336915210242, + "id_str": "450690336915210242", + "text": "RT @spacerog: Something tells me that @0xabad1dea won't be getting much work done today :) http://t.co/ZdnPwHE7H6", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Mon Mar 31 17:43:44 +0000 2014", + "id": 450689917312831488, + "id_str": "450689917312831488", + "text": "Something tells me that @0xabad1dea won't be getting much work done today :) http://t.co/ZdnPwHE7H6", + "source": "YoruFukurou", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 14133061, + "id_str": "14133061" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 5, + "favorite_count": 1, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/ZdnPwHE7H6", + "expanded_url": "http://is.gd/eLZQhn", + "display_url": "is.gd/eLZQhn", + "indices": [ + 77, + 99 + ] + } + ], + "user_mentions": [ + { + "screen_name": "0xabad1dea", + "name": "MeliSSL", + "id": 126030998, + "id_str": "126030998", + "indices": [ + 24, + 35 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 5, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 31 16:30:44 +0000 2014", + "id": 450671548765331456, + "id_str": "450671548765331456", + "text": "@LoserN00b you have a twitter?!", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 450670672776544256, + "in_reply_to_status_id_str": "450670672776544256", + "in_reply_to_user_id": 138529687, + "in_reply_to_user_id_str": "138529687", + "in_reply_to_screen_name": "LoserN00b", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 31 16:07:04 +0000 2014", + "id": 450665592815898625, + "id_str": "450665592815898625", + "text": "@Myriachan (thank gods)", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 450665321829892096, + "in_reply_to_status_id_str": "450665321829892096", + "in_reply_to_user_id": 1556497868, + "in_reply_to_user_id_str": "1556497868", + "in_reply_to_screen_name": "Myriachan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 31 16:07:04 +0000 2014", + "id": 450665592815898625, + "id_str": "450665592815898625", + "text": "@Myriachan (thank gods)", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 450665321829892096, + "in_reply_to_status_id_str": "450665321829892096", + "in_reply_to_user_id": 1556497868, + "in_reply_to_user_id_str": "1556497868", + "in_reply_to_screen_name": "Myriachan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 31 16:06:56 +0000 2014", + "id": 450665559345340416, + "id_str": "450665559345340416", + "text": "@Myriachan Dual EC is not the default in anything shipped by MS", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 450665321829892096, + "in_reply_to_status_id_str": "450665321829892096", + "in_reply_to_user_id": 1556497868, + "in_reply_to_user_id_str": "1556497868", + "in_reply_to_screen_name": "Myriachan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 31 15:50:38 +0000 2014", + "id": 450661457345413120, + "id_str": "450661457345413120", + "text": "So SChannel is 12% of the HTTPS internet and we have no way of knowing how many of those enabled Dual EC; hopefully, like, three", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 31 15:47:36 +0000 2014", + "id": 450660692807667712, + "id_str": "450660692807667712", + "text": "@rmd1023 :(", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 450660268855808001, + "in_reply_to_status_id_str": "450660268855808001", + "in_reply_to_user_id": 14821220, + "in_reply_to_user_id_str": "14821220", + "in_reply_to_screen_name": "rmd1023", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Mon Mar 31 15:41:54 +0000 2014", + "id": 450659256153673728, + "id_str": "450659256153673728", + "text": "@munin @zigg … at which point you’re probably not using Dropbox anyway", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 450659075760852992, + "in_reply_to_status_id_str": "450659075760852992", + "in_reply_to_user_id": 8513352, + "in_reply_to_user_id_str": "8513352", + "in_reply_to_screen_name": "munin", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 31 15:38:19 +0000 2014", + "id": 450658355510779904, + "id_str": "450658355510779904", + "text": "@munin @Gizmodo encrypting and sharing are pretty much by definition not compatible.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 450657987104079874, + "in_reply_to_status_id_str": "450657987104079874", + "in_reply_to_user_id": 8513352, + "in_reply_to_user_id_str": "8513352", + "in_reply_to_screen_name": "munin", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 31 15:37:48 +0000 2014", + "id": 450658225088905217, + "id_str": "450658225088905217", + "text": "@JZdziarski no, I mean you can change the hash that way easily with GUI tools", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 450657972361105408, + "in_reply_to_status_id_str": "450657972361105408", + "in_reply_to_user_id": 1267770224, + "in_reply_to_user_id_str": "1267770224", + "in_reply_to_screen_name": "JZdziarski", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 31 15:35:57 +0000 2014", + "id": 450657759948980224, + "id_str": "450657759948980224", + "text": "@JZdziarski most media formats have embedded ASCII metadata you can append a character to without hurting searchability", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 450656705991675904, + "in_reply_to_status_id_str": "450656705991675904", + "in_reply_to_user_id": 1267770224, + "in_reply_to_user_id_str": "1267770224", + "in_reply_to_screen_name": "JZdziarski", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 31 15:34:06 +0000 2014", + "id": 450657295400460288, + "id_str": "450657295400460288", + "text": "RT @Gizmodo: How Dropbox knows when you're sharing copyrighted files http://t.co/fGbsFLoMWX http://t.co/HOoABFRngX", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Mon Mar 31 13:05:04 +0000 2014", + "id": 450619789556588545, + "id_str": "450619789556588545", + "text": "How Dropbox knows when you're sharing copyrighted files http://t.co/fGbsFLoMWX http://t.co/HOoABFRngX", + "source": "SocialFlow", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2890961, + "id_str": "2890961" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 460, + "favorite_count": 270, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/fGbsFLoMWX", + "expanded_url": "http://gizmo.do/xRPPiCs", + "display_url": "gizmo.do/xRPPiCs", + "indices": [ + 56, + 78 + ] + } + ], + "user_mentions": [ + + ], + "media": [ + { + "id": 450619789447544832, + "id_str": "450619789447544832", + "indices": [ + 79, + 101 + ], + "media_url": "http://pbs.twimg.com/media/BkDsT57IQAASIjW.jpg", + "media_url_https": "https://pbs.twimg.com/media/BkDsT57IQAASIjW.jpg", + "url": "http://t.co/HOoABFRngX", + "display_url": "pic.twitter.com/HOoABFRngX", + "expanded_url": "http://twitter.com/Gizmodo/status/450619789556588545/photo/1", + "type": "photo", + "sizes": { + "medium": { + "w": 600, + "h": 272, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 154, + "resize": "fit" + }, + "large": { + "w": 636, + "h": 288, + "resize": "fit" + } + } + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 460, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 31 15:32:43 +0000 2014", + "id": 450656948535705600, + "id_str": "450656948535705600", + "text": "@demize95 good job, but I’m a bit concerned at how low a passing score goes!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 450656307868336128, + "in_reply_to_status_id_str": "450656307868336128", + "in_reply_to_user_id": 137133048, + "in_reply_to_user_id_str": "137133048", + "in_reply_to_screen_name": "demize95", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 31 15:31:44 +0000 2014", + "id": 450656697649201152, + "id_str": "450656697649201152", + "text": "@psychopathrik nah, I posted right at midnight for maximum gloryhogging timeframage :p", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 450656429565693952, + "in_reply_to_status_id_str": "450656429565693952", + "in_reply_to_user_id": 2240854807, + "in_reply_to_user_id_str": "2240854807", + "in_reply_to_screen_name": "psychopathrik", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 31 15:31:15 +0000 2014", + "id": 450656575347503104, + "id_str": "450656575347503104", + "text": ".@Kaptain_Kaos @needshortername @FredericJacobs As someone named Μέλισσα I really don't want to be \"protected\" by Bee-safe", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 450655967349207042, + "in_reply_to_status_id_str": "450655967349207042", + "in_reply_to_user_id": 325044007, + "in_reply_to_user_id_str": "325044007", + "in_reply_to_screen_name": "Kaptain_Kaos", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 31 15:28:16 +0000 2014", + "id": 450655826240630785, + "id_str": "450655826240630785", + "text": ".@JZdziarski seems to be working…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 450655706191253504, + "in_reply_to_status_id_str": "450655706191253504", + "in_reply_to_user_id": 1267770224, + "in_reply_to_user_id_str": "1267770224", + "in_reply_to_screen_name": "JZdziarski", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 31 15:27:27 +0000 2014", + "id": 450655621013340160, + "id_str": "450655621013340160", + "text": "What a bizarre spam: it says only “early closure due to expected snow” from “Texas business chamber”", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 31 15:25:50 +0000 2014", + "id": 450655214740439040, + "id_str": "450655214740439040", + "text": "@needshortername @FredericJacobs $40,000. They were definitely renting, probably from Amazon.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 450654873844203520, + "in_reply_to_status_id_str": "450654873844203520", + "in_reply_to_user_id": 26157562, + "in_reply_to_user_id_str": "26157562", + "in_reply_to_screen_name": "needshortername", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 31 15:21:38 +0000 2014", + "id": 450654157557743617, + "id_str": "450654157557743617", + "text": "RT @SteveBellovin: Technical details of the new attack on Dual EC are at http://t.co/L8a5MzvRcV", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Mon Mar 31 14:37:01 +0000 2014", + "id": 450642929464664064, + "id_str": "450642929464664064", + "text": "Technical details of the new attack on Dual EC are at http://t.co/L8a5MzvRcV", + "source": "TweetDeck", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 282814612, + "id_str": "282814612" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 55, + "favorite_count": 28, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/L8a5MzvRcV", + "expanded_url": "http://dualec.org/", + "display_url": "dualec.org", + "indices": [ + 54, + 76 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 55, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 31 15:07:11 +0000 2014", + "id": 450650519313600512, + "id_str": "450650519313600512", + "text": "I was told it’d be worth the wait, @matthew_d_green … sounds like it was http://t.co/Vo1f0wB690", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 4, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 31 15:05:58 +0000 2014", + "id": 450650212747706368, + "id_str": "450650212747706368", + "text": "RT @FredericJacobs: Thank you NSA.\n\n\"The researchers said it took them less than 3 seconds to crack a free version of BSafe\" #RSA\n\nhttp://t…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Mon Mar 31 13:32:47 +0000 2014", + "id": 450626763295449089, + "id_str": "450626763295449089", + "text": "Thank you NSA.\n\n\"The researchers said it took them less than 3 seconds to crack a free version of BSafe\" #RSA\n\nhttp://t.co/jC6SqXrCo9", + "source": "Twitter for Mac", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 18018877, + "id_str": "18018877" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 201, + "favorite_count": 66, + "entities": { + "hashtags": [ + { + "text": "RSA", + "indices": [ + 105, + 109 + ] + } + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/jC6SqXrCo9", + "expanded_url": "http://www.reuters.com/article/2014/03/31/us-usa-security-nsa-rsa-idUSBREA2U0TY20140331", + "display_url": "reuters.com/article/2014/0…", + "indices": [ + 111, + 133 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 201, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 31 14:59:50 +0000 2014", + "id": 450648672112766976, + "id_str": "450648672112766976", + "text": "@m1sp honestly that’s more readable than the “real” math anyway", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 450618217182932992, + "in_reply_to_status_id_str": "450618217182932992", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 31 14:56:32 +0000 2014", + "id": 450647840545853440, + "id_str": "450647840545853440", + "text": "@d_m_elms aww, I don’t like doing that, because some people get offended if you swing high and some if you swing low :p", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 450647564774162432, + "in_reply_to_status_id_str": "450647564774162432", + "in_reply_to_user_id": 59346212, + "in_reply_to_user_id_str": "59346212", + "in_reply_to_screen_name": "d_m_elms", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 31 14:55:37 +0000 2014", + "id": 450647611796893696, + "id_str": "450647611796893696", + "text": "Someone actually called me on crowd-surfing the secure door. Then I just smiled and went in anyway cuz that’s what a cool hacker would do", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 4, + "favorite_count": 8, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 31 14:54:03 +0000 2014", + "id": 450647216852828160, + "id_str": "450647216852828160", + "text": "@d_m_elms I’m 0x1A! :)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 450640442862755840, + "in_reply_to_status_id_str": "450640442862755840", + "in_reply_to_user_id": 59346212, + "in_reply_to_user_id_str": "59346212", + "in_reply_to_screen_name": "d_m_elms", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 31 14:23:01 +0000 2014", + "id": 450639405121036288, + "id_str": "450639405121036288", + "text": "Decided that 0x1A is pronounced ay-teen years old, which, admittedly, sounds a little deceptive.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 6, + "favorite_count": 14, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 31 14:15:24 +0000 2014", + "id": 450637487401349120, + "id_str": "450637487401349120", + "text": "RT @kristamonster: So better laws, yes. Encrypt anyway, and make better encryption and privacy-enhancing/preserving technologies.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Mon Mar 31 09:46:00 +0000 2014", + "id": 450569693456523264, + "id_str": "450569693456523264", + "text": "So better laws, yes. Encrypt anyway, and make better encryption and privacy-enhancing/preserving technologies.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 13564312, + "id_str": "13564312" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 9, + "favorite_count": 2, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 9, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 31 14:14:52 +0000 2014", + "id": 450637353888280576, + "id_str": "450637353888280576", + "text": "In this RT: I have the vaguest recollection of blogging about how that misfeature initially didn’t even use SSL.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 31 14:13:57 +0000 2014", + "id": 450637124472410112, + "id_str": "450637124472410112", + "text": "RT @xor: Ubuntu is fixing a *major* privacy flaw: no more passing local searches to Amazon by default http://t.co/UTIPpiMK7S cc @micahflee", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Mon Mar 31 06:42:58 +0000 2014", + "id": 450523630816854016, + "id_str": "450523630816854016", + "text": "Ubuntu is fixing a *major* privacy flaw: no more passing local searches to Amazon by default http://t.co/UTIPpiMK7S cc @micahflee", + "source": "Twitter for Mac", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 24500377, + "id_str": "24500377" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 49, + "favorite_count": 21, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/UTIPpiMK7S", + "expanded_url": "http://www.omgubuntu.co.uk/2014/03/ubuntu-make-amazon-product-results-opt-unity", + "display_url": "omgubuntu.co.uk/2014/03/ubuntu…", + "indices": [ + 93, + 115 + ] + } + ], + "user_mentions": [ + { + "screen_name": "micahflee", + "name": "Micah Lee", + "id": 86424236, + "id_str": "86424236", + "indices": [ + 119, + 129 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 49, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 31 13:57:13 +0000 2014", + "id": 450632913718358016, + "id_str": "450632913718358016", + "text": "@Wikinaut I exist in the public sphere. The conceit that such information *isn’t* available is dangerous.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 450621794769436672, + "in_reply_to_status_id_str": "450621794769436672", + "in_reply_to_user_id": 557368188, + "in_reply_to_user_id_str": "557368188", + "in_reply_to_screen_name": "Wikinaut", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 31 05:09:58 +0000 2014", + "id": 450500225355227136, + "id_str": "450500225355227136", + "text": "@Packetknife @leighalytle I'll see what I can extract from my husband :p", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 450498783034753024, + "in_reply_to_status_id_str": "450498783034753024", + "in_reply_to_user_id": 19564254, + "in_reply_to_user_id_str": "19564254", + "in_reply_to_screen_name": "Packetknife", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 31 04:50:44 +0000 2014", + "id": 450495387435302912, + "id_str": "450495387435302912", + "text": "@m1sp they’re both smiling, that can’t be right http://t.co/WPcoYi5lJR", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 31 04:19:43 +0000 2014", + "id": 450487579008565249, + "id_str": "450487579008565249", + "text": "@nbwri well that's ominous", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 450487207199903745, + "in_reply_to_status_id_str": "450487207199903745", + "in_reply_to_user_id": 1695694506, + "in_reply_to_user_id_str": "1695694506", + "in_reply_to_screen_name": "nbwri", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 31 04:17:01 +0000 2014", + "id": 450486899640373249, + "id_str": "450486899640373249", + "text": "xoxo all. Let the record show Dear Husband swore to thoroughly clean the house as my birthday present", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 15, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 31 04:13:29 +0000 2014", + "id": 450486012155031552, + "id_str": "450486012155031552", + "text": "@Andronian also: adjust lighting so your pupils dilate; that's nowhere near max dilation though.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 450483921856122881, + "in_reply_to_status_id_str": "450483921856122881", + "in_reply_to_user_id": 18884545, + "in_reply_to_user_id_str": "18884545", + "in_reply_to_screen_name": "Andronian", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 31 04:12:46 +0000 2014", + "id": 450485833188249600, + "id_str": "450485833188249600", + "text": "@hinanawi_chan @zhuowei perfect!", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 450485090619883522, + "in_reply_to_status_id_str": "450485090619883522", + "in_reply_to_user_id": 2336014178, + "in_reply_to_user_id_str": "2336014178", + "in_reply_to_screen_name": "hinanawi_chan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "tl" + }, + { + "created_at": "Mon Mar 31 04:12:29 +0000 2014", + "id": 450485760144449536, + "id_str": "450485760144449536", + "text": "@DanielOCL I'm afeared you have an off-by-one error", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 450485197746999296, + "in_reply_to_status_id_str": "450485197746999296", + "in_reply_to_user_id": 66351565, + "in_reply_to_user_id_str": "66351565", + "in_reply_to_screen_name": "DanielOCL", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 31 04:04:05 +0000 2014", + "id": 450483647347699712, + "id_str": "450483647347699712", + "text": "sinful selfie confession: I take them from that angle to make my eyes look bigger", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 31 04:01:35 +0000 2014", + "id": 450483015047987200, + "id_str": "450483015047987200", + "text": "Midnight birthday selfie to commemorate being 0x1A http://t.co/Y7GOg13yAY", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 29, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 31 03:55:19 +0000 2014", + "id": 450481439411564544, + "id_str": "450481439411564544", + "text": "@demize95 @hinanawi_chan (I realize the darker one is more of a stylized red)", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 450480928570109954, + "in_reply_to_status_id_str": "450480928570109954", + "in_reply_to_user_id": 137133048, + "in_reply_to_user_id_str": "137133048", + "in_reply_to_screen_name": "demize95", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 31 03:54:53 +0000 2014", + "id": 450481332570054656, + "id_str": "450481332570054656", + "text": "@demize95 @hinanawi_chan ~ we all have pink hair you even have two pink hair ~", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 450480928570109954, + "in_reply_to_status_id_str": "450480928570109954", + "in_reply_to_user_id": 137133048, + "in_reply_to_user_id_str": "137133048", + "in_reply_to_screen_name": "demize95", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 31 03:52:22 +0000 2014", + "id": 450480699314032640, + "id_str": "450480699314032640", + "text": "@demize95 @hinanawi_chan (this is an implicit 🎂 greetz)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 450480512956526592, + "in_reply_to_status_id_str": "450480512956526592", + "in_reply_to_user_id": 137133048, + "in_reply_to_user_id_str": "137133048", + "in_reply_to_screen_name": "demize95", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 31 03:51:11 +0000 2014", + "id": 450480401275179008, + "id_str": "450480401275179008", + "text": "@hinanawi_chan @demize95 in which I realize I’m a callous monster", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 450475544472068096, + "in_reply_to_status_id_str": "450475544472068096", + "in_reply_to_user_id": 2336014178, + "in_reply_to_user_id_str": "2336014178", + "in_reply_to_screen_name": "hinanawi_chan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 31 03:47:48 +0000 2014", + "id": 450479548845797376, + "id_str": "450479548845797376", + "text": "@m1sp I don't think I showed you this before -- notes from 2007 http://t.co/E1oGU87SeD", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 31 03:35:10 +0000 2014", + "id": 450476369395580929, + "id_str": "450476369395580929", + "text": "@zhuowei @m1sp ahh! here was the truly ANCIENT one I was looking for. Post-Varodahn incident. http://t.co/LzwmF33QWV", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 450472395946868736, + "in_reply_to_status_id_str": "450472395946868736", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 31 03:28:53 +0000 2014", + "id": 450474786041638912, + "id_str": "450474786041638912", + "text": "@zhuowei @m1sp and here's the second!~ http://t.co/4eIMCkjnfp", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 450472395946868736, + "in_reply_to_status_id_str": "450472395946868736", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 31 03:25:34 +0000 2014", + "id": 450473953442926592, + "id_str": "450473953442926592", + "text": "@zhuowei @m1sp anyway here's the first pic I found of Izmirlian in my archives http://t.co/oyJ4I3fZTL", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 450472395946868736, + "in_reply_to_status_id_str": "450472395946868736", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 31 03:22:24 +0000 2014", + "id": 450473156567130112, + "id_str": "450473156567130112", + "text": "@demize95 \\o/", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 450473053755949056, + "in_reply_to_status_id_str": "450473053755949056", + "in_reply_to_user_id": 137133048, + "in_reply_to_user_id_str": "137133048", + "in_reply_to_screen_name": "demize95", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Mon Mar 31 03:19:53 +0000 2014", + "id": 450472521142661120, + "id_str": "450472521142661120", + "text": "@zhuowei @m1sp is that a no? :(", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 450472395946868736, + "in_reply_to_status_id_str": "450472395946868736", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 31 03:18:37 +0000 2014", + "id": 450472204351074304, + "id_str": "450472204351074304", + "text": "@zhuowei @m1sp if you want me to explicitly spoil what’s going on I totally will", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 450471976201904129, + "in_reply_to_status_id_str": "450471976201904129", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 31 03:18:05 +0000 2014", + "id": 450472071039307776, + "id_str": "450472071039307776", + "text": "@m1sp @zhuowei I guess there’s no reason it couldn’t be woman x woman but I don’t think they’d ever get a son as a result", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 450471883582869504, + "in_reply_to_status_id_str": "450471883582869504", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 31 03:16:38 +0000 2014", + "id": 450471704796864512, + "id_str": "450471704796864512", + "text": "@zhuowei @m1sp the father is an actual cisman I promise", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 450471422474076160, + "in_reply_to_status_id_str": "450471422474076160", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 31 03:16:23 +0000 2014", + "id": 450471642997981184, + "id_str": "450471642997981184", + "text": "@zhuowei @m1sp it’s not hand waving! It’s blood rites! As in literal blood, a domain of the goddess of iron", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 450471422474076160, + "in_reply_to_status_id_str": "450471422474076160", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 31 03:15:49 +0000 2014", + "id": 450471498919456768, + "id_str": "450471498919456768", + "text": "@m1sp @zhuowei no I’m not I swear! Katarosi x Ismyrn lesbians 4 ever", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 450471076934324225, + "in_reply_to_status_id_str": "450471076934324225", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 31 03:13:47 +0000 2014", + "id": 450470987675750400, + "id_str": "450470987675750400", + "text": "@zhuowei @m1sp hahahahaha no wait I can explain — !", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 450470877814353920, + "in_reply_to_status_id_str": "450470877814353920", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "tl" + }, + { + "created_at": "Mon Mar 31 03:12:25 +0000 2014", + "id": 450470642232860672, + "id_str": "450470642232860672", + "text": "@zhuowei @m1sp no, a boy named Izmirlian, which is what Katarosi decides the male/Tarimized form of Ismyrn is.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 450470130750095360, + "in_reply_to_status_id_str": "450470130750095360", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 31 03:09:32 +0000 2014", + "id": 450469919592046592, + "id_str": "450469919592046592", + "text": "@m1sp gods I love putting characters in horribly mean situations", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 450469468804628480, + "in_reply_to_status_id_str": "450469468804628480", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 31 03:06:55 +0000 2014", + "id": 450469257839927296, + "id_str": "450469257839927296", + "text": "@m1sp don't spoil for the cross-talk readers whether she does ;)", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 450469029589684224, + "in_reply_to_status_id_str": "450469029589684224", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 31 03:05:46 +0000 2014", + "id": 450468968441327617, + "id_str": "450468968441327617", + "text": "@m1sp -- \"at any time I could kill this little girl and become IMMORTAL.\"", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 450467658622722048, + "in_reply_to_status_id_str": "450467658622722048", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 31 03:04:54 +0000 2014", + "id": 450468754137559040, + "id_str": "450468754137559040", + "text": "@m1sp so, Katarosi ragequits to be with Ismyrn, Houri ends up as regent for Payl and left in the absolutely terrible position of --", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 450467658622722048, + "in_reply_to_status_id_str": "450467658622722048", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 31 03:01:18 +0000 2014", + "id": 450467845106065408, + "id_str": "450467845106065408", + "text": "@m1sp that will probably still happen but mostly because he's a !@#$ menace to anyone not named Nairi or Constans", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 450467658622722048, + "in_reply_to_status_id_str": "450467658622722048", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 31 02:59:17 +0000 2014", + "id": 450467340732624896, + "id_str": "450467340732624896", + "text": "@m1sp -solidifying the rules places his cousin, who has no blood relation to Katarosi or Houri, very unambiguously before him.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 450466752233607168, + "in_reply_to_status_id_str": "450466752233607168", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 31 02:58:54 +0000 2014", + "id": 450467243479302144, + "id_str": "450467243479302144", + "text": "@m1sp Izzie ain't no queen of birds. I realize I need to do a little retrospective editing where he is called a crown prince as-", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 450466752233607168, + "in_reply_to_status_id_str": "450466752233607168", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 31 02:55:24 +0000 2014", + "id": 450466363187138561, + "id_str": "450466363187138561", + "text": "@m1sp - her smoothing things over with her second marriage, but we're talking on a scale of days.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 450465674628849664, + "in_reply_to_status_id_str": "450465674628849664", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 31 02:55:05 +0000 2014", + "id": 450466279754039296, + "id_str": "450466279754039296", + "text": "@m1sp the next one after Hayr, when Katarosi completely ragequits. One could say there was a brief intermission between his apotheosis and-", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 450465674628849664, + "in_reply_to_status_id_str": "450465674628849664", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 31 02:52:09 +0000 2014", + "id": 450465543993438208, + "id_str": "450465543993438208", + "text": "@m1sp book 1: 836; book 2: 840; book 3: 841 (might start still in 840); book 4: 844.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 450464630754648064, + "in_reply_to_status_id_str": "450464630754648064", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "no" + }, + { + "created_at": "Mon Mar 31 02:49:07 +0000 2014", + "id": 450464781213122560, + "id_str": "450464781213122560", + "text": "@m1sp nah, that's year 840.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 450464630754648064, + "in_reply_to_status_id_str": "450464630754648064", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 31 02:46:20 +0000 2014", + "id": 450464079531216896, + "id_str": "450464079531216896", + "text": "@m1sp gonna tweak it so Rashk gives a specific timeframe for the fall of the dynasty — year 844 I think it is.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 450463701410144256, + "in_reply_to_status_id_str": "450463701410144256", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 31 02:43:43 +0000 2014", + "id": 450463421017112576, + "id_str": "450463421017112576", + "text": "@m1sp it’s mostly that I think I need to bundle more into the first volume what the long term gameplan is", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 450463218092085250, + "in_reply_to_status_id_str": "450463218092085250", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 31 02:42:33 +0000 2014", + "id": 450463127482949632, + "id_str": "450463127482949632", + "text": "@m1sp >:D", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 450462984590999553, + "in_reply_to_status_id_str": "450462984590999553", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "vi" + }, + { + "created_at": "Mon Mar 31 02:41:59 +0000 2014", + "id": 450462984587182080, + "id_str": "450462984587182080", + "text": "@m1sp I am sneaking in that new scene with Whiny Vahagn though, appended to chapter 17.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 450462726976847872, + "in_reply_to_status_id_str": "450462726976847872", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 31 02:06:27 +0000 2014", + "id": 450454044671500289, + "id_str": "450454044671500289", + "text": "@m1sp good news! I finished the six-month reread of my own book and *I don't hate it*", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 5, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 31 01:58:20 +0000 2014", + "id": 450452000791355393, + "id_str": "450452000791355393", + "text": "@RobertMLee @sergeybratus pentagon set to hire a lot of people who only have a vague idea what they’re doing", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 450426192366432256, + "in_reply_to_status_id_str": "450426192366432256", + "in_reply_to_user_id": 272760181, + "in_reply_to_user_id_str": "272760181", + "in_reply_to_screen_name": "RobertMLee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 31 01:50:34 +0000 2014", + "id": 450450045478137856, + "id_str": "450450045478137856", + "text": "@Talen_Lee this cannot possibly be true because it is the most obviously stupid plan in the history of the universe", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 450404252762902529, + "in_reply_to_status_id_str": "450404252762902529", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 31 01:25:03 +0000 2014", + "id": 450443622736224256, + "id_str": "450443622736224256", + "text": "@mralext20 @zhuowei no but I enjoy bitcoin drama.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 450443297941499904, + "in_reply_to_status_id_str": "450443297941499904", + "in_reply_to_user_id": 905041434, + "in_reply_to_user_id_str": "905041434", + "in_reply_to_screen_name": "mralext20", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 31 01:24:50 +0000 2014", + "id": 450443568239620097, + "id_str": "450443568239620097", + "text": "@zhuowei @mralext20 it must be a truly ancient comment then", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 450432481075159040, + "in_reply_to_status_id_str": "450432481075159040", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 30 23:15:12 +0000 2014", + "id": 450410947048656896, + "id_str": "450410947048656896", + "text": "@sakjur receiver only", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 450410693897236480, + "in_reply_to_status_id_str": "450410693897236480", + "in_reply_to_user_id": 63478005, + "in_reply_to_user_id_str": "63478005", + "in_reply_to_screen_name": "sakjur", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 30 23:12:09 +0000 2014", + "id": 450410177901363200, + "id_str": "450410177901363200", + "text": "@sakjur oh, wait, definitely got Albania.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 450409743195308032, + "in_reply_to_status_id_str": "450409743195308032", + "in_reply_to_user_id": 63478005, + "in_reply_to_user_id_str": "63478005", + "in_reply_to_screen_name": "sakjur", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 30 23:11:58 +0000 2014", + "id": 450410134284816384, + "id_str": "450410134284816384", + "text": "@sakjur not sure. There were some music stations I skipped over and didn't look up at the time. Will try again later...", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 450409743195308032, + "in_reply_to_status_id_str": "450409743195308032", + "in_reply_to_user_id": 63478005, + "in_reply_to_user_id_str": "63478005", + "in_reply_to_screen_name": "sakjur", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 30 23:10:01 +0000 2014", + "id": 450409640917213184, + "id_str": "450409640917213184", + "text": "@sakjur I think the distance might be juuust over nine thousand miles :) #botbaiting", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 450408915902402560, + "in_reply_to_status_id_str": "450408915902402560", + "in_reply_to_user_id": 63478005, + "in_reply_to_user_id_str": "63478005", + "in_reply_to_screen_name": "sakjur", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 30 23:09:36 +0000 2014", + "id": 450409536655196160, + "id_str": "450409536655196160", + "text": "@sakjur I wasn't even trying to tune into New Zealand, but I heard very faintly some music, and sought it out, and realized what I had found", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 450408915902402560, + "in_reply_to_status_id_str": "450408915902402560", + "in_reply_to_user_id": 63478005, + "in_reply_to_user_id_str": "63478005", + "in_reply_to_screen_name": "sakjur", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 30 23:08:16 +0000 2014", + "id": 450409201018605568, + "id_str": "450409201018605568", + "text": "@sakjur Does that stand for Stockholm? No idea. I've been trying to pick up various things in Russia to no success so far.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 450408915902402560, + "in_reply_to_status_id_str": "450408915902402560", + "in_reply_to_user_id": 63478005, + "in_reply_to_user_id_str": "63478005", + "in_reply_to_screen_name": "sakjur", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 30 23:07:34 +0000 2014", + "id": 450409023737987072, + "id_str": "450409023737987072", + "text": "@JohnMilkspill I imagine it's still the most reliable way to map out what your broadcast station's reception actually is on the cheap", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 450408628126621696, + "in_reply_to_status_id_str": "450408628126621696", + "in_reply_to_user_id": 501297578, + "in_reply_to_user_id_str": "501297578", + "in_reply_to_screen_name": "JohnMilkspill", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 30 22:59:43 +0000 2014", + "id": 450407048036249600, + "id_str": "450407048036249600", + "text": "@DaveFriesen I'm a newbie to terminology. I mean they sent me an HTML \"card\" by email.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 450406705445089280, + "in_reply_to_status_id_str": "450406705445089280", + "in_reply_to_user_id": 820678, + "in_reply_to_user_id_str": "820678", + "in_reply_to_screen_name": "DaveFriesen", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 30 22:54:56 +0000 2014", + "id": 450405845537685504, + "id_str": "450405845537685504", + "text": "The best part was I was trying to see if I could pick up something from Russia and ended up getting New Zealand instead. So good at this ;)", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 5, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 30 22:53:21 +0000 2014", + "id": 450405447238172672, + "id_str": "450405447238172672", + "text": "Awesome. I just got baby's first QSL card from Radio New Zealand, even if it's just digital. Fear the power of my pile of loose wires!!!", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 12, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 30 21:51:58 +0000 2014", + "id": 450390000996478976, + "id_str": "450390000996478976", + "text": "(both end in shrugging and checking Twitter until you remember)", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 30 21:51:28 +0000 2014", + "id": 450389874487857152, + "id_str": "450389874487857152", + "text": "Walking into a room and forgetting what you were looking for. Unlocking the other laptop and forgetting what you were looking for.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 4, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 30 21:49:54 +0000 2014", + "id": 450389480357502978, + "id_str": "450389480357502978", + "text": "@averagesecguy looks like they substantially paraphrased to fit the format they had in mind but close enough", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 450381281080000512, + "in_reply_to_status_id_str": "450381281080000512", + "in_reply_to_user_id": 244128388, + "in_reply_to_user_id_str": "244128388", + "in_reply_to_screen_name": "averagesecguy", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 30 21:46:50 +0000 2014", + "id": 450388706030260224, + "id_str": "450388706030260224", + "text": "@averagesecguy whoa they actually printed that?! Guess I'll have to buy a copy! They asked for something a few months ago.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 450381281080000512, + "in_reply_to_status_id_str": "450381281080000512", + "in_reply_to_user_id": 244128388, + "in_reply_to_user_id_str": "244128388", + "in_reply_to_screen_name": "averagesecguy", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 30 20:02:01 +0000 2014", + "id": 450362331680481280, + "id_str": "450362331680481280", + "text": "@geekable I assume HAPPY and BIRTHDAY are macros (I'll let you off easy on the smart quote)", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 450361998190997504, + "in_reply_to_status_id_str": "450361998190997504", + "in_reply_to_user_id": 755035, + "in_reply_to_user_id_str": "755035", + "in_reply_to_screen_name": "geekable", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 30 19:55:26 +0000 2014", + "id": 450360671679811589, + "id_str": "450360671679811589", + "text": "The ice cream shop lady was surprised I didn't want my name written on my cake. I just had no inclination to explain how to spell 0xabad1dea", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 8, + "favorite_count": 16, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 30 19:18:15 +0000 2014", + "id": 450351315450068992, + "id_str": "450351315450068992", + "text": "Wearing headphones with no music in them to ward off strangers #JustSocialAnxietyThings", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 13, + "favorite_count": 27, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 30 16:44:13 +0000 2014", + "id": 450312551817945089, + "id_str": "450312551817945089", + "text": "@hinanawi_chan let’s imitate our own native interface with CSS. No one will ever notice.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 450310433413816321, + "in_reply_to_status_id_str": "450310433413816321", + "in_reply_to_user_id": 2336014178, + "in_reply_to_user_id_str": "2336014178", + "in_reply_to_screen_name": "hinanawi_chan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 30 15:43:54 +0000 2014", + "id": 450297373416493056, + "id_str": "450297373416493056", + "text": "I keep tabs on excerpts from @TweetsofOld for use in demonstrating the cherry picking fallacy of Kids These Days. https://t.co/ej19jQTQXC", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 5, + "favorite_count": 3, + "favorited": false, + "retweeted": true, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 30 15:38:56 +0000 2014", + "id": 450296124105326592, + "id_str": "450296124105326592", + "text": "@m1sp *pulls New DM lever*", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 450295727512514561, + "in_reply_to_status_id_str": "450295727512514561", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 30 14:37:24 +0000 2014", + "id": 450280639456362497, + "id_str": "450280639456362497", + "text": "RT @FredericJacobs: You won't block the Onion by blocking the website! Tor usage in #Turkey keeps growing. http://t.co/3GeIkOCJYe", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sun Mar 30 13:49:25 +0000 2014", + "id": 450268561924042752, + "id_str": "450268561924042752", + "text": "You won't block the Onion by blocking the website! Tor usage in #Turkey keeps growing. http://t.co/3GeIkOCJYe", + "source": "Twitter for Mac", + "truncated": false, + "in_reply_to_status_id": 449876233732382720, + "in_reply_to_status_id_str": "449876233732382720", + "in_reply_to_user_id": 18018877, + "in_reply_to_user_id_str": "18018877", + "in_reply_to_screen_name": "FredericJacobs", + "user": { + "id": 18018877, + "id_str": "18018877" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 83, + "favorite_count": 32, + "entities": { + "hashtags": [ + { + "text": "Turkey", + "indices": [ + 64, + 71 + ] + } + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ], + "media": [ + { + "id": 450268561647226880, + "id_str": "450268561647226880", + "indices": [ + 87, + 109 + ], + "media_url": "http://pbs.twimg.com/media/Bj-s3waCUAAv0GF.png", + "media_url_https": "https://pbs.twimg.com/media/Bj-s3waCUAAv0GF.png", + "url": "http://t.co/3GeIkOCJYe", + "display_url": "pic.twitter.com/3GeIkOCJYe", + "expanded_url": "http://twitter.com/FredericJacobs/status/450268561924042752/photo/1", + "type": "photo", + "sizes": { + "large": { + "w": 576, + "h": 360, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 213, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 576, + "h": 360, + "resize": "fit" + } + } + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 83, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 30 14:30:18 +0000 2014", + "id": 450278848970915840, + "id_str": "450278848970915840", + "text": "@wimremes … that never happened.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 450225067260407808, + "in_reply_to_status_id_str": "450225067260407808", + "in_reply_to_user_id": 14932408, + "in_reply_to_user_id_str": "14932408", + "in_reply_to_screen_name": "wimremes", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 30 14:29:41 +0000 2014", + "id": 450278694259793920, + "id_str": "450278694259793920", + "text": "I dreamed @thegrugq and @rantyben were *insisting* I get on the next plane to Thailand, and wouldn’t tell me why.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 7, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 30 14:17:27 +0000 2014", + "id": 450275617700052992, + "id_str": "450275617700052992", + "text": "@m1sp woohoo! I’m twenty-six abroad!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 450275527572459520, + "in_reply_to_status_id_str": "450275527572459520", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 30 14:15:23 +0000 2014", + "id": 450275098935975936, + "id_str": "450275098935975936", + "text": "@m1sp @lunavis do so. They were dumb dreams anyway", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 450274873202335744, + "in_reply_to_status_id_str": "450274873202335744", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 30 14:13:48 +0000 2014", + "id": 450274698270867456, + "id_str": "450274698270867456", + "text": "@m1sp @lunavis hmm, I guess there is something cute about being woken up by BFF talking about me on twitter. *yawn stretch*", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 450273146185072641, + "in_reply_to_status_id_str": "450273146185072641", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 30 04:21:01 +0000 2014", + "id": 450125520949493760, + "id_str": "450125520949493760", + "text": "@thegrugq and your proposed alternative that includes a nontrivial number of people maintaining access to the open internet is?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 450125062813667328, + "in_reply_to_status_id_str": "450125062813667328", + "in_reply_to_user_id": 18983429, + "in_reply_to_user_id_str": "18983429", + "in_reply_to_screen_name": "thegrugq", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 30 03:42:29 +0000 2014", + "id": 450115823374708736, + "id_str": "450115823374708736", + "text": "RT @runasand: Vietnam is currently blocking DNS requests to @Twitter and @Facebook: https://t.co/hBZJ7OOqSi", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sun Mar 30 03:28:22 +0000 2014", + "id": 450112270044237824, + "id_str": "450112270044237824", + "text": "Vietnam is currently blocking DNS requests to @Twitter and @Facebook: https://t.co/hBZJ7OOqSi", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 19959946, + "id_str": "19959946" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 28, + "favorite_count": 5, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "https://t.co/hBZJ7OOqSi", + "expanded_url": "https://twitter.com/caligarn/status/449744207167488000", + "display_url": "twitter.com/caligarn/statu…", + "indices": [ + 70, + 93 + ] + } + ], + "user_mentions": [ + { + "screen_name": "twitter", + "name": "Twitter", + "id": 783214, + "id_str": "783214", + "indices": [ + 46, + 54 + ] + }, + { + "screen_name": "facebook", + "name": "Facebook", + "id": 2425151, + "id_str": "2425151", + "indices": [ + 59, + 68 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 28, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 30 02:36:33 +0000 2014", + "id": 450099229550456832, + "id_str": "450099229550456832", + "text": "@vogon the VMS assembler calls them asciiz which I’m pretty sure is a rapper", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 450098963962544128, + "in_reply_to_status_id_str": "450098963962544128", + "in_reply_to_user_id": 6326912, + "in_reply_to_user_id_str": "6326912", + "in_reply_to_screen_name": "vogon", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 30 02:20:01 +0000 2014", + "id": 450095069992079360, + "id_str": "450095069992079360", + "text": "RT @flyingparchment: This form seems deliberately deceitful. http://t.co/XpRs2Newos", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sun Mar 30 02:05:54 +0000 2014", + "id": 450091515172225024, + "id_str": "450091515172225024", + "text": "This form seems deliberately deceitful. http://t.co/XpRs2Newos", + "source": "TweetDeck", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 1584370021, + "id_str": "1584370021" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 27, + "favorite_count": 12, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ], + "media": [ + { + "id": 450091514882842624, + "id_str": "450091514882842624", + "indices": [ + 40, + 62 + ], + "media_url": "http://pbs.twimg.com/media/Bj8L2R0CYAAXhqi.png", + "media_url_https": "https://pbs.twimg.com/media/Bj8L2R0CYAAXhqi.png", + "url": "http://t.co/XpRs2Newos", + "display_url": "pic.twitter.com/XpRs2Newos", + "expanded_url": "http://twitter.com/flyingparchment/status/450091515172225024/photo/1", + "type": "photo", + "sizes": { + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 55, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 96, + "resize": "fit" + }, + "large": { + "w": 1024, + "h": 165, + "resize": "fit" + } + } + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 27, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 30 01:20:27 +0000 2014", + "id": 450080078043828225, + "id_str": "450080078043828225", + "text": "RT @runasand: It would be great if someone could translate this blog post about ways to get the #Tor Browser Bundle into Turkish: https://t…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sun Mar 30 01:20:06 +0000 2014", + "id": 450079991091716097, + "id_str": "450079991091716097", + "text": "It would be great if someone could translate this blog post about ways to get the #Tor Browser Bundle into Turkish: https://t.co/9sWrgG7hhR", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 19959946, + "id_str": "19959946" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 37, + "favorite_count": 11, + "entities": { + "hashtags": [ + { + "text": "Tor", + "indices": [ + 82, + 86 + ] + } + ], + "symbols": [ + + ], + "urls": [ + { + "url": "https://t.co/9sWrgG7hhR", + "expanded_url": "https://blog.torproject.org/blog/ways-get-tor-browser-bundle", + "display_url": "blog.torproject.org/blog/ways-get-…", + "indices": [ + 116, + 139 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 37, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 30 00:49:41 +0000 2014", + "id": 450072334511378432, + "id_str": "450072334511378432", + "text": "@Talen_Lee as a paranoid person: <feels>", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 450071520216231936, + "in_reply_to_status_id_str": "450071520216231936", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 30 00:45:59 +0000 2014", + "id": 450071404659363840, + "id_str": "450071404659363840", + "text": "@miuaf @Talen_Lee no no that’s the buzzer not the woodpecker! :)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 450071198584422400, + "in_reply_to_status_id_str": "450071198584422400", + "in_reply_to_user_id": 1029662892, + "in_reply_to_user_id_str": "1029662892", + "in_reply_to_screen_name": "miuaf", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 30 00:45:14 +0000 2014", + "id": 450071214099529728, + "id_str": "450071214099529728", + "text": "@ra6bit :(", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 450071154573987840, + "in_reply_to_status_id_str": "450071154573987840", + "in_reply_to_user_id": 537333195, + "in_reply_to_user_id_str": "537333195", + "in_reply_to_screen_name": "ra6bit", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Sun Mar 30 00:45:06 +0000 2014", + "id": 450071182088630272, + "id_str": "450071182088630272", + "text": "A reader suggests http://t.co/sUnv74sNE1 which I think is it. But not ruling out NSA brain-o-trons.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 30 00:44:06 +0000 2014", + "id": 450070930866589696, + "id_str": "450070930866589696", + "text": "@ra6bit yeah that’s probably it! Since when did you go private", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 450070671142690816, + "in_reply_to_status_id_str": "450070671142690816", + "in_reply_to_user_id": 537333195, + "in_reply_to_user_id_str": "537333195", + "in_reply_to_screen_name": "ra6bit", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 30 00:41:28 +0000 2014", + "id": 450070269319991296, + "id_str": "450070269319991296", + "text": "@ra6bit I can try to get a decent picture tomorrow if it isn’t pouring but I don’t have any zoom lens", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 450070050742206464, + "in_reply_to_status_id_str": "450070050742206464", + "in_reply_to_user_id": 537333195, + "in_reply_to_user_id_str": "537333195", + "in_reply_to_screen_name": "ra6bit", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 30 00:38:51 +0000 2014", + "id": 450069607727243264, + "id_str": "450069607727243264", + "text": "@ra6bit so that it doesn’t whip off in high wind?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 450069443927105539, + "in_reply_to_status_id_str": "450069443927105539", + "in_reply_to_user_id": 537333195, + "in_reply_to_user_id_str": "537333195", + "in_reply_to_screen_name": "ra6bit", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 30 00:36:03 +0000 2014", + "id": 450068905784926209, + "id_str": "450068905784926209", + "text": "@ra6bit http://t.co/2hlNczfY8X", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 450067175290982401, + "in_reply_to_status_id_str": "450067175290982401", + "in_reply_to_user_id": 537333195, + "in_reply_to_user_id_str": "537333195", + "in_reply_to_screen_name": "ra6bit", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Sun Mar 30 00:21:40 +0000 2014", + "id": 450065283697610752, + "id_str": "450065283697610752", + "text": "@sjalexander oh, it does have a solar panel, though, despite the power lines being right there", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 450064669890199552, + "in_reply_to_status_id_str": "450064669890199552", + "in_reply_to_user_id": 15116849, + "in_reply_to_user_id_str": "15116849", + "in_reply_to_screen_name": "sjalexander", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 30 00:20:07 +0000 2014", + "id": 450064896240386048, + "id_str": "450064896240386048", + "text": "@sjalexander it’s at the top of the pole, I could determine nothing about the box save it’s white and boxy", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 450064669890199552, + "in_reply_to_status_id_str": "450064669890199552", + "in_reply_to_user_id": 15116849, + "in_reply_to_user_id_str": "15116849", + "in_reply_to_screen_name": "sjalexander", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 30 00:19:31 +0000 2014", + "id": 450064742879879168, + "id_str": "450064742879879168", + "text": "@Talen_Lee the soviets can jam my radar when they turn off their dang woodpecker", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 450064538109370369, + "in_reply_to_status_id_str": "450064538109370369", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 30 00:17:26 +0000 2014", + "id": 450064218029842432, + "id_str": "450064218029842432", + "text": "There is a new transmitter — two antennas, about 18” — installed on a telephone pole near my house. I wonder what it’s for.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 5, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 30 00:15:32 +0000 2014", + "id": 450063740579622912, + "id_str": "450063740579622912", + "text": "@m1sp if anyone else catches it, I’ll tell them Hayr can’t count that high anyway", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 30 00:14:16 +0000 2014", + "id": 450063424924700672, + "id_str": "450063424924700672", + "text": "@m1sp Mispy I’m editing \n\nWhy didn’t you tell me I said “almost three hundred years” when I meant “just over three hundred years”", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 30 00:13:28 +0000 2014", + "id": 450063219835822080, + "id_str": "450063219835822080", + "text": "@pookleblinky @frkbmb would you like five hundred rose gold coins illustrated with a cat sleeping on a cheese wheel", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 450062883074752514, + "in_reply_to_status_id_str": "450062883074752514", + "in_reply_to_user_id": 35163668, + "in_reply_to_user_id_str": "35163668", + "in_reply_to_screen_name": "pookleblinky", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 30 00:09:59 +0000 2014", + "id": 450062347110215680, + "id_str": "450062347110215680", + "text": "@pookleblinky @frkbmb well once I started playing Dwarf Fortress the allure of stamping your own sigil on your wealth became clear :)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 450058655207915520, + "in_reply_to_status_id_str": "450058655207915520", + "in_reply_to_user_id": 35163668, + "in_reply_to_user_id_str": "35163668", + "in_reply_to_screen_name": "pookleblinky", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 29 23:29:19 +0000 2014", + "id": 450052110366019584, + "id_str": "450052110366019584", + "text": "RT @JBelsham: This is my favourite gay marriage comment from the BBC News website http://t.co/CAKTp8cusu", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sat Mar 29 21:13:26 +0000 2014", + "id": 450017913249202177, + "id_str": "450017913249202177", + "text": "This is my favourite gay marriage comment from the BBC News website http://t.co/CAKTp8cusu", + "source": "Twitter for Mac", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 20783106, + "id_str": "20783106" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3517, + "favorite_count": 1616, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ], + "media": [ + { + "id": 450017913089826816, + "id_str": "450017913089826816", + "indices": [ + 68, + 90 + ], + "media_url": "http://pbs.twimg.com/media/Bj7I6FxIIAAV2CT.png", + "media_url_https": "https://pbs.twimg.com/media/Bj7I6FxIIAAV2CT.png", + "url": "http://t.co/CAKTp8cusu", + "display_url": "pic.twitter.com/CAKTp8cusu", + "expanded_url": "http://twitter.com/JBelsham/status/450017913249202177/photo/1", + "type": "photo", + "sizes": { + "thumb": { + "w": 150, + "h": 145, + "resize": "crop" + }, + "large": { + "w": 473, + "h": 145, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 104, + "resize": "fit" + }, + "medium": { + "w": 473, + "h": 145, + "resize": "fit" + } + } + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 3517, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 29 22:32:43 +0000 2014", + "id": 450037866333495296, + "id_str": "450037866333495296", + "text": "@Talen_Lee billion dollar gift card here I come.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 450037213187694593, + "in_reply_to_status_id_str": "450037213187694593", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 29 22:32:08 +0000 2014", + "id": 450037720526913536, + "id_str": "450037720526913536", + "text": "RT @abt_programming: \"I am a Unix Creationist. I believe the world was created on January 1, 1970 and as prophesized, will end on January 1…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Thu Mar 27 14:18:05 +0000 2014", + "id": 449188611100246016, + "id_str": "449188611100246016", + "text": "\"I am a Unix Creationist. I believe the world was created on January 1, 1970 and as prophesized, will end on January 19, 2038\" - @teropa", + "source": "Buffer", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 1606588254, + "id_str": "1606588254" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3000, + "favorite_count": 1341, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "teropa", + "name": "Tero Parviainen", + "id": 14157530, + "id_str": "14157530", + "indices": [ + 129, + 136 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 3000, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 29 22:27:24 +0000 2014", + "id": 450036530963566592, + "id_str": "450036530963566592", + "text": "@tsdNull I do live in Massachusetts…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 450036339166412800, + "in_reply_to_status_id_str": "450036339166412800", + "in_reply_to_user_id": 480138420, + "in_reply_to_user_id_str": "480138420", + "in_reply_to_screen_name": "tsdNull", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 29 22:21:55 +0000 2014", + "id": 450035148185415680, + "id_str": "450035148185415680", + "text": "The birdsong outside falls silent. A moment later, it is renewed in a great and angry clamor. One of them must have said a birdswear.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 4, + "favorite_count": 14, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 29 21:43:45 +0000 2014", + "id": 450025545414496256, + "id_str": "450025545414496256", + "text": "@rmjorg I worked on this document from two different computers with the same app, so maybe some arcane setting was not in agreement :(", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 450025256866947072, + "in_reply_to_status_id_str": "450025256866947072", + "in_reply_to_user_id": 1488337543, + "in_reply_to_user_id_str": "1488337543", + "in_reply_to_screen_name": "rmjorg", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 29 21:39:32 +0000 2014", + "id": 450024483831943169, + "id_str": "450024483831943169", + "text": "@MechMK1 the devil's own kerning", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 450020790923427840, + "in_reply_to_status_id_str": "450020790923427840", + "in_reply_to_user_id": 81556825, + "in_reply_to_user_id_str": "81556825", + "in_reply_to_screen_name": "MechMK1", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 29 21:39:20 +0000 2014", + "id": 450024432678211585, + "id_str": "450024432678211585", + "text": "@rmjorg then I would have expected to lose all of the curlies for straights, as I change the font with ctrl-a", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 450023101489614849, + "in_reply_to_status_id_str": "450023101489614849", + "in_reply_to_user_id": 1488337543, + "in_reply_to_user_id_str": "1488337543", + "in_reply_to_screen_name": "rmjorg", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 29 21:13:35 +0000 2014", + "id": 450017951350292480, + "id_str": "450017951350292480", + "text": "@vogon well curly is what I want so they’re not nearly smart enough", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 450017792964583425, + "in_reply_to_status_id_str": "450017792964583425", + "in_reply_to_user_id": 6326912, + "in_reply_to_user_id_str": "6326912", + "in_reply_to_screen_name": "vogon", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 29 21:13:07 +0000 2014", + "id": 450017837047099392, + "id_str": "450017837047099392", + "text": "@NotFaulty @vogon … you know… I’m really bothered by how small his goggles are.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 450016736331694081, + "in_reply_to_status_id_str": "450016736331694081", + "in_reply_to_user_id": 371478069, + "in_reply_to_user_id_str": "371478069", + "in_reply_to_screen_name": "NotFaulty", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 29 21:11:25 +0000 2014", + "id": 450017409202929664, + "id_str": "450017409202929664", + "text": "Gahh how did my document get into an inconsistent state of curly ’ and straight ' even in the same sentence", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 29 21:08:21 +0000 2014", + "id": 450016635303505920, + "id_str": "450016635303505920", + "text": "RT @MrsMalki: No more cosplay pics needed. This couple has won at life. #ECCC2014 http://t.co/YXUsM5BELT", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sat Mar 29 18:08:06 +0000 2014", + "id": 449971273582395392, + "id_str": "449971273582395392", + "text": "No more cosplay pics needed. This couple has won at life. #ECCC2014 http://t.co/YXUsM5BELT", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 14580768, + "id_str": "14580768" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1075, + "favorite_count": 1182, + "entities": { + "hashtags": [ + { + "text": "ECCC2014", + "indices": [ + 58, + 67 + ] + } + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ], + "media": [ + { + "id": 449971273389465601, + "id_str": "449971273389465601", + "indices": [ + 68, + 90 + ], + "media_url": "http://pbs.twimg.com/media/Bj6efTWCYAErfAL.jpg", + "media_url_https": "https://pbs.twimg.com/media/Bj6efTWCYAErfAL.jpg", + "url": "http://t.co/YXUsM5BELT", + "display_url": "pic.twitter.com/YXUsM5BELT", + "expanded_url": "http://twitter.com/MrsMalki/status/449971273582395392/photo/1", + "type": "photo", + "sizes": { + "large": { + "w": 769, + "h": 1024, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 453, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 799, + "resize": "fit" + } + } + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 1075, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 29 20:23:35 +0000 2014", + "id": 450005370321526784, + "id_str": "450005370321526784", + "text": "@JZdziarski I definitely didn’t opt in to that one…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 450005072618217472, + "in_reply_to_status_id_str": "450005072618217472", + "in_reply_to_user_id": 1267770224, + "in_reply_to_user_id_str": "1267770224", + "in_reply_to_screen_name": "JZdziarski", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 29 20:15:33 +0000 2014", + "id": 450003349954629632, + "id_str": "450003349954629632", + "text": "If my mother asks, and I say I want world peace for my birthday, she’s contractually obligated as a parent to deliver right", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 7, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 29 20:02:18 +0000 2014", + "id": 450000015650738176, + "id_str": "450000015650738176", + "text": "@demize95 Kay-coolios my… something-oolios", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 449999632601333760, + "in_reply_to_status_id_str": "449999632601333760", + "in_reply_to_user_id": 137133048, + "in_reply_to_user_id_str": "137133048", + "in_reply_to_screen_name": "demize95", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "tl" + }, + { + "created_at": "Sat Mar 29 19:56:25 +0000 2014", + "id": 449998531311718400, + "id_str": "449998531311718400", + "text": "@demize95 this is the core of it, context she ran away from home because she lost control of her secret ice magic https://t.co/JiVc4KuwHa", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 449997828517924864, + "in_reply_to_status_id_str": "449997828517924864", + "in_reply_to_user_id": 137133048, + "in_reply_to_user_id_str": "137133048", + "in_reply_to_screen_name": "demize95", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 29 19:49:26 +0000 2014", + "id": 449996774019985408, + "id_str": "449996774019985408", + "text": "@demize95 “the cold never bothered me anyway” is a crucial line.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 449996590552326144, + "in_reply_to_status_id_str": "449996590552326144", + "in_reply_to_user_id": 137133048, + "in_reply_to_user_id_str": "137133048", + "in_reply_to_screen_name": "demize95", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 29 19:48:33 +0000 2014", + "id": 449996551264698368, + "id_str": "449996551264698368", + "text": "@tenfootfangs the terrible thing is I absolutely can read that via memetic suffusion", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 449990478172532737, + "in_reply_to_status_id_str": "449990478172532737", + "in_reply_to_user_id": 22337789, + "in_reply_to_user_id_str": "22337789", + "in_reply_to_screen_name": "tenfootfangs", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 29 19:47:00 +0000 2014", + "id": 449996163958464512, + "id_str": "449996163958464512", + "text": "@demize95 http://t.co/4tc95bqqPg", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 449995070788210688, + "in_reply_to_status_id_str": "449995070788210688", + "in_reply_to_user_id": 137133048, + "in_reply_to_user_id_str": "137133048", + "in_reply_to_screen_name": "demize95", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Sat Mar 29 19:40:09 +0000 2014", + "id": 449994440162414595, + "id_str": "449994440162414595", + "text": "Must not work in \"Frozen\" reference in my character dialogue. Must not work in \"Frozen\" reference in my character dialogue. Must not work i–", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 29 19:26:33 +0000 2014", + "id": 449991017249665025, + "id_str": "449991017249665025", + "text": "@PythEch is this an IP they have failed to ban?", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 449990537039577088, + "in_reply_to_status_id_str": "449990537039577088", + "in_reply_to_user_id": 94548658, + "in_reply_to_user_id_str": "94548658", + "in_reply_to_screen_name": "PythEch", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 29 19:25:00 +0000 2014", + "id": 449990627594633216, + "id_str": "449990627594633216", + "text": "@m1sp @WhiteMageSlave adding that new section has pushed book 1 over 115,000 which is brushing against the 120k \"hard limit per novel\" :)", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 29 19:03:53 +0000 2014", + "id": 449985312203493376, + "id_str": "449985312203493376", + "text": "@sergeybratus closer to the black pitch of powered off? :(", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 449984838670376960, + "in_reply_to_status_id_str": "449984838670376960", + "in_reply_to_user_id": 354406010, + "in_reply_to_user_id_str": "354406010", + "in_reply_to_screen_name": "sergeybratus", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 29 18:57:33 +0000 2014", + "id": 449983718967750657, + "id_str": "449983718967750657", + "text": "@needshortername @zigg @grygrflzr there are far better-looking fonts for that, but they unfortunately don’t ship with the operating system", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 449983388192342016, + "in_reply_to_status_id_str": "449983388192342016", + "in_reply_to_user_id": 26157562, + "in_reply_to_user_id_str": "26157562", + "in_reply_to_screen_name": "needshortername", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 29 18:56:04 +0000 2014", + "id": 449983346643599361, + "id_str": "449983346643599361", + "text": "RT @MotherJones: Gay marriage is now legal in England & Wales http://t.co/tYB0zKjHcJ http://t.co/pkQykPM9e6", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sat Mar 29 14:20:01 +0000 2014", + "id": 449913873215131648, + "id_str": "449913873215131648", + "text": "Gay marriage is now legal in England & Wales http://t.co/tYB0zKjHcJ http://t.co/pkQykPM9e6", + "source": "TweetDeck", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 18510860, + "id_str": "18510860" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 316, + "favorite_count": 253, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/tYB0zKjHcJ", + "expanded_url": "http://bit.ly/P4b1iI", + "display_url": "bit.ly/P4b1iI", + "indices": [ + 49, + 71 + ] + } + ], + "user_mentions": [ + + ], + "media": [ + { + "id": 449913873026387968, + "id_str": "449913873026387968", + "indices": [ + 72, + 94 + ], + "media_url": "http://pbs.twimg.com/media/Bj5qSKVCEAA6n-v.jpg", + "media_url_https": "https://pbs.twimg.com/media/Bj5qSKVCEAA6n-v.jpg", + "url": "http://t.co/pkQykPM9e6", + "display_url": "pic.twitter.com/pkQykPM9e6", + "expanded_url": "http://twitter.com/MotherJones/status/449913873215131648/photo/1", + "type": "photo", + "sizes": { + "medium": { + "w": 600, + "h": 352, + "resize": "fit" + }, + "large": { + "w": 630, + "h": 370, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 200, + "resize": "fit" + } + } + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 316, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 29 18:52:04 +0000 2014", + "id": 449982337498226688, + "id_str": "449982337498226688", + "text": "@riajuunibyou @trap0xf I have never seen a doujinshi rated one star before \n\nI can’t even tell if it’s hentai and not sure I want to know", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 449953473535021056, + "in_reply_to_status_id_str": "449953473535021056", + "in_reply_to_user_id": 16454741, + "in_reply_to_user_id_str": "16454741", + "in_reply_to_screen_name": "riajuunibyou", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 29 18:41:36 +0000 2014", + "id": 449979705559879680, + "id_str": "449979705559879680", + "text": "RT @anssik: We're seeing ~4-10x JavaScript performance speedup with SIMD.JS: https://t.co/pcXNAid3Qe Landed in Firefox Nightly, soon in Chr…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Fri Mar 28 21:17:29 +0000 2014", + "id": 449656545958440960, + "id_str": "449656545958440960", + "text": "We're seeing ~4-10x JavaScript performance speedup with SIMD.JS: https://t.co/pcXNAid3Qe Landed in Firefox Nightly, soon in Chromium.", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 36619363, + "id_str": "36619363" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 358, + "favorite_count": 247, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "https://t.co/pcXNAid3Qe", + "expanded_url": "https://01.org/blogs/tlcounts/2014/bringing-simd-javascript", + "display_url": "01.org/blogs/tlcounts…", + "indices": [ + 65, + 88 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 358, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 29 17:37:33 +0000 2014", + "id": 449963584454672384, + "id_str": "449963584454672384", + "text": "RT @KJV_Programming: the LORD preserve knowledge, and he overthroweth the words of Alan Perlis, “Syntactic sugar causes cancer... http://t.…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sat Mar 29 17:02:14 +0000 2014", + "id": 449954697408151552, + "id_str": "449954697408151552", + "text": "the LORD preserve knowledge, and he overthroweth the words of Alan Perlis, “Syntactic sugar causes cancer... http://t.co/1hf25dppup", + "source": "Tumblr", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2209168532, + "id_str": "2209168532" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 10, + "favorite_count": 3, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/1hf25dppup", + "expanded_url": "http://tmblr.co/ZPJihp1BXCDFO", + "display_url": "tmblr.co/ZPJihp1BXCDFO", + "indices": [ + 109, + 131 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 10, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 29 17:33:08 +0000 2014", + "id": 449962472934768640, + "id_str": "449962472934768640", + "text": "@hemantmehta YouTube is (apparently deliberately) very shoddy at updating view count", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 449955978339827712, + "in_reply_to_status_id_str": "449955978339827712", + "in_reply_to_user_id": 23034673, + "in_reply_to_user_id_str": "23034673", + "in_reply_to_screen_name": "hemantmehta", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 29 17:31:20 +0000 2014", + "id": 449962022567161856, + "id_str": "449962022567161856", + "text": "@bascule @ioerror affect! He is sent by the shadow cabal to AFFECT us!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 449953856336568320, + "in_reply_to_status_id_str": "449953856336568320", + "in_reply_to_user_id": 6083342, + "in_reply_to_user_id_str": "6083342", + "in_reply_to_screen_name": "bascule", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 29 17:26:54 +0000 2014", + "id": 449960906475450368, + "id_str": "449960906475450368", + "text": "RT @hubert3: @0xabad1dea turn web history off at https://t.co/VrIGIQuNuU", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sat Mar 29 17:25:24 +0000 2014", + "id": 449960527431618560, + "id_str": "449960527431618560", + "text": "@0xabad1dea turn web history off at https://t.co/VrIGIQuNuU", + "source": "Tweetbot for Mac", + "truncated": false, + "in_reply_to_status_id": 449959179478777857, + "in_reply_to_status_id_str": "449959179478777857", + "in_reply_to_user_id": 126030998, + "in_reply_to_user_id_str": "126030998", + "in_reply_to_screen_name": "0xabad1dea", + "user": { + "id": 25379162, + "id_str": "25379162" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 5, + "favorite_count": 7, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "https://t.co/VrIGIQuNuU", + "expanded_url": "https://history.google.com/history", + "display_url": "history.google.com/history", + "indices": [ + 36, + 59 + ] + } + ], + "user_mentions": [ + { + "screen_name": "0xabad1dea", + "name": "Melissa", + "id": 126030998, + "id_str": "126030998", + "indices": [ + 0, + 11 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 5, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 29 17:25:22 +0000 2014", + "id": 449960520377171968, + "id_str": "449960520377171968", + "text": "@WhiteMageSlave @antumbral @m1sp wait what\n\nDM me who because really?? I'm genuinely surprised in the best sort of way", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 449960247441235970, + "in_reply_to_status_id_str": "449960247441235970", + "in_reply_to_user_id": 90791634, + "in_reply_to_user_id_str": "90791634", + "in_reply_to_screen_name": "WhiteMageSlave", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 29 17:20:02 +0000 2014", + "id": 449959179478777857, + "id_str": "449959179478777857", + "text": "I'm so glad you log this information long term, Google. :\\ http://t.co/S0sUqBzAbh", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 8, + "favorite_count": 10, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 29 17:07:14 +0000 2014", + "id": 449955954906652672, + "id_str": "449955954906652672", + "text": "@grygrflzr I hate most sans, and I can easily tell the difference between several families of serifs, so switching serifs seems to work", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 449955269456302081, + "in_reply_to_status_id_str": "449955269456302081", + "in_reply_to_user_id": 69503917, + "in_reply_to_user_id_str": "69503917", + "in_reply_to_screen_name": "GrygrFlzr", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 29 17:05:50 +0000 2014", + "id": 449955604166365184, + "id_str": "449955604166365184", + "text": "@grygrflzr it just has to be different enough to disrupt your visual memory", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 449955269456302081, + "in_reply_to_status_id_str": "449955269456302081", + "in_reply_to_user_id": 69503917, + "in_reply_to_user_id_str": "69503917", + "in_reply_to_screen_name": "GrygrFlzr", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 29 17:00:37 +0000 2014", + "id": 449954289705041920, + "id_str": "449954289705041920", + "text": "The tip to occasionally change up the font when editing your own writing is a good one.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 7, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 29 16:02:50 +0000 2014", + "id": 449939748971634688, + "id_str": "449939748971634688", + "text": "@antumbral @m1sp I still have difficulty believing my baby brother *isn’t* gay. Holding out for a bisexual confession.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 449939450101891072, + "in_reply_to_status_id_str": "449939450101891072", + "in_reply_to_user_id": 19837512, + "in_reply_to_user_id_str": "19837512", + "in_reply_to_screen_name": "antumbral", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 29 16:00:46 +0000 2014", + "id": 449939230337548290, + "id_str": "449939230337548290", + "text": "@m1sp are you telling me to encourage the stereotype of grown women being infected with the devil’s philosophy and suddenly being lesbians", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 449938380827021312, + "in_reply_to_status_id_str": "449938380827021312", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 29 15:55:42 +0000 2014", + "id": 449937955269115905, + "id_str": "449937955269115905", + "text": "@m1sp on the weird dreams note — probably shouldn’t tell my cousin who married a preacher I dreamed she came out as a lesbian, huh", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 29 15:49:45 +0000 2014", + "id": 449936457139240960, + "id_str": "449936457139240960", + "text": "@needshortername by Traditional Unicode I meant glyphs that pre-date the modern emoji. There is no traditional watermelon :)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 449936087583301633, + "in_reply_to_status_id_str": "449936087583301633", + "in_reply_to_user_id": 26157562, + "in_reply_to_user_id_str": "26157562", + "in_reply_to_screen_name": "needshortername", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 29 15:36:31 +0000 2014", + "id": 449933125125406720, + "id_str": "449933125125406720", + "text": "@needshortername you don’t actually want Traditional Unicode rendering in color in webpages, it breaks design assumptions", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 449932890672222208, + "in_reply_to_status_id_str": "449932890672222208", + "in_reply_to_user_id": 26157562, + "in_reply_to_user_id_str": "26157562", + "in_reply_to_screen_name": "needshortername", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 29 15:34:35 +0000 2014", + "id": 449932640456835073, + "id_str": "449932640456835073", + "text": "@m1sp oh my gods, can’t these hostages stop whining about their first world hostage situation and move on!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 449891549682208768, + "in_reply_to_status_id_str": "449891549682208768", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 29 15:32:13 +0000 2014", + "id": 449932046056837120, + "id_str": "449932046056837120", + "text": "@needshortername and it’s black in iOS Safari within a webpage!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 449931773947179009, + "in_reply_to_status_id_str": "449931773947179009", + "in_reply_to_user_id": 26157562, + "in_reply_to_user_id_str": "26157562", + "in_reply_to_screen_name": "needshortername", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 29 15:30:28 +0000 2014", + "id": 449931602899243009, + "id_str": "449931602899243009", + "text": "@blackhole0173 @m1sp I distinctly recall getting in a fight with a high school teacher over this distinction, him being the latter :(", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 449876490625089536, + "in_reply_to_status_id_str": "449876490625089536", + "in_reply_to_user_id": 107823249, + "in_reply_to_user_id_str": "107823249", + "in_reply_to_screen_name": "blackhole0173", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 29 15:29:51 +0000 2014", + "id": 449931447294767104, + "id_str": "449931447294767104", + "text": "RT @blackhole0173: There seem to be two responses to realizing that life is cruel: trying to make it less cruel, and simply using it as an …", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sat Mar 29 11:51:28 +0000 2014", + "id": 449876490625089536, + "id_str": "449876490625089536", + "text": "There seem to be two responses to realizing that life is cruel: trying to make it less cruel, and simply using it as an excuse to be cruel.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 107823249, + "id_str": "107823249" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 36, + "favorite_count": 20, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": true, + "lang": "en" + }, + "retweet_count": 36, + "favorite_count": 0, + "favorited": false, + "retweeted": true, + "lang": "en" + }, + { + "created_at": "Sat Mar 29 15:20:01 +0000 2014", + "id": 449928972584091648, + "id_str": "449928972584091648", + "text": "RT @marcwrogers: Think your PCI auditor is bad? Trust me theres no way he's THIS BAD - http://t.co/9IXk3MlxOF", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Fri Mar 28 20:25:23 +0000 2014", + "id": 449643433498398721, + "id_str": "449643433498398721", + "text": "Think your PCI auditor is bad? Trust me theres no way he's THIS BAD - http://t.co/9IXk3MlxOF", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 38827207, + "id_str": "38827207" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 220, + "favorite_count": 90, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/9IXk3MlxOF", + "expanded_url": "http://serverfault.com/questions/293217/our-security-auditor-is-an-idiot-how-do-i-give-him-the-information-he-wants", + "display_url": "serverfault.com/questions/2932…", + "indices": [ + 70, + 92 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 220, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 29 15:12:19 +0000 2014", + "id": 449927037785223168, + "id_str": "449927037785223168", + "text": "@realDonaldTrump @eevee thank you for working hard to actively spread proven lies and make the world worse", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 449525268529815552, + "in_reply_to_status_id_str": "449525268529815552", + "in_reply_to_user_id": 25073877, + "in_reply_to_user_id_str": "25073877", + "in_reply_to_screen_name": "realDonaldTrump", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 29 15:08:08 +0000 2014", + "id": 449925982481547267, + "id_str": "449925982481547267", + "text": "@AlyssaRowan nothing. It’s just not nearly as effective :)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 449878494529716224, + "in_reply_to_status_id_str": "449878494529716224", + "in_reply_to_user_id": 2269606975, + "in_reply_to_user_id_str": "2269606975", + "in_reply_to_screen_name": "AlyssaRowan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 29 09:48:14 +0000 2014", + "id": 449845479292272640, + "id_str": "449845479292272640", + "text": "@m1sp *wakes up* … wat\n\n*rolls over* good night I say!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 449845064349384705, + "in_reply_to_status_id_str": "449845064349384705", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 29 09:47:29 +0000 2014", + "id": 449845290741555200, + "id_str": "449845290741555200", + "text": "@Mark_Coker nope.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 449784450138640385, + "in_reply_to_status_id_str": "449784450138640385", + "in_reply_to_user_id": 64872429, + "in_reply_to_user_id_str": "64872429", + "in_reply_to_screen_name": "Mark_Coker", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "lv" + }, + { + "created_at": "Sat Mar 29 04:51:21 +0000 2014", + "id": 449770765052051457, + "id_str": "449770765052051457", + "text": ".@hawkieowl if you're trying to repro, \"Alex\" says it but the lady voice I tried doesn't seem to.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 449770053626392579, + "in_reply_to_status_id_str": "449770053626392579", + "in_reply_to_user_id": 1143919728, + "in_reply_to_user_id_str": "1143919728", + "in_reply_to_screen_name": "hawkieowl", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 29 04:50:50 +0000 2014", + "id": 449770634894409728, + "id_str": "449770634894409728", + "text": "@hawkieowl without arguments to change the parameters you just get the same thing as you get in a GUI", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 449770053626392579, + "in_reply_to_status_id_str": "449770053626392579", + "in_reply_to_user_id": 1143919728, + "in_reply_to_user_id_str": "1143919728", + "in_reply_to_screen_name": "hawkieowl", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 29 04:38:53 +0000 2014", + "id": 449767630246002688, + "id_str": "449767630246002688", + "text": "My OSX text-to-speech pronounces ♦ as \"diamond suite moji\". I guess the \"e\" went to the same place as the one in \"tumblr\" and \"flickr\"", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 8, + "favorite_count": 9, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 29 04:33:57 +0000 2014", + "id": 449766385095544832, + "id_str": "449766385095544832", + "text": "@Yarmn ... are there infinite unique versions of mad world?", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 449766122401714176, + "in_reply_to_status_id_str": "449766122401714176", + "in_reply_to_user_id": 562500118, + "in_reply_to_user_id_str": "562500118", + "in_reply_to_screen_name": "Yarmn", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 29 04:33:03 +0000 2014", + "id": 449766159655907329, + "id_str": "449766159655907329", + "text": "@me_irl so tell your own followers you're on the prowl for one and you'll probably get one within a few days", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 449765880990543872, + "in_reply_to_status_id_str": "449765880990543872", + "in_reply_to_user_id": 16142493, + "in_reply_to_user_id_str": "16142493", + "in_reply_to_screen_name": "me_irl", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 29 04:32:33 +0000 2014", + "id": 449766034996994048, + "id_str": "449766034996994048", + "text": "@me_irl an invite; I have none right now, but I get a new wave of trackers every few days", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 449765880990543872, + "in_reply_to_status_id_str": "449765880990543872", + "in_reply_to_user_id": 16142493, + "in_reply_to_user_id_str": "16142493", + "in_reply_to_screen_name": "me_irl", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 29 04:29:07 +0000 2014", + "id": 449765169082925056, + "id_str": "449765169082925056", + "text": "Pandora's algorithm actually does a really good job of finding the one song on an album I'll actually like.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 5, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 29 04:07:39 +0000 2014", + "id": 449759767503060992, + "id_str": "449759767503060992", + "text": "@_jdpage https://t.co/vmn313K1kA <-- me", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 449759056925057024, + "in_reply_to_status_id_str": "449759056925057024", + "in_reply_to_user_id": 233252431, + "in_reply_to_user_id_str": "233252431", + "in_reply_to_screen_name": "_jdpage", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 29 04:07:09 +0000 2014", + "id": 449759642621845505, + "id_str": "449759642621845505", + "text": "@_jdpage you can use straight gnupg, or their friendly wrapper, or you can use their browser crypto if you're really brave/lazy :)", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 449759056925057024, + "in_reply_to_status_id_str": "449759056925057024", + "in_reply_to_user_id": 233252431, + "in_reply_to_user_id_str": "233252431", + "in_reply_to_screen_name": "_jdpage", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 29 04:05:57 +0000 2014", + "id": 449759341588262912, + "id_str": "449759341588262912", + "text": "@_jdpage keybase is a website for listing pgp keys by twitter identities (and other identities, list is growing), they're in closed alpha", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 449759056925057024, + "in_reply_to_status_id_str": "449759056925057024", + "in_reply_to_user_id": 233252431, + "in_reply_to_user_id_str": "233252431", + "in_reply_to_screen_name": "_jdpage", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 29 04:04:41 +0000 2014", + "id": 449759020409434112, + "id_str": "449759020409434112", + "text": "@munin now that'd be telling.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 449758500257009664, + "in_reply_to_status_id_str": "449758500257009664", + "in_reply_to_user_id": 8513352, + "in_reply_to_user_id_str": "8513352", + "in_reply_to_screen_name": "munin", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 29 04:01:08 +0000 2014", + "id": 449758126938783744, + "id_str": "449758126938783744", + "text": "That just worked splendidly: someone sent me an image file over Twitter encrypted to my keybase.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 4, + "favorite_count": 14, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 29 03:59:32 +0000 2014", + "id": 449757726722502657, + "id_str": "449757726722502657", + "text": "@ClaudioDekker heheh, well that worked! :)", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 449753048970452992, + "in_reply_to_status_id_str": "449753048970452992", + "in_reply_to_user_id": 78721809, + "in_reply_to_user_id_str": "78721809", + "in_reply_to_screen_name": "ClaudioDekker", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 29 02:47:28 +0000 2014", + "id": 449739589629247488, + "id_str": "449739589629247488", + "text": "@Talen_Lee @m1sp http://t.co/Aq1T37Zk0a\n\n… Bars will be in his bunk", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 449739127445913600, + "in_reply_to_status_id_str": "449739127445913600", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "de" + }, + { + "created_at": "Sat Mar 29 01:58:03 +0000 2014", + "id": 449727153090068480, + "id_str": "449727153090068480", + "text": "@zhuowei @m1sp in theory there’s a method to the madness of the filenames", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 449726811174621184, + "in_reply_to_status_id_str": "449726811174621184", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 29 01:49:39 +0000 2014", + "id": 449725038930178048, + "id_str": "449725038930178048", + "text": "@zhuowei @m1sp ………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………. lol", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 449724582434312193, + "in_reply_to_status_id_str": "449724582434312193", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "is" + }, + { + "created_at": "Sat Mar 29 01:22:44 +0000 2014", + "id": 449718266764988416, + "id_str": "449718266764988416", + "text": "@ClaudioDekker just making sure :)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 449718174825869312, + "in_reply_to_status_id_str": "449718174825869312", + "in_reply_to_user_id": 78721809, + "in_reply_to_user_id_str": "78721809", + "in_reply_to_screen_name": "ClaudioDekker", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 29 01:22:14 +0000 2014", + "id": 449718138792595456, + "id_str": "449718138792595456", + "text": "@ClaudioDekker poke, the Jacob guy who pinged you is legit", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 78721809, + "in_reply_to_user_id_str": "78721809", + "in_reply_to_screen_name": "ClaudioDekker", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 29 01:20:40 +0000 2014", + "id": 449717746868436992, + "id_str": "449717746868436992", + "text": "@m1sp @savagejen tried to draw seductive legs and failed so you just get this pinup from the waist up sorry http://t.co/2Jz6LFy34A", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 449714791066529792, + "in_reply_to_status_id_str": "449714791066529792", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 29 01:13:11 +0000 2014", + "id": 449715860903837696, + "id_str": "449715860903837696", + "text": "@savagejen @m1sp book 2 is about a third done (a quarter by simple page count but that ignores a lot of other work)", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 449715672436572161, + "in_reply_to_status_id_str": "449715672436572161", + "in_reply_to_user_id": 11324652, + "in_reply_to_user_id_str": "11324652", + "in_reply_to_screen_name": "savagejen", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 29 01:08:12 +0000 2014", + "id": 449714608203264000, + "id_str": "449714608203264000", + "text": "@savagejen @m1sp juuuuust a little. http://t.co/0W5jdWRhf3", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 449714054685130752, + "in_reply_to_status_id_str": "449714054685130752", + "in_reply_to_user_id": 11324652, + "in_reply_to_user_id_str": "11324652", + "in_reply_to_screen_name": "savagejen", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 29 01:02:28 +0000 2014", + "id": 449713165795069953, + "id_str": "449713165795069953", + "text": "@m1sp and we do know that… Clarion wants a baby and can’t have one… what has she been doing to learn how to do this", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 449712976073748480, + "in_reply_to_status_id_str": "449712976073748480", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 29 00:59:48 +0000 2014", + "id": 449712494341533696, + "id_str": "449712494341533696", + "text": "@m1sp this is basically magitech genetics so I hope you like it", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 449712286861520896, + "in_reply_to_status_id_str": "449712286861520896", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 29 00:56:45 +0000 2014", + "id": 449711724472848385, + "id_str": "449711724472848385", + "text": "@m1sp http://t.co/t3WcP2Sr6y", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 449709370335432705, + "in_reply_to_status_id_str": "449709370335432705", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Sat Mar 29 00:41:45 +0000 2014", + "id": 449707950131904512, + "id_str": "449707950131904512", + "text": "@m1sp http://t.co/ym56FxzsuZ", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 449705604349571072, + "in_reply_to_status_id_str": "449705604349571072", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Sat Mar 29 00:31:18 +0000 2014", + "id": 449705320617877504, + "id_str": "449705320617877504", + "text": "@m1sp I imagine once Rashk actually met Barsamin and took a highly calibrated gaydar reading he was thinking \"eh... maybe I misinterpreted\"", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 29 00:26:23 +0000 2014", + "id": 449704084359372800, + "id_str": "449704084359372800", + "text": "@m1sp bahaha perfect. I mean Rashk repeatedly being wrong about who this goddess's parents are supposed to be. But, he's never wrong.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 449703878569623553, + "in_reply_to_status_id_str": "449703878569623553", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 29 00:24:33 +0000 2014", + "id": 449703623388577792, + "id_str": "449703623388577792", + "text": "@m1sp <s>Eodar and Helian</s> <s>Barsamin and Erasmin</s> The second protagonist's estranged brother and childhood friend!!", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 449702329973866496, + "in_reply_to_status_id_str": "449702329973866496", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 29 00:18:12 +0000 2014", + "id": 449702026537345024, + "id_str": "449702026537345024", + "text": "@m1sp at this point he's interpreting it as Barsamin is the *father* of a future Aspect of Flight. Mind you, he hasn't actually met Bars.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 449701745514393601, + "in_reply_to_status_id_str": "449701745514393601", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 29 00:18:12 +0000 2014", + "id": 449702026537345024, + "id_str": "449702026537345024", + "text": "@m1sp at this point he's interpreting it as Barsamin is the *father* of a future Aspect of Flight. Mind you, he hasn't actually met Bars.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 449701745514393601, + "in_reply_to_status_id_str": "449701745514393601", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 29 00:14:05 +0000 2014", + "id": 449700988765884416, + "id_str": "449700988765884416", + "text": "@m1sp anyway Rashk's interpretation of Barsamin's future in this scene is Not Even Wrong but you're prob the only reader with enough lore", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 29 00:10:21 +0000 2014", + "id": 449700048369381376, + "id_str": "449700048369381376", + "text": "@ClaudioDekker what happens if your password is already a username I wonder", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 449699024720134144, + "in_reply_to_status_id_str": "449699024720134144", + "in_reply_to_user_id": 78721809, + "in_reply_to_user_id_str": "78721809", + "in_reply_to_screen_name": "ClaudioDekker", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 29 00:03:45 +0000 2014", + "id": 449698386686771201, + "id_str": "449698386686771201", + "text": ".@NightsideSec @ClaudioDekker just so we're clear I meant I am looking for security people from Twitter the corporation", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 449698150790348800, + "in_reply_to_status_id_str": "449698150790348800", + "in_reply_to_user_id": 715536403, + "in_reply_to_user_id_str": "715536403", + "in_reply_to_screen_name": "NightsideSec", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 29 00:02:39 +0000 2014", + "id": 449698110261170177, + "id_str": "449698110261170177", + "text": "@m1sp @gewt this gets even better/worse if you read him with a cartoon vampire accent to match the cape", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 449696611468189696, + "in_reply_to_status_id_str": "449696611468189696", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 29 00:01:06 +0000 2014", + "id": 449697723143696385, + "id_str": "449697723143696385", + "text": "@novembernvrends tweeting again worked so it was pretty weird", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 449697512740634624, + "in_reply_to_status_id_str": "449697512740634624", + "in_reply_to_user_id": 2361598756, + "in_reply_to_user_id_str": "2361598756", + "in_reply_to_screen_name": "hoodiespek", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 29 00:00:45 +0000 2014", + "id": 449697632177627136, + "id_str": "449697632177627136", + "text": "@matthew_d_green @ClaudioDekker if no-one comes I guess there's actually filing tickets like normal people. To sit over the weekend", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 449697200495656960, + "in_reply_to_status_id_str": "449697200495656960", + "in_reply_to_user_id": 106234268, + "in_reply_to_user_id_str": "106234268", + "in_reply_to_screen_name": "matthew_d_green", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Mar 28 23:59:37 +0000 2014", + "id": 449697348860407808, + "id_str": "449697348860407808", + "text": "Uhh what does this error-on-tweet even mean http://t.co/WAGH9Fl9JK", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri Mar 28 23:59:12 +0000 2014", + "id": 449697245492166656, + "id_str": "449697245492166656", + "text": "@ClaudioDekker D:", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 449696966122151936, + "in_reply_to_status_id_str": "449696966122151936", + "in_reply_to_user_id": 78721809, + "in_reply_to_user_id_str": "78721809", + "in_reply_to_screen_name": "ClaudioDekker", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Fri Mar 28 23:55:24 +0000 2014", + "id": 449696285839622144, + "id_str": "449696285839622144", + "text": "@szakulec coldstone makes a \"cake batter ice cream cake\" with whip cream frosting. It's probably a little overpriced but I love it.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 449695927331479552, + "in_reply_to_status_id_str": "449695927331479552", + "in_reply_to_user_id": 151256073, + "in_reply_to_user_id_str": "151256073", + "in_reply_to_screen_name": "szakulec", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Mar 28 23:54:53 +0000 2014", + "id": 449696157728772096, + "id_str": "449696157728772096", + "text": "Hey, could any of the Twitter security people who happen to be around come talk to @ClaudioDekker thanks", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Mar 28 23:49:09 +0000 2014", + "id": 449694715810959360, + "id_str": "449694715810959360", + "text": "@ClaudioDekker @hinanawi_chan do you mind if I call for a twitter security engineer to come look at this? Some of them follow me", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 449694544637222912, + "in_reply_to_status_id_str": "449694544637222912", + "in_reply_to_user_id": 78721809, + "in_reply_to_user_id_str": "78721809", + "in_reply_to_screen_name": "ClaudioDekker", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Mar 28 23:48:06 +0000 2014", + "id": 449694450898731009, + "id_str": "449694450898731009", + "text": "@ClaudioDekker @hinanawi_chan wait, back up. You were trying to activate SMS for your account and it made your password into a username??", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 449694104927371264, + "in_reply_to_status_id_str": "449694104927371264", + "in_reply_to_user_id": 78721809, + "in_reply_to_user_id_str": "78721809", + "in_reply_to_screen_name": "ClaudioDekker", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Mar 28 23:46:38 +0000 2014", + "id": 449694080617156608, + "id_str": "449694080617156608", + "text": "@m1sp well, he was right. Barsamin would never work up the nerve... until after the fact. Lots of nerve after the fact.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 449690585348050944, + "in_reply_to_status_id_str": "449690585348050944", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Mar 28 23:45:40 +0000 2014", + "id": 449693839587291136, + "id_str": "449693839587291136", + "text": "@ClaudioDekker @hinanawi_chan wait what", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 449693349843574784, + "in_reply_to_status_id_str": "449693349843574784", + "in_reply_to_user_id": 78721809, + "in_reply_to_user_id_str": "78721809", + "in_reply_to_screen_name": "ClaudioDekker", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Mar 28 23:45:10 +0000 2014", + "id": 449693711065432064, + "id_str": "449693711065432064", + "text": "@m1sp :D :D", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 449693301495443456, + "in_reply_to_status_id_str": "449693301495443456", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "lv" + }, + { + "created_at": "Fri Mar 28 23:45:01 +0000 2014", + "id": 449693673564164096, + "id_str": "449693673564164096", + "text": "@szakulec oh, I'm not, it's just that the kind I *really* like is $35 for a fairly small cake", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 449688070410235906, + "in_reply_to_status_id_str": "449688070410235906", + "in_reply_to_user_id": 151256073, + "in_reply_to_user_id_str": "151256073", + "in_reply_to_screen_name": "szakulec", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Mar 28 22:50:52 +0000 2014", + "id": 449680047939796992, + "id_str": "449680047939796992", + "text": "@ClaudioDekker @hinanawi_chan oh, huh.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 449679977374834688, + "in_reply_to_status_id_str": "449679977374834688", + "in_reply_to_user_id": 78721809, + "in_reply_to_user_id_str": "78721809", + "in_reply_to_screen_name": "ClaudioDekker", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Mar 28 22:48:42 +0000 2014", + "id": 449679503162605569, + "id_str": "449679503162605569", + "text": "@ClaudioDekker @hinanawi_chan ah yeah I doubt they’d serve a beta layout to someone who isn’t logged in", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 449679352067018752, + "in_reply_to_status_id_str": "449679352067018752", + "in_reply_to_user_id": 78721809, + "in_reply_to_user_id_str": "78721809", + "in_reply_to_screen_name": "ClaudioDekker", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Mar 28 22:47:44 +0000 2014", + "id": 449679259821686784, + "id_str": "449679259821686784", + "text": "@ClaudioDekker @hinanawi_chan you mean it says one list or ?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 449678976790065153, + "in_reply_to_status_id_str": "449678976790065153", + "in_reply_to_user_id": 78721809, + "in_reply_to_user_id_str": "78721809", + "in_reply_to_screen_name": "ClaudioDekker", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Mar 28 22:45:23 +0000 2014", + "id": 449678666050842624, + "id_str": "449678666050842624", + "text": "@ClaudioDekker @hinanawi_chan I’m sure they’re just querying the list count for that number at the top without applying the filter…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 449678449624760321, + "in_reply_to_status_id_str": "449678449624760321", + "in_reply_to_user_id": 78721809, + "in_reply_to_user_id_str": "78721809", + "in_reply_to_screen_name": "ClaudioDekker", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Mar 28 22:44:44 +0000 2014", + "id": 449678503706103808, + "id_str": "449678503706103808", + "text": "Why does the new Twitter profile page leak how many private lists someone has? @twittersecurity", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 10, + "favorite_count": 6, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Mar 28 22:41:05 +0000 2014", + "id": 449677583211585536, + "id_str": "449677583211585536", + "text": "@ClaudioDekker @hinanawi_chan hang on… is it leaking that I have a private list? :\\", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 449676865285156864, + "in_reply_to_status_id_str": "449676865285156864", + "in_reply_to_user_id": 78721809, + "in_reply_to_user_id_str": "78721809", + "in_reply_to_screen_name": "ClaudioDekker", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Mar 28 22:39:06 +0000 2014", + "id": 449677086970884096, + "id_str": "449677086970884096", + "text": "@ClaudioDekker @hinanawi_chan bahh. Yuck.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 449676865285156864, + "in_reply_to_status_id_str": "449676865285156864", + "in_reply_to_user_id": 78721809, + "in_reply_to_user_id_str": "78721809", + "in_reply_to_screen_name": "ClaudioDekker", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "tl" + }, + { + "created_at": "Fri Mar 28 22:34:01 +0000 2014", + "id": 449675805460013056, + "id_str": "449675805460013056", + "text": "@Talen_Lee don’t they cost thousands of dollars though", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 449675018885025792, + "in_reply_to_status_id_str": "449675018885025792", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Mar 28 22:30:01 +0000 2014", + "id": 449674799393288192, + "id_str": "449674799393288192", + "text": "@m1sp @gewt there we go. http://t.co/0nTUecPTIc", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri Mar 28 22:29:24 +0000 2014", + "id": 449674645734969344, + "id_str": "449674645734969344", + "text": "@Talen_Lee I want a cat T____T", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 449674513953718272, + "in_reply_to_status_id_str": "449674513953718272", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Mar 28 22:27:43 +0000 2014", + "id": 449674221711802368, + "id_str": "449674221711802368", + "text": "@Talen_Lee sorry I have to say things like that or I’ll fester in my obviously unreasonable feelings", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 449674012575027200, + "in_reply_to_status_id_str": "449674012575027200", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Mar 28 22:26:15 +0000 2014", + "id": 449673851006631936, + "id_str": "449673851006631936", + "text": "@Talen_Lee I’m really emotional for no reason this afternoon and unreasonably upset at this", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 449673585989140480, + "in_reply_to_status_id_str": "449673585989140480", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Mar 28 22:24:01 +0000 2014", + "id": 449673288227512320, + "id_str": "449673288227512320", + "text": "@Talen_Lee no. The month dies as I am born.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 449672474712481793, + "in_reply_to_status_id_str": "449672474712481793", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Mar 28 22:13:01 +0000 2014", + "id": 449670523166154752, + "id_str": "449670523166154752", + "text": "Thank you, Twitter for iPhone, I will indeed join my friends to “tal…”. http://t.co/8B7la0s3XK", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 6, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri Mar 28 20:07:03 +0000 2014", + "id": 449638821349847040, + "id_str": "449638821349847040", + "text": "It’s almost my annual excuse to buy extremely expensive ice cream cake. I feel like I’m too old to be looking forward to that so much.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 6, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Mar 28 20:00:10 +0000 2014", + "id": 449637089509138432, + "id_str": "449637089509138432", + "text": "RT @csoghoian: Wow. An impressive change in policy re: email searches from Microsoft after criticism last week. Will Google follow? http://…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Fri Mar 28 19:06:28 +0000 2014", + "id": 449623572999581696, + "id_str": "449623572999581696", + "text": "Wow. An impressive change in policy re: email searches from Microsoft after criticism last week. Will Google follow? http://t.co/UPyklh0TFP", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 14669471, + "id_str": "14669471" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 162, + "favorite_count": 56, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/UPyklh0TFP", + "expanded_url": "http://blogs.technet.com/b/microsoft_on_the_issues/archive/2014/03/28/we-re-listening-additional-steps-to-protect-your-privacy.aspx", + "display_url": "blogs.technet.com/b/microsoft_on…", + "indices": [ + 117, + 139 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 162, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri Mar 28 19:56:04 +0000 2014", + "id": 449636056678547456, + "id_str": "449636056678547456", + "text": "@PandaPhDminus simple black firefighting type. But it came from the Lego store down the street anyway", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 449635865455648768, + "in_reply_to_status_id_str": "449635865455648768", + "in_reply_to_user_id": 1862395758, + "in_reply_to_user_id_str": "1862395758", + "in_reply_to_screen_name": "PandaPhDminus", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Mar 28 19:46:22 +0000 2014", + "id": 449633614264008704, + "id_str": "449633614264008704", + "text": "@demize95 @TheDaveCA I am <s>evil</s> great because I choose to be. W I L L P O W E R", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 449633130190995456, + "in_reply_to_status_id_str": "449633130190995456", + "in_reply_to_user_id": 137133048, + "in_reply_to_user_id_str": "137133048", + "in_reply_to_screen_name": "demize95", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Mar 28 19:43:53 +0000 2014", + "id": 449632990394847232, + "id_str": "449632990394847232", + "text": "@TheDaveCA @demize95 I strongly opine that intelligence is 90% being given both the opportunity and the motivation to develop it.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 449632442341535744, + "in_reply_to_status_id_str": "449632442341535744", + "in_reply_to_user_id": 50187291, + "in_reply_to_user_id_str": "50187291", + "in_reply_to_screen_name": "TheDaveCA", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Mar 28 19:37:50 +0000 2014", + "id": 449631468621660161, + "id_str": "449631468621660161", + "text": "@zhuowei k!", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 449630884421857280, + "in_reply_to_status_id_str": "449630884421857280", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Fri Mar 28 19:34:34 +0000 2014", + "id": 449630644789051392, + "id_str": "449630644789051392", + "text": "@zhuowei btw, did you see that I finished the draft of the new bit with Rashk and Vahagn", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 449626122180124672, + "in_reply_to_status_id_str": "449626122180124672", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Mar 28 19:23:48 +0000 2014", + "id": 449627935914590208, + "id_str": "449627935914590208", + "text": "@argonblue of all the bad things I can say about the federal government, I can’t say I’ve ever seen them use low-quality printers for forms", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 449627629541687298, + "in_reply_to_status_id_str": "449627629541687298", + "in_reply_to_user_id": 87619724, + "in_reply_to_user_id_str": "87619724", + "in_reply_to_screen_name": "argonblue", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Mar 28 19:20:56 +0000 2014", + "id": 449627216750866432, + "id_str": "449627216750866432", + "text": "@argonblue the context is paper and only paper", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 449627135180017664, + "in_reply_to_status_id_str": "449627135180017664", + "in_reply_to_user_id": 87619724, + "in_reply_to_user_id_str": "87619724", + "in_reply_to_screen_name": "argonblue", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Mar 28 19:16:56 +0000 2014", + "id": 449626208465321985, + "id_str": "449626208465321985", + "text": "@zhuowei hissss", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 449626122180124672, + "in_reply_to_status_id_str": "449626122180124672", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "tl" + }, + { + "created_at": "Fri Mar 28 19:14:37 +0000 2014", + "id": 449625627130613760, + "id_str": "449625627130613760", + "text": "In this RT: absolutely, completely 100% in favor of the government banning Times New Roman for Garamond.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 7, + "favorite_count": 9, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Mar 28 19:14:09 +0000 2014", + "id": 449625510218571777, + "id_str": "449625510218571777", + "text": "RT @DynamicWebPaige: Teen to government: Change your typeface, save millions http://t.co/Y1iKKAcpyb", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Fri Mar 28 18:29:42 +0000 2014", + "id": 449614323766161408, + "id_str": "449614323766161408", + "text": "Teen to government: Change your typeface, save millions http://t.co/Y1iKKAcpyb", + "source": "Tweet Button", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 18104734, + "id_str": "18104734" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 34, + "favorite_count": 7, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/Y1iKKAcpyb", + "expanded_url": "http://www.cnn.com/2014/03/27/living/student-money-saving-typeface-garamond-schools/index.html?sr=sharebar_twitter", + "display_url": "cnn.com/2014/03/27/liv…", + "indices": [ + 56, + 78 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 34, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri Mar 28 18:59:18 +0000 2014", + "id": 449621772019986432, + "id_str": "449621772019986432", + "text": "@Kufat recommendations, news, other.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 449621621884862464, + "in_reply_to_status_id_str": "449621621884862464", + "in_reply_to_user_id": 207691003, + "in_reply_to_user_id_str": "207691003", + "in_reply_to_screen_name": "Kufat", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Mar 28 18:58:02 +0000 2014", + "id": 449621454431461376, + "id_str": "449621454431461376", + "text": "RT @csoghoian: The FTC busted two companies for not validating SSL certs in their apps. The FTC has come a long way in a short time. http:/…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Fri Mar 28 16:27:00 +0000 2014", + "id": 449583445640216576, + "id_str": "449583445640216576", + "text": "The FTC busted two companies for not validating SSL certs in their apps. The FTC has come a long way in a short time. http://t.co/7nmsnpLIiS", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 14669471, + "id_str": "14669471" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 72, + "favorite_count": 41, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/7nmsnpLIiS", + "expanded_url": "http://www.ftc.gov/news-events/press-releases/2014/03/fandango-credit-karma-settle-ftc-charges-they-deceived-consumers", + "display_url": "ftc.gov/news-events/pr…", + "indices": [ + 118, + 140 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 72, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri Mar 28 18:57:03 +0000 2014", + "id": 449621204450951168, + "id_str": "449621204450951168", + "text": "Determined that the “x and y are talking about z!” alert is not generated by “recommendations.” Toggling “news” next", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 5, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Mar 28 18:52:29 +0000 2014", + "id": 449620054473474050, + "id_str": "449620054473474050", + "text": "@NSACareers @mikko well… it’s not rot13…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 445541450932314112, + "in_reply_to_status_id_str": "445541450932314112", + "in_reply_to_user_id": 54182567, + "in_reply_to_user_id_str": "54182567", + "in_reply_to_screen_name": "NSACareers", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Mar 28 18:46:20 +0000 2014", + "id": 449618509262098432, + "id_str": "449618509262098432", + "text": "@Talen_Lee but brand engagement is the secret of my power", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 449565970848165888, + "in_reply_to_status_id_str": "449565970848165888", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Mar 28 18:14:52 +0000 2014", + "id": 449610587455373312, + "id_str": "449610587455373312", + "text": "@m1sp thunk. Probably needs substantial editing. https://t.co/tz4onctsOX", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri Mar 28 16:27:48 +0000 2014", + "id": 449583643456200704, + "id_str": "449583643456200704", + "text": "@m1sp while Rashk comes across as empty due to shameless honesty, I think Varodahn comes across more like a maze of mirrors", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 449580047909662720, + "in_reply_to_status_id_str": "449580047909662720", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Mar 28 16:20:02 +0000 2014", + "id": 449581689623568385, + "id_str": "449581689623568385", + "text": "@lazarus7 as an ex-crazy-puritan, I'm afraid that crazy puritans actually pay really close attention to marriage -> baby dates.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 449581411507253248, + "in_reply_to_status_id_str": "449581411507253248", + "in_reply_to_user_id": 16579588, + "in_reply_to_user_id_str": "16579588", + "in_reply_to_screen_name": "lazarus7", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Mar 28 16:16:59 +0000 2014", + "id": 449580922221121537, + "id_str": "449580922221121537", + "text": "@gewt @m1sp anyway the digital version is going free in a month, with a few edits based on feedback.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 449580532112711680, + "in_reply_to_status_id_str": "449580532112711680", + "in_reply_to_user_id": 18125825, + "in_reply_to_user_id_str": "18125825", + "in_reply_to_screen_name": "gewt", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Mar 28 16:16:33 +0000 2014", + "id": 449580815442526208, + "id_str": "449580815442526208", + "text": "@gewt @m1sp you get a one-off light show if you get the magic power, but I'm afraid there is no Moon Crystal Power", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 449580532112711680, + "in_reply_to_status_id_str": "449580532112711680", + "in_reply_to_user_id": 18125825, + "in_reply_to_user_id_str": "18125825", + "in_reply_to_screen_name": "gewt", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Mar 28 16:15:07 +0000 2014", + "id": 449580452521988096, + "id_str": "449580452521988096", + "text": "@lazarus7 this is the motivating thing, but, like, are they also planning on concealing the existence of an awfully quick-born baby?", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 449580183612190720, + "in_reply_to_status_id_str": "449580183612190720", + "in_reply_to_user_id": 16579588, + "in_reply_to_user_id_str": "16579588", + "in_reply_to_screen_name": "lazarus7", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Mar 28 16:14:24 +0000 2014", + "id": 449580271659393024, + "id_str": "449580271659393024", + "text": "@gewt @m1sp a bunch of gay teens (and a token straight or two) in a world where only a few specific people have magic powers. Drama ensues", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 449579864329170944, + "in_reply_to_status_id_str": "449579864329170944", + "in_reply_to_user_id": 18125825, + "in_reply_to_user_id_str": "18125825", + "in_reply_to_screen_name": "gewt", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Mar 28 16:11:25 +0000 2014", + "id": 449579520270794752, + "id_str": "449579520270794752", + "text": "@gewt @m1sp oh, you should read the book, Vahagn is the evil uncle of one of the protagonists :)", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 449579256738111490, + "in_reply_to_status_id_str": "449579256738111490", + "in_reply_to_user_id": 18125825, + "in_reply_to_user_id_str": "18125825", + "in_reply_to_screen_name": "gewt", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Mar 28 16:09:19 +0000 2014", + "id": 449578992551464960, + "id_str": "449578992551464960", + "text": "@gewt @m1sp come here for a big vahug from your evil uncle", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 449578893834342400, + "in_reply_to_status_id_str": "449578893834342400", + "in_reply_to_user_id": 18125825, + "in_reply_to_user_id_str": "18125825", + "in_reply_to_screen_name": "gewt", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Mar 28 16:07:30 +0000 2014", + "id": 449578536865521664, + "id_str": "449578536865521664", + "text": "@m1sp still working on the ending, so here's another sample http://t.co/rAbfgZpK3e", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri Mar 28 15:27:29 +0000 2014", + "id": 449568466790797312, + "id_str": "449568466790797312", + "text": "@0xcharlie @rantyben aaaand now I know what happens when one is tagged.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 449568329577926656, + "in_reply_to_status_id_str": "449568329577926656", + "in_reply_to_user_id": 65845659, + "in_reply_to_user_id_str": "65845659", + "in_reply_to_screen_name": "0xcharlie", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Mar 28 15:13:15 +0000 2014", + "id": 449564885912145920, + "id_str": "449564885912145920", + "text": "@shellbryson yes, but I'm afraid I can't vouch whether the UK office has one.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 449564688222023680, + "in_reply_to_status_id_str": "449564688222023680", + "in_reply_to_user_id": 16638757, + "in_reply_to_user_id_str": "16638757", + "in_reply_to_screen_name": "shellbryson", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Mar 28 14:58:41 +0000 2014", + "id": 449561217833897984, + "id_str": "449561217833897984", + "text": "@m1sp actually one of his lines is “a good theory, but it just so happens I am never wrong” \n\n(Even as he’s about to be Not Even Wrong)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 449560844494307329, + "in_reply_to_status_id_str": "449560844494307329", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Mar 28 14:53:03 +0000 2014", + "id": 449559801132220417, + "id_str": "449559801132220417", + "text": "I’ve been lying to a habit tracker app every day for weeks because I found a beneficial bug and I feel entitled to exploit it", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 15, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Mar 28 14:47:53 +0000 2014", + "id": 449558498343669760, + "id_str": "449558498343669760", + "text": "… it was probably someone’s visiting child. Sigh, oh well. Maybe the axe will turn up in the communal Lego bin", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Mar 28 14:43:44 +0000 2014", + "id": 449557455824232448, + "id_str": "449557455824232448", + "text": "Hey, could whoever was in my cube messing with my dolls and figurines KINDLY return the missing Lego axe the minifig was holding?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Mar 28 14:27:27 +0000 2014", + "id": 449553358287015937, + "id_str": "449553358287015937", + "text": "@m1sp aww. What if I send you new Rashk writing?", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 449553027410587648, + "in_reply_to_status_id_str": "449553027410587648", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Mar 28 14:20:15 +0000 2014", + "id": 449551544317657088, + "id_str": "449551544317657088", + "text": "@Mordicant well if you weren't kidding they'd still know in about three months", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 449550754978603008, + "in_reply_to_status_id_str": "449550754978603008", + "in_reply_to_user_id": 21220563, + "in_reply_to_user_id_str": "21220563", + "in_reply_to_screen_name": "Mordicant", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Mar 28 14:19:14 +0000 2014", + "id": 449551290004406272, + "id_str": "449551290004406272", + "text": "@demize95 oh I want a kid real bad. But she will be adopted, when I'm ready.", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 449551060894777344, + "in_reply_to_status_id_str": "449551060894777344", + "in_reply_to_user_id": 137133048, + "in_reply_to_user_id_str": "137133048", + "in_reply_to_screen_name": "demize95", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Mar 28 14:16:57 +0000 2014", + "id": 449550715489632256, + "id_str": "449550715489632256", + "text": ".@demize95 gods dangit demize I am *not* pregnant, now or ever", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 449550560941703168, + "in_reply_to_status_id_str": "449550560941703168", + "in_reply_to_user_id": 137133048, + "in_reply_to_user_id_str": "137133048", + "in_reply_to_screen_name": "demize95", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 9, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Mar 28 14:15:30 +0000 2014", + "id": 449550349033299968, + "id_str": "449550349033299968", + "text": "Subtweeting IRL: what is even the point of trying to hide you’re already x > 2 months pregnant from your relatives at your wedding", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Mar 28 13:57:03 +0000 2014", + "id": 449545707197059072, + "id_str": "449545707197059072", + "text": "@Talen_Lee … oh my gods this is terrible", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 449530110761115650, + "in_reply_to_status_id_str": "449530110761115650", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Mar 28 13:55:13 +0000 2014", + "id": 449545247006400512, + "id_str": "449545247006400512", + "text": "@homakov how to tell you this… well see you have one of those things, but…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 449524332432093186, + "in_reply_to_status_id_str": "449524332432093186", + "in_reply_to_user_id": 86890115, + "in_reply_to_user_id_str": "86890115", + "in_reply_to_screen_name": "homakov", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Mar 28 13:52:40 +0000 2014", + "id": 449544603776344064, + "id_str": "449544603776344064", + "text": "@landley :<", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 449491197329817601, + "in_reply_to_status_id_str": "449491197329817601", + "in_reply_to_user_id": 14326287, + "in_reply_to_user_id_str": "14326287", + "in_reply_to_screen_name": "landley", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "vi" + }, + { + "created_at": "Fri Mar 28 13:50:08 +0000 2014", + "id": 449543967710117889, + "id_str": "449543967710117889", + "text": "@miaubiz pretty sure you can un-retweet and re-retweet something", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 449509439998263296, + "in_reply_to_status_id_str": "449509439998263296", + "in_reply_to_user_id": 30510723, + "in_reply_to_user_id_str": "30510723", + "in_reply_to_screen_name": "miaubiz", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Mar 28 13:40:15 +0000 2014", + "id": 449541478281674752, + "id_str": "449541478281674752", + "text": "@m1sp you’re here! ^.^", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 449443107809935360, + "in_reply_to_status_id_str": "449443107809935360", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Mar 28 13:33:53 +0000 2014", + "id": 449539879396179968, + "id_str": "449539879396179968", + "text": "RT @thezeist: Why doesn’t GCC optimize a*a*a*a*a*a to (a*a*a)*(a*a*a)? http://t.co/FQt9UxE0UA", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Fri Mar 28 05:53:15 +0000 2014", + "id": 449423956165287936, + "id_str": "449423956165287936", + "text": "Why doesn’t GCC optimize a*a*a*a*a*a to (a*a*a)*(a*a*a)? http://t.co/FQt9UxE0UA", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 100964199, + "id_str": "100964199" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 32, + "favorite_count": 25, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/FQt9UxE0UA", + "expanded_url": "http://stackoverflow.com/questions/6430448/why-doesnt-gcc-optimize-aaaaaa-to-aaaaaa", + "display_url": "stackoverflow.com/questions/6430…", + "indices": [ + 57, + 79 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 32, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Fri Mar 28 04:16:39 +0000 2014", + "id": 449399646461648897, + "id_str": "449399646461648897", + "text": "@yaakov_h ... which email?", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 449395930651832320, + "in_reply_to_status_id_str": "449395930651832320", + "in_reply_to_user_id": 91762941, + "in_reply_to_user_id_str": "91762941", + "in_reply_to_screen_name": "yaakov_h", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Mar 28 04:00:36 +0000 2014", + "id": 449395604155006976, + "id_str": "449395604155006976", + "text": "@yaakov_h that one is Keybase-generated. I opted into the full high-risk experience because I plan to poke at it", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 449394366713303041, + "in_reply_to_status_id_str": "449394366713303041", + "in_reply_to_user_id": 91762941, + "in_reply_to_user_id_str": "91762941", + "in_reply_to_screen_name": "yaakov_h", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Mar 28 01:54:26 +0000 2014", + "id": 449363853785440258, + "id_str": "449363853785440258", + "text": "@JackLScanlan check file system permissions on the folder where the images go", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 449344991521828865, + "in_reply_to_status_id_str": "449344991521828865", + "in_reply_to_user_id": 10342612, + "in_reply_to_user_id_str": "10342612", + "in_reply_to_screen_name": "JackLScanlan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Mar 28 01:53:29 +0000 2014", + "id": 449363616404619264, + "id_str": "449363616404619264", + "text": "RT @runasand: You can get the #Tor Browser Bundle for Windows via email by sending \"windows\" to gettor@gettor.torproject.org.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Thu Mar 27 18:46:12 +0000 2014", + "id": 449256087326556160, + "id_str": "449256087326556160", + "text": "You can get the #Tor Browser Bundle for Windows via email by sending \"windows\" to gettor@gettor.torproject.org.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 19959946, + "id_str": "19959946" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 167, + "favorite_count": 124, + "entities": { + "hashtags": [ + { + "text": "Tor", + "indices": [ + 16, + 20 + ] + } + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 167, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Mar 28 01:18:33 +0000 2014", + "id": 449354823939661824, + "id_str": "449354823939661824", + "text": "@judsontwit Scrivener for iOS is also my hope and my dream but I doubt they will ever ship it", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 449354277614399488, + "in_reply_to_status_id_str": "449354277614399488", + "in_reply_to_user_id": 122836159, + "in_reply_to_user_id_str": "122836159", + "in_reply_to_screen_name": "judsontwit", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Fri Mar 28 01:15:40 +0000 2014", + "id": 449354097993732096, + "id_str": "449354097993732096", + "text": "@judsontwit Keep trying it. Keep not being satisfied.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 449353843692683265, + "in_reply_to_status_id_str": "449353843692683265", + "in_reply_to_user_id": 122836159, + "in_reply_to_user_id_str": "122836159", + "in_reply_to_screen_name": "judsontwit", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Mar 27 22:47:47 +0000 2014", + "id": 449316882353758208, + "id_str": "449316882353758208", + "text": "@hypatiadotca ... would I look good with pink hair IRL? Probably not. When it's this long and fluffy I'd look like a neon cloud.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 449314230668234752, + "in_reply_to_status_id_str": "449314230668234752", + "in_reply_to_user_id": 6742522, + "in_reply_to_user_id_str": "6742522", + "in_reply_to_screen_name": "hypatiadotca", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Mar 27 22:46:49 +0000 2014", + "id": 449316639713263616, + "id_str": "449316639713263616", + "text": "@hypatiadotca and I didn't even have to dye my hair...", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 449314230668234752, + "in_reply_to_status_id_str": "449314230668234752", + "in_reply_to_user_id": 6742522, + "in_reply_to_user_id_str": "6742522", + "in_reply_to_screen_name": "hypatiadotca", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Mar 27 22:29:09 +0000 2014", + "id": 449312195474894849, + "id_str": "449312195474894849", + "text": "@hypatiadotca I have successfully co-opted the color pink as my personal brand in this industry. Sorry. https://t.co/OrdViqn6BT", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 6742522, + "in_reply_to_user_id_str": "6742522", + "in_reply_to_screen_name": "hypatiadotca", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu Mar 27 22:27:55 +0000 2014", + "id": 449311883871649792, + "id_str": "449311883871649792", + "text": "It looks like Textilus has updated a few times since I last tried it so I’m going to see if it’s any closer to my Dream iPad Word Processor", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Mar 27 22:25:27 +0000 2014", + "id": 449311263005614081, + "id_str": "449311263005614081", + "text": "RT @enneff: ~@Google made this video some time ago and showed it to its employees, and I'm glad to see it's now public: http://t.co/O4Lwwyy…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Thu Mar 27 22:00:43 +0000 2014", + "id": 449305038091845633, + "id_str": "449305038091845633", + "text": "~@Google made this video some time ago and showed it to its employees, and I'm glad to see it's now public: http://t.co/O4Lwwyyxy2", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 14309166, + "id_str": "14309166" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 77, + "favorite_count": 76, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/O4Lwwyyxy2", + "expanded_url": "http://www.youtube.com/watch?v=MeKKHxcJfh0", + "display_url": "youtube.com/watch?v=MeKKHx…", + "indices": [ + 108, + 130 + ] + } + ], + "user_mentions": [ + { + "screen_name": "google", + "name": "A Googler", + "id": 20536157, + "id_str": "20536157", + "indices": [ + 1, + 8 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 77, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu Mar 27 22:15:20 +0000 2014", + "id": 449308714903035904, + "id_str": "449308714903035904", + "text": "@chort0 @McGrewSecurity I’ve never heard a gentoo user ask for the ability to compile https support out of Linux !", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 449308577270738944, + "in_reply_to_status_id_str": "449308577270738944", + "in_reply_to_user_id": 25519088, + "in_reply_to_user_id_str": "25519088", + "in_reply_to_screen_name": "chort0", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Mar 27 22:14:44 +0000 2014", + "id": 449308567028629504, + "id_str": "449308567028629504", + "text": "@DaveAtErrata @spacerog nothing scandalous about it! But I reckon he blacked out and doesn’t remember anyway", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 449308279114842113, + "in_reply_to_status_id_str": "449308279114842113", + "in_reply_to_user_id": 15817736, + "in_reply_to_user_id_str": "15817736", + "in_reply_to_screen_name": "DaveAtErrata", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Mar 27 22:12:02 +0000 2014", + "id": 449307885320028160, + "id_str": "449307885320028160", + "text": "@spacerog when you started pulling young women aside in casinos to lecture them about the industry :)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 449300779707666432, + "in_reply_to_status_id_str": "449300779707666432", + "in_reply_to_user_id": 14133061, + "in_reply_to_user_id_str": "14133061", + "in_reply_to_screen_name": "spacerog", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Mar 27 22:09:54 +0000 2014", + "id": 449307351494193152, + "id_str": "449307351494193152", + "text": "@WhiteMageSlave btw if you want to purge things that add themselves to startup and slow down the machine, http://t.co/hr5ZUmsabL", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 90791634, + "in_reply_to_user_id_str": "90791634", + "in_reply_to_screen_name": "WhiteMageSlave", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu Mar 27 22:08:48 +0000 2014", + "id": 449307073961275393, + "id_str": "449307073961275393", + "text": "@puellavulnerata they are foreign chemical companies hoping to happen across an industrial email and undercut their current supplier", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 449297144457871360, + "in_reply_to_status_id_str": "449297144457871360", + "in_reply_to_user_id": 54666727, + "in_reply_to_user_id_str": "54666727", + "in_reply_to_screen_name": "puellavulnerata", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Mar 27 22:05:10 +0000 2014", + "id": 449306158793494528, + "id_str": "449306158793494528", + "text": "RT @zeroday: the only way @rmitch article could be more wrong is if he claimed forced HTTPS causes autism.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Thu Mar 27 20:55:42 +0000 2014", + "id": 449288677769101312, + "id_str": "449288677769101312", + "text": "the only way @rmitch article could be more wrong is if he claimed forced HTTPS causes autism.", + "source": "Twitter for Android", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2248551, + "id_str": "2248551" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 35, + "favorite_count": 29, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "rmitch", + "name": "Robert L. Mitchell", + "id": 14752373, + "id_str": "14752373", + "indices": [ + 13, + 20 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 35, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Mar 27 22:04:14 +0000 2014", + "id": 449305921291042816, + "id_str": "449305921291042816", + "text": "@WhiteMageSlave but there should be options buried in right-click menus to terminate with extreme prejudice", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 449305520734617601, + "in_reply_to_status_id_str": "449305520734617601", + "in_reply_to_user_id": 90791634, + "in_reply_to_user_id_str": "90791634", + "in_reply_to_screen_name": "WhiteMageSlave", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Mar 27 22:03:43 +0000 2014", + "id": 449305793108918273, + "id_str": "449305793108918273", + "text": "@WhiteMageSlave yes, it’s the “better” one they don’t ship with the OS because it’s too complicated for most people", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 449305520734617601, + "in_reply_to_status_id_str": "449305520734617601", + "in_reply_to_user_id": 90791634, + "in_reply_to_user_id_str": "90791634", + "in_reply_to_screen_name": "WhiteMageSlave", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Mar 27 22:00:47 +0000 2014", + "id": 449305053606969344, + "id_str": "449305053606969344", + "text": "@WhiteMageSlave try Microsoft’s secret hacker mode process manager http://t.co/2wdW2WBrHi", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 449304727134953472, + "in_reply_to_status_id_str": "449304727134953472", + "in_reply_to_user_id": 90791634, + "in_reply_to_user_id_str": "90791634", + "in_reply_to_screen_name": "WhiteMageSlave", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "da" + }, + { + "created_at": "Thu Mar 27 21:59:33 +0000 2014", + "id": 449304744969109504, + "id_str": "449304744969109504", + "text": "@WhiteMageSlave @Shufflejoy this… only partially answers my question !", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 449304517180665856, + "in_reply_to_status_id_str": "449304517180665856", + "in_reply_to_user_id": 90791634, + "in_reply_to_user_id_str": "90791634", + "in_reply_to_screen_name": "WhiteMageSlave", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Mar 27 21:58:46 +0000 2014", + "id": 449304547669053440, + "id_str": "449304547669053440", + "text": "@mattsta now that’s building a brand.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 449304279627890688, + "in_reply_to_status_id_str": "449304279627890688", + "in_reply_to_user_id": 14825696, + "in_reply_to_user_id_str": "14825696", + "in_reply_to_screen_name": "mattsta", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Mar 27 21:47:28 +0000 2014", + "id": 449301705755463680, + "id_str": "449301705755463680", + "text": "@McGrewSecurity people who are the textbook example of Dunning-Kruger effect may wish to turn off this basic safety feature…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 449273092289097728, + "in_reply_to_status_id_str": "449273092289097728", + "in_reply_to_user_id": 13275122, + "in_reply_to_user_id_str": "13275122", + "in_reply_to_screen_name": "McGrewSecurity", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 5, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Mar 27 21:43:28 +0000 2014", + "id": 449300697159598081, + "id_str": "449300697159598081", + "text": ".@Beaker @Jolly this is easily the stupidest thing I’ve seen on the internet all week… and I read comments on reddit!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 449267826851733507, + "in_reply_to_status_id_str": "449267826851733507", + "in_reply_to_user_id": 3244801, + "in_reply_to_user_id_str": "3244801", + "in_reply_to_screen_name": "Beaker", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Mar 27 21:37:29 +0000 2014", + "id": 449299193266704385, + "id_str": "449299193266704385", + "text": "@yProd behold my look of disapproval for databases that refresh on a scale of hours ಠ_ಠ", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 449298960839360513, + "in_reply_to_status_id_str": "449298960839360513", + "in_reply_to_user_id": 97016700, + "in_reply_to_user_id_str": "97016700", + "in_reply_to_screen_name": "yProd", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Mar 27 21:34:42 +0000 2014", + "id": 449298490544627712, + "id_str": "449298490544627712", + "text": "@Shufflejoy did you… genetically splice two of my friends", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 449258685198393345, + "in_reply_to_status_id_str": "449258685198393345", + "in_reply_to_user_id": 1567524811, + "in_reply_to_user_id_str": "1567524811", + "in_reply_to_screen_name": "Shufflejoy", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Mar 27 21:34:19 +0000 2014", + "id": 449298394495074304, + "id_str": "449298394495074304", + "text": "@DarrenPMeyer but that means basically nothing to me therefore it’s 99.99% off the table.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 449298193516204033, + "in_reply_to_status_id_str": "449298193516204033", + "in_reply_to_user_id": 468928589, + "in_reply_to_user_id_str": "468928589", + "in_reply_to_screen_name": "DarrenPMeyer", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Mar 27 21:29:13 +0000 2014", + "id": 449297109234507776, + "id_str": "449297109234507776", + "text": "@miah_ does not meet the first requirement of meeting my needs", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 449296645847392257, + "in_reply_to_status_id_str": "449296645847392257", + "in_reply_to_user_id": 14260840, + "in_reply_to_user_id_str": "14260840", + "in_reply_to_screen_name": "miah_", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Mar 27 21:28:51 +0000 2014", + "id": 449297018662686720, + "id_str": "449297018662686720", + "text": "@MilkTheElephant for actually writing on iPad? No. Unbearably laggy. No auto-curl on my precious quote marks. Other barbarisms.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 449296514918391808, + "in_reply_to_status_id_str": "449296514918391808", + "in_reply_to_user_id": 452444064, + "in_reply_to_user_id_str": "452444064", + "in_reply_to_screen_name": "MilkTheElephant", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Mar 27 21:26:23 +0000 2014", + "id": 449296397997981697, + "id_str": "449296397997981697", + "text": "@blowdart anyway what I really want is Scrivener writ mobile", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 449295969427804160, + "in_reply_to_status_id_str": "449295969427804160", + "in_reply_to_user_id": 1847381, + "in_reply_to_user_id_str": "1847381", + "in_reply_to_screen_name": "blowdart", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Mar 27 21:25:23 +0000 2014", + "id": 449296147967148033, + "id_str": "449296147967148033", + "text": "@hinanawi_chan I do 90%+ of all computing on an iPad", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 449296013002416128, + "in_reply_to_status_id_str": "449296013002416128", + "in_reply_to_user_id": 2336014178, + "in_reply_to_user_id_str": "2336014178", + "in_reply_to_screen_name": "hinanawi_chan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Mar 27 21:25:06 +0000 2014", + "id": 449296075216932865, + "id_str": "449296075216932865", + "text": "@blowdart I wrote the last one in a year. Seven to go.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 449295969427804160, + "in_reply_to_status_id_str": "449295969427804160", + "in_reply_to_user_id": 1847381, + "in_reply_to_user_id_str": "1847381", + "in_reply_to_screen_name": "blowdart", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Mar 27 21:24:23 +0000 2014", + "id": 449295892886343680, + "id_str": "449295892886343680", + "text": "Also searching “Microsoft Word” in the App Store currently returns not the official app and lots of scammy things", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Mar 27 21:23:37 +0000 2014", + "id": 449295700728500224, + "id_str": "449295700728500224", + "text": "Gods, I want a word processor for iPad that meets my needs as a novelist. Oh, you have a suggestion? Oh, it literally has a $99.99/year IAP?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Mar 27 21:16:31 +0000 2014", + "id": 449293914990997505, + "id_str": "449293914990997505", + "text": "RT @8BitCreepyPasta: Pick a box. Its contents w͘i̸l̛l ḩel̕p̢ ́y͝ou http://t.co/GbmBfGyrnP", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Thu Mar 27 17:14:29 +0000 2014", + "id": 449233007136616448, + "id_str": "449233007136616448", + "text": "Pick a box. Its contents w͘i̸l̛l ḩel̕p̢ ́y͝ou http://t.co/GbmBfGyrnP", + "source": "TweetDeck", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 1694894137, + "id_str": "1694894137" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 18, + "favorite_count": 19, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ], + "media": [ + { + "id": 449233007044329472, + "id_str": "449233007044329472", + "indices": [ + 47, + 69 + ], + "media_url": "http://pbs.twimg.com/media/Bjv_Ci5CAAAwS3q.png", + "media_url_https": "https://pbs.twimg.com/media/Bjv_Ci5CAAAwS3q.png", + "url": "http://t.co/GbmBfGyrnP", + "display_url": "pic.twitter.com/GbmBfGyrnP", + "expanded_url": "http://twitter.com/8BitCreepyPasta/status/449233007136616448/photo/1", + "type": "photo", + "sizes": { + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 600, + "h": 563, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 319, + "resize": "fit" + }, + "large": { + "w": 768, + "h": 720, + "resize": "fit" + } + } + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 18, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu Mar 27 21:14:31 +0000 2014", + "id": 449293411049549826, + "id_str": "449293411049549826", + "text": "@mattsta @thegrugq doctor, it hurts when I use a hobbyist database at scale", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 449228256127238144, + "in_reply_to_status_id_str": "449228256127238144", + "in_reply_to_user_id": 14825696, + "in_reply_to_user_id_str": "14825696", + "in_reply_to_screen_name": "mattsta", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Mar 27 20:20:35 +0000 2014", + "id": 449279838604763136, + "id_str": "449279838604763136", + "text": "RT @eevee: hahahahaha. ebay japan generated passwords as hash(username + '123456'). http://t.co/CPoM1o8RMr /cc @0xabad1dea", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Thu Mar 27 20:19:16 +0000 2014", + "id": 449279509166972931, + "id_str": "449279509166972931", + "text": "hahahahaha. ebay japan generated passwords as hash(username + '123456'). http://t.co/CPoM1o8RMr /cc @0xabad1dea", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 14412937, + "id_str": "14412937" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 42, + "favorite_count": 13, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/CPoM1o8RMr", + "expanded_url": "http://www.itnews.com.au/News/377453,ebay-passwords-revealed-as-username123456.aspx", + "display_url": "itnews.com.au/News/377453,eb…", + "indices": [ + 75, + 97 + ] + } + ], + "user_mentions": [ + { + "screen_name": "0xabad1dea", + "name": "MeliSSL ", + "id": 126030998, + "id_str": "126030998", + "indices": [ + 103, + 114 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 42, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu Mar 27 20:00:22 +0000 2014", + "id": 449274752231026688, + "id_str": "449274752231026688", + "text": "@bradleymeck smartcards? not offhandedly sorry", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 449273312242176000, + "in_reply_to_status_id_str": "449273312242176000", + "in_reply_to_user_id": 15338477, + "in_reply_to_user_id_str": "15338477", + "in_reply_to_screen_name": "bradleymeck", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Mar 27 19:41:00 +0000 2014", + "id": 449269876189065216, + "id_str": "449269876189065216", + "text": "@zhuowei @m1sp ~ it is a mystery ~", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 449261976540041216, + "in_reply_to_status_id_str": "449261976540041216", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Mar 27 19:02:40 +0000 2014", + "id": 449260228975296512, + "id_str": "449260228975296512", + "text": "@zhuowei @m1sp no one knows what happened to it after the old crone bought it off her.", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 449259310552322048, + "in_reply_to_status_id_str": "449259310552322048", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Mar 27 18:54:14 +0000 2014", + "id": 449258108691701761, + "id_str": "449258108691701761", + "text": "@zhuowei @m1sp to the eyes themselves. Hmm.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 449257926264254464, + "in_reply_to_status_id_str": "449257926264254464", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Mar 27 18:48:12 +0000 2014", + "id": 449256591351906304, + "id_str": "449256591351906304", + "text": "@zhuowei @m1sp Vahagn's; when he washed up on Crazy Island he could see again.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 449255982007615488, + "in_reply_to_status_id_str": "449255982007615488", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Mar 27 18:42:59 +0000 2014", + "id": 449255277544497152, + "id_str": "449255277544497152", + "text": "@m1sp *whistles innocently* http://t.co/Gz44m2uFXM", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu Mar 27 17:53:09 +0000 2014", + "id": 449242734952722432, + "id_str": "449242734952722432", + "text": "@ClaudioDekker it was also a convenient opportunity to offhandedly mention to a few thousand single men I was married to a wookiee.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 449242578563907584, + "in_reply_to_status_id_str": "449242578563907584", + "in_reply_to_user_id": 78721809, + "in_reply_to_user_id_str": "78721809", + "in_reply_to_screen_name": "ClaudioDekker", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Mar 27 17:52:19 +0000 2014", + "id": 449242527682797568, + "id_str": "449242527682797568", + "text": "@ClaudioDekker that's my husband's favorite part :)", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 449241979864768512, + "in_reply_to_status_id_str": "449241979864768512", + "in_reply_to_user_id": 78721809, + "in_reply_to_user_id_str": "78721809", + "in_reply_to_screen_name": "ClaudioDekker", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Mar 27 17:21:33 +0000 2014", + "id": 449234782753660928, + "id_str": "449234782753660928", + "text": "@ClaudioDekker @hinanawi_chan !", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 449234665032126465, + "in_reply_to_status_id_str": "449234665032126465", + "in_reply_to_user_id": 78721809, + "in_reply_to_user_id_str": "78721809", + "in_reply_to_screen_name": "ClaudioDekker", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Thu Mar 27 17:13:52 +0000 2014", + "id": 449232848596529152, + "id_str": "449232848596529152", + "text": "@bloerwald the best part is that's an amazingly shoddy S to begin with", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 448415935926255618, + "in_reply_to_status_id_str": "448415935926255618", + "in_reply_to_user_id": 104207892, + "in_reply_to_user_id_str": "104207892", + "in_reply_to_screen_name": "bloerwald", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Mar 27 16:54:19 +0000 2014", + "id": 449227931601358848, + "id_str": "449227931601358848", + "text": "RT @bloerwald: SUCCESS: 26/26 (100%) Tests passed http://t.co/Eh4tzKgiQV", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue Mar 25 11:07:45 +0000 2014", + "id": 448415935926255618, + "id_str": "448415935926255618", + "text": "SUCCESS: 26/26 (100%) Tests passed http://t.co/Eh4tzKgiQV", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 104207892, + "id_str": "104207892" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2296, + "favorite_count": 1139, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ], + "media": [ + { + "id": 448415935934644224, + "id_str": "448415935934644224", + "indices": [ + 35, + 57 + ], + "media_url": "http://pbs.twimg.com/media/BjkX6v0CQAA4JNT.jpg", + "media_url_https": "https://pbs.twimg.com/media/BjkX6v0CQAA4JNT.jpg", + "url": "http://t.co/Eh4tzKgiQV", + "display_url": "pic.twitter.com/Eh4tzKgiQV", + "expanded_url": "http://twitter.com/bloerwald/status/448415935926255618/photo/1", + "type": "photo", + "sizes": { + "medium": { + "w": 600, + "h": 450, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 255, + "resize": "fit" + }, + "large": { + "w": 960, + "h": 720, + "resize": "fit" + } + } + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "it" + }, + "retweet_count": 2296, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "it" + }, + { + "created_at": "Thu Mar 27 16:24:25 +0000 2014", + "id": 449220404692127744, + "id_str": "449220404692127744", + "text": "@demize95 problem solved!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 449219798430277632, + "in_reply_to_status_id_str": "449219798430277632", + "in_reply_to_user_id": 137133048, + "in_reply_to_user_id_str": "137133048", + "in_reply_to_screen_name": "demize95", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "da" + }, + { + "created_at": "Thu Mar 27 16:22:43 +0000 2014", + "id": 449219979091935233, + "id_str": "449219979091935233", + "text": "RT @LettersOfNote: Deafblind author Helen Keller once \"heard\" the NY Symphony Orchestra on the radio then sent them a stunning letter: http…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Thu Mar 27 14:22:48 +0000 2014", + "id": 449189801640853504, + "id_str": "449189801640853504", + "text": "Deafblind author Helen Keller once \"heard\" the NY Symphony Orchestra on the radio then sent them a stunning letter: http://t.co/ETrnS8p9GI", + "source": "TweetDeck", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 72831048, + "id_str": "72831048" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 341, + "favorite_count": 230, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/ETrnS8p9GI", + "expanded_url": "http://bit.ly/1m8aNBT", + "display_url": "bit.ly/1m8aNBT", + "indices": [ + 116, + 138 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 341, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu Mar 27 15:53:42 +0000 2014", + "id": 449212674711486464, + "id_str": "449212674711486464", + "text": "@Talen_Lee typo http://t.co/ZVRuHrZVKE", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 449209704430837761, + "in_reply_to_status_id_str": "449209704430837761", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Thu Mar 27 15:34:14 +0000 2014", + "id": 449207777949675520, + "id_str": "449207777949675520", + "text": "@FredericJacobs @veorq ka-ching!\n\nFor the record, I was a minor and I was signing up for a video game beta.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 449207644205510657, + "in_reply_to_status_id_str": "449207644205510657", + "in_reply_to_user_id": 18018877, + "in_reply_to_user_id_str": "18018877", + "in_reply_to_screen_name": "FredericJacobs", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Mar 27 15:33:10 +0000 2014", + "id": 449207506209107968, + "id_str": "449207506209107968", + "text": "@FredericJacobs in that case, gender was encoded and it had to match the other things on the form", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 449205952042897409, + "in_reply_to_status_id_str": "449205952042897409", + "in_reply_to_user_id": 18018877, + "in_reply_to_user_id_str": "18018877", + "in_reply_to_screen_name": "FredericJacobs", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Mar 27 15:32:44 +0000 2014", + "id": 449207401234055169, + "id_str": "449207401234055169", + "text": "@FredericJacobs when I had this problem in South Korea I discovered they followed a certain simple format to easily forge", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 449205952042897409, + "in_reply_to_status_id_str": "449205952042897409", + "in_reply_to_user_id": 18018877, + "in_reply_to_user_id_str": "18018877", + "in_reply_to_screen_name": "FredericJacobs", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Mar 27 15:28:45 +0000 2014", + "id": 449206398199799809, + "id_str": "449206398199799809", + "text": "@flipzagging @sweis no, because I have to turn down most invitations right now due to being mostly unable to travel. Thank you though", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 449205309350100992, + "in_reply_to_status_id_str": "449205309350100992", + "in_reply_to_user_id": 633793, + "in_reply_to_user_id_str": "633793", + "in_reply_to_screen_name": "flipzagging", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Mar 27 14:59:38 +0000 2014", + "id": 449199069618270208, + "id_str": "449199069618270208", + "text": "RT @DarrenPMeyer: Money where my mouth is: tor bridge 54.196.246.159 // @TelecomixTurkey #TorBlockedInTurkey", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Thu Mar 27 14:54:38 +0000 2014", + "id": 449197812123590656, + "id_str": "449197812123590656", + "text": "Money where my mouth is: tor bridge 54.196.246.159 // @TelecomixTurkey #TorBlockedInTurkey", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 468928589, + "id_str": "468928589" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 13, + "favorite_count": 5, + "entities": { + "hashtags": [ + { + "text": "TorBlockedInTurkey", + "indices": [ + 71, + 90 + ] + } + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "TelecomixTurkey", + "name": "Telecomix Turkey", + "id": 1480638702, + "id_str": "1480638702", + "indices": [ + 54, + 70 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 13, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Mar 27 14:59:35 +0000 2014", + "id": 449199057739972608, + "id_str": "449199057739972608", + "text": "RT @DarrenPMeyer: Want to help users in Turkey circumvent censorship? Run a Tor bridge on EC2 https://t.co/aJBlJcAeJI follow @TelecomixTurk…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Thu Mar 27 14:53:29 +0000 2014", + "id": 449197520346836993, + "id_str": "449197520346836993", + "text": "Want to help users in Turkey circumvent censorship? Run a Tor bridge on EC2 https://t.co/aJBlJcAeJI follow @TelecomixTurkey", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 468928589, + "id_str": "468928589" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 41, + "favorite_count": 13, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "https://t.co/aJBlJcAeJI", + "expanded_url": "https://cloud.torproject.org/#get_started", + "display_url": "cloud.torproject.org/#get_started", + "indices": [ + 76, + 99 + ] + } + ], + "user_mentions": [ + { + "screen_name": "TelecomixTurkey", + "name": "Telecomix Turkey", + "id": 1480638702, + "id_str": "1480638702", + "indices": [ + 107, + 123 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 41, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu Mar 27 14:48:12 +0000 2014", + "id": 449196190727671808, + "id_str": "449196190727671808", + "text": "@demize95 not currently available outside of New England", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 449196073241018368, + "in_reply_to_status_id_str": "449196073241018368", + "in_reply_to_user_id": 137133048, + "in_reply_to_user_id_str": "137133048", + "in_reply_to_screen_name": "demize95", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Mar 27 14:45:30 +0000 2014", + "id": 449195512802332672, + "id_str": "449195512802332672", + "text": "@demize95 this is addressed on my website ;)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 449195430577180672, + "in_reply_to_status_id_str": "449195430577180672", + "in_reply_to_user_id": 137133048, + "in_reply_to_user_id_str": "137133048", + "in_reply_to_screen_name": "demize95", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Mar 27 14:45:18 +0000 2014", + "id": 449195461879283713, + "id_str": "449195461879283713", + "text": "RT @TelecomixTurkey: BOOM: YouTube is now \"legally\" blocked in Turkey.\n(checked on http://t.co/0lENEKMIgf)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Thu Mar 27 14:44:44 +0000 2014", + "id": 449195318362394624, + "id_str": "449195318362394624", + "text": "BOOM: YouTube is now \"legally\" blocked in Turkey.\n(checked on http://t.co/0lENEKMIgf)", + "source": "Twitter for Mac", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 1480638702, + "id_str": "1480638702" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 72, + "favorite_count": 7, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/0lENEKMIgf", + "expanded_url": "http://eekg.tib.gov.tr/", + "display_url": "eekg.tib.gov.tr", + "indices": [ + 62, + 84 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 72, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu Mar 27 14:42:55 +0000 2014", + "id": 449194863259832320, + "id_str": "449194863259832320", + "text": "@captcarl13 “isn’t this our best box art ever?” Featuring the knight, the barbarian, the sorcerer, and the prostitute with a sword", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 449194729318932480, + "in_reply_to_status_id_str": "449194729318932480", + "in_reply_to_user_id": 25856211, + "in_reply_to_user_id_str": "25856211", + "in_reply_to_screen_name": "captcarl13", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Mar 27 14:41:30 +0000 2014", + "id": 449194504206450688, + "id_str": "449194504206450688", + "text": "@ETPC1 \\o/", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 449194421146644480, + "in_reply_to_status_id_str": "449194421146644480", + "in_reply_to_user_id": 15986599, + "in_reply_to_user_id_str": "15986599", + "in_reply_to_screen_name": "ETPC1", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Thu Mar 27 14:40:04 +0000 2014", + "id": 449194143987036161, + "id_str": "449194143987036161", + "text": "Bless your hearts, fellow @ElderScrolls fans http://t.co/DhuDUWSRti", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 5, + "favorite_count": 5, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu Mar 27 14:37:32 +0000 2014", + "id": 449193505890791424, + "id_str": "449193505890791424", + "text": "Engaging with my favorite brands to let them know their artwork is featured on shameblogs for the well-armored man/nearly naked woman trope", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Mar 27 14:34:39 +0000 2014", + "id": 449192783610671105, + "id_str": "449192783610671105", + "text": "@Talen_Lee most programmers go through this phase, even for years.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 449192031110172674, + "in_reply_to_status_id_str": "449192031110172674", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Mar 27 14:34:08 +0000 2014", + "id": 449192650458288129, + "id_str": "449192650458288129", + "text": "@ElderScrolls it’s been featured on Escher Girls, so…. no. http://t.co/KfeXIOnwuw", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 449191940848754688, + "in_reply_to_status_id_str": "449191940848754688", + "in_reply_to_user_id": 113696592, + "in_reply_to_user_id_str": "113696592", + "in_reply_to_screen_name": "ElderScrolls", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu Mar 27 14:19:01 +0000 2014", + "id": 449188849642921984, + "id_str": "449188849642921984", + "text": "@Bethblog presents what? I answer THREE questions just to get the front page…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 449188161831198720, + "in_reply_to_status_id_str": "449188161831198720", + "in_reply_to_user_id": 23645599, + "in_reply_to_user_id_str": "23645599", + "in_reply_to_screen_name": "Bethblog", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Mar 27 13:49:35 +0000 2014", + "id": 449181441034055680, + "id_str": "449181441034055680", + "text": "RT @TelecomixTurkey: Here are some HTTPS mirror that should be working. \nhttps://t.co/9uZUJTFvEg\nhttps://t.co/uevzHYYcuT\n#TorBlockedInTurkey", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Thu Mar 27 10:18:51 +0000 2014", + "id": 449128407175929856, + "id_str": "449128407175929856", + "text": "Here are some HTTPS mirror that should be working. \nhttps://t.co/9uZUJTFvEg\nhttps://t.co/uevzHYYcuT\n#TorBlockedInTurkey", + "source": "Twitter for Mac", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 1480638702, + "id_str": "1480638702" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 73, + "favorite_count": 15, + "entities": { + "hashtags": [ + { + "text": "TorBlockedInTurkey", + "indices": [ + 100, + 119 + ] + } + ], + "symbols": [ + + ], + "urls": [ + { + "url": "https://t.co/9uZUJTFvEg", + "expanded_url": "https://tormirror.almnet.de/", + "display_url": "tormirror.almnet.de", + "indices": [ + 52, + 75 + ] + }, + { + "url": "https://t.co/uevzHYYcuT", + "expanded_url": "https://tor.spline.inf.fu-berlin.de/", + "display_url": "tor.spline.inf.fu-berlin.de", + "indices": [ + 76, + 99 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 73, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu Mar 27 13:49:32 +0000 2014", + "id": 449181426806956032, + "id_str": "449181426806956032", + "text": "RT @TelecomixTurkey: CONFIRMED: The Tor Project website is blocked at the DNS-level in Turkey on the largest ISP, TTNet.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Thu Mar 27 10:23:15 +0000 2014", + "id": 449129515038425088, + "id_str": "449129515038425088", + "text": "CONFIRMED: The Tor Project website is blocked at the DNS-level in Turkey on the largest ISP, TTNet.", + "source": "Twitter for Mac", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 1480638702, + "id_str": "1480638702" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 400, + "favorite_count": 51, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 400, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Mar 27 13:41:24 +0000 2014", + "id": 449179382650003457, + "id_str": "449179382650003457", + "text": "@m1sp @gewt aww.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 449108169982083072, + "in_reply_to_status_id_str": "449108169982083072", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Thu Mar 27 13:34:05 +0000 2014", + "id": 449177539052077056, + "id_str": "449177539052077056", + "text": "@WhiteMageSlave \\o/", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 449063590763720705, + "in_reply_to_status_id_str": "449063590763720705", + "in_reply_to_user_id": 90791634, + "in_reply_to_user_id_str": "90791634", + "in_reply_to_screen_name": "WhiteMageSlave", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Thu Mar 27 04:00:41 +0000 2014", + "id": 449033239605555200, + "id_str": "449033239605555200", + "text": "@eevee no his full name is Leader Dad Norman duh", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 449031811180396545, + "in_reply_to_status_id_str": "449031811180396545", + "in_reply_to_user_id": 14412937, + "in_reply_to_user_id_str": "14412937", + "in_reply_to_screen_name": "eevee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Mar 27 03:26:10 +0000 2014", + "id": 449024554753863680, + "id_str": "449024554753863680", + "text": "@qole I *totally* ship my own characters. Both canonically and otherwise.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 449024176980893696, + "in_reply_to_status_id_str": "449024176980893696", + "in_reply_to_user_id": 16121811, + "in_reply_to_user_id_str": "16121811", + "in_reply_to_screen_name": "qole", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Mar 27 02:37:48 +0000 2014", + "id": 449012379259768833, + "id_str": "449012379259768833", + "text": "RT @dangoodin001: Apps with millions of Google Play downloads covertly mine cryptocurrency http://t.co/RXijF1WFfn", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Thu Mar 27 02:36:02 +0000 2014", + "id": 449011934570889218, + "id_str": "449011934570889218", + "text": "Apps with millions of Google Play downloads covertly mine cryptocurrency http://t.co/RXijF1WFfn", + "source": "TweetDeck", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 14150736, + "id_str": "14150736" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 37, + "favorite_count": 18, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/RXijF1WFfn", + "expanded_url": "http://ars.to/1mvJMvt", + "display_url": "ars.to/1mvJMvt", + "indices": [ + 73, + 95 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 37, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu Mar 27 02:36:15 +0000 2014", + "id": 449011989839613952, + "id_str": "449011989839613952", + "text": "RT @kobunheat: Just to catch you up, Leland Yee is accused of telling an undercover agent he could help him smuggle ROCKET LAUNCHERS http:/…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Thu Mar 27 02:26:43 +0000 2014", + "id": 449009591200657409, + "id_str": "449009591200657409", + "text": "Just to catch you up, Leland Yee is accused of telling an undercover agent he could help him smuggle ROCKET LAUNCHERS http://t.co/jeiUACqYSt", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 11997592, + "id_str": "11997592" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 92, + "favorite_count": 29, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/jeiUACqYSt", + "expanded_url": "http://www.latimes.com/local/political/la-me-pc-leland-yee-gun-running-20140326,0,4778453.story#axzz2x2lfnYMp", + "display_url": "latimes.com/local/politica…", + "indices": [ + 118, + 140 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 92, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Thu Mar 27 01:45:52 +0000 2014", + "id": 448999309334577152, + "id_str": "448999309334577152", + "text": "@davidjayharris @ZachWeiner as a superheroine, I’m gonna have to joss this one. The source of my powers is white chocolate and peanut butter", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448998819477213184, + "in_reply_to_status_id_str": "448998819477213184", + "in_reply_to_user_id": 308065135, + "in_reply_to_user_id_str": "308065135", + "in_reply_to_screen_name": "davidjayharris", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Mar 27 01:39:42 +0000 2014", + "id": 448997758801043457, + "id_str": "448997758801043457", + "text": "@Talen_Lee but I just wrote three pages explaining exactly why, and it all fits and I’m pleased.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448997114987560960, + "in_reply_to_status_id_str": "448997114987560960", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Mar 27 01:38:52 +0000 2014", + "id": 448997548226019328, + "id_str": "448997548226019328", + "text": "@Talen_Lee “The Arcocellis are cooperating with Vahagn to place his nephew on a throne because…” Until tonight my answer was very vague", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448997114987560960, + "in_reply_to_status_id_str": "448997114987560960", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Mar 27 01:36:46 +0000 2014", + "id": 448997019538161664, + "id_str": "448997019538161664", + "text": "@Talen_Lee I knowingly leave huge blanks trusting that I’ll come up with something later", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448996750833876992, + "in_reply_to_status_id_str": "448996750833876992", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Mar 27 01:33:26 +0000 2014", + "id": 448996182732578816, + "id_str": "448996182732578816", + "text": "Sometimes the way I develop a plot feels like coming up with fan theories for unanswered questions in my own story", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Mar 27 01:10:00 +0000 2014", + "id": 448990286367453184, + "id_str": "448990286367453184", + "text": "@Talen_Lee hey remember when Cinderella wasn’t blonde", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448989717229367296, + "in_reply_to_status_id_str": "448989717229367296", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Mar 27 01:06:33 +0000 2014", + "id": 448989417219563520, + "id_str": "448989417219563520", + "text": "@Talen_Lee … I thought the barrette was a sword with a frilly hilt…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448989280568762369, + "in_reply_to_status_id_str": "448989280568762369", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Mar 27 01:04:37 +0000 2014", + "id": 448988930034368513, + "id_str": "448988930034368513", + "text": "@Talen_Lee THERE’S AN OFFICIAL @thegrugq PLUSHIE AHHHH", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448988513640271872, + "in_reply_to_status_id_str": "448988513640271872", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Mar 27 01:04:03 +0000 2014", + "id": 448988789130944512, + "id_str": "448988789130944512", + "text": "@m1sp and the best part is that it hinges on Rashk being *wrong*.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Mar 27 01:03:12 +0000 2014", + "id": 448988572696469504, + "id_str": "448988572696469504", + "text": "@m1sp I’m delighted. Finally came up with a cohesive theory for the Antaram throne conspiracy! ;)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Mar 27 01:01:45 +0000 2014", + "id": 448988209801072640, + "id_str": "448988209801072640", + "text": "@Talen_Lee #thatsmyfetish", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448987967759986688, + "in_reply_to_status_id_str": "448987967759986688", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Mar 27 00:58:39 +0000 2014", + "id": 448987427672428544, + "id_str": "448987427672428544", + "text": "RT @BostonFire: Killed was Firefighter Michael R. Kennedy of Ladder Company 15 on Boylston St. 33yo, a 6 1/2 yr veteran. Also Veteran USMC", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Thu Mar 27 00:49:05 +0000 2014", + "id": 448985022612398080, + "id_str": "448985022612398080", + "text": "Killed was Firefighter Michael R. Kennedy of Ladder Company 15 on Boylston St. 33yo, a 6 1/2 yr veteran. Also Veteran USMC", + "source": "Twitter for iPad", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 18943141, + "id_str": "18943141" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1081, + "favorite_count": 322, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 1081, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Mar 27 00:58:35 +0000 2014", + "id": 448987411868307457, + "id_str": "448987411868307457", + "text": "RT @BostonFire: Killed was Lt. Edward J. Walsh,Jr. assigned to Engine Company 33 on Boylston Street. 43 yo, a 9 1/2 year veteran.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Thu Mar 27 00:46:37 +0000 2014", + "id": 448984398923595776, + "id_str": "448984398923595776", + "text": "Killed was Lt. Edward J. Walsh,Jr. assigned to Engine Company 33 on Boylston Street. 43 yo, a 9 1/2 year veteran.", + "source": "Twitter for iPad", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 18943141, + "id_str": "18943141" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1038, + "favorite_count": 306, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 1038, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Mar 27 00:58:31 +0000 2014", + "id": 448987393212022784, + "id_str": "448987393212022784", + "text": "RT @BostonFire: The Boston Fire Commissioner regrets to announce the Line of Duty deaths of two Boston firefighters killed today.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Thu Mar 27 00:42:42 +0000 2014", + "id": 448983416827301888, + "id_str": "448983416827301888", + "text": "The Boston Fire Commissioner regrets to announce the Line of Duty deaths of two Boston firefighters killed today.", + "source": "Twitter for iPad", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 18943141, + "id_str": "18943141" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1234, + "favorite_count": 319, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 1234, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Mar 27 00:42:30 +0000 2014", + "id": 448983363983265793, + "id_str": "448983363983265793", + "text": "@innismir @cnnbrk unable to artwicuiate clearly on social media. It’s a serious condition.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448983048382849024, + "in_reply_to_status_id_str": "448983048382849024", + "in_reply_to_user_id": 14061445, + "in_reply_to_user_id_str": "14061445", + "in_reply_to_screen_name": "innismir", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Thu Mar 27 00:41:26 +0000 2014", + "id": 448983094411153408, + "id_str": "448983094411153408", + "text": "@Packetknife I can only assume she learned it from you, so apparently you’re *sassy*", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448982838415986688, + "in_reply_to_status_id_str": "448982838415986688", + "in_reply_to_user_id": 19564254, + "in_reply_to_user_id_str": "19564254", + "in_reply_to_screen_name": "Packetknife", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 23:19:34 +0000 2014", + "id": 448962494682648577, + "id_str": "448962494682648577", + "text": "@attritionorg he genuinely sounds… like the sort of thing it’s rude to speculate about", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448959931408871424, + "in_reply_to_status_id_str": "448959931408871424", + "in_reply_to_user_id": 32625798, + "in_reply_to_user_id_str": "32625798", + "in_reply_to_screen_name": "attritionorg", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 23:15:21 +0000 2014", + "id": 448961433414692864, + "id_str": "448961433414692864", + "text": "RT @attritionorg: Learn more about Nicholas Lemonias, our newest Asshat! (and plagiarist!?) http://t.co/6u0dI0gfHO", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Wed Mar 26 23:09:23 +0000 2014", + "id": 448959931408871424, + "id_str": "448959931408871424", + "text": "Learn more about Nicholas Lemonias, our newest Asshat! (and plagiarist!?) http://t.co/6u0dI0gfHO", + "source": "TweetDeck", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 32625798, + "id_str": "32625798" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 72, + "favorite_count": 25, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/6u0dI0gfHO", + "expanded_url": "http://bit.ly/cmAMeT", + "display_url": "bit.ly/cmAMeT", + "indices": [ + 74, + 96 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 72, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 23:11:25 +0000 2014", + "id": 448960441650540545, + "id_str": "448960441650540545", + "text": "@chronic @rxcs none of my many openly Muslim neighbors have violated anything on my rigorous watch. They mostly act… normal! Weird!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448959485181460480, + "in_reply_to_status_id_str": "448959485181460480", + "in_reply_to_user_id": 86315276, + "in_reply_to_user_id_str": "86315276", + "in_reply_to_screen_name": "chronic", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 23:09:49 +0000 2014", + "id": 448960039316111360, + "id_str": "448960039316111360", + "text": "@chronic gee, I wonder why I have him already blocked", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448959485181460480, + "in_reply_to_status_id_str": "448959485181460480", + "in_reply_to_user_id": 86315276, + "in_reply_to_user_id_str": "86315276", + "in_reply_to_screen_name": "chronic", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 22:56:52 +0000 2014", + "id": 448956780526456832, + "id_str": "448956780526456832", + "text": "@xkeepah it’s dangerous to go alone", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448955556988870656, + "in_reply_to_status_id_str": "448955556988870656", + "in_reply_to_user_id": 61653331, + "in_reply_to_user_id_str": "61653331", + "in_reply_to_screen_name": "xkeepah", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 22:44:08 +0000 2014", + "id": 448953578347315200, + "id_str": "448953578347315200", + "text": "@dawnisabel I’m not. I’m looking for the actual feature for testing purposes", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448952809891721216, + "in_reply_to_status_id_str": "448952809891721216", + "in_reply_to_user_id": 62819722, + "in_reply_to_user_id_str": "62819722", + "in_reply_to_screen_name": "dawnisabel", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 22:24:30 +0000 2014", + "id": 448948635343257600, + "id_str": "448948635343257600", + "text": "@a_girl_irl @Shufflejoy but this is my first sighting of “m’lady” in the non-parody wild", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448917140079276032, + "in_reply_to_status_id_str": "448917140079276032", + "in_reply_to_user_id": 255649487, + "in_reply_to_user_id_str": "255649487", + "in_reply_to_screen_name": "a_girl_irl", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 22:24:09 +0000 2014", + "id": 448948547631992832, + "id_str": "448948547631992832", + "text": "@a_girl_irl @Shufflejoy so many people have said that “you’re a dream woman” line to me over the same sort of thing", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448917140079276032, + "in_reply_to_status_id_str": "448917140079276032", + "in_reply_to_user_id": 255649487, + "in_reply_to_user_id_str": "255649487", + "in_reply_to_screen_name": "a_girl_irl", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 22:12:47 +0000 2014", + "id": 448945689096380416, + "id_str": "448945689096380416", + "text": "@J3_D1 D:", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448945633794482176, + "in_reply_to_status_id_str": "448945633794482176", + "in_reply_to_user_id": 634682675, + "in_reply_to_user_id_str": "634682675", + "in_reply_to_screen_name": "J3_D1", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Wed Mar 26 22:01:35 +0000 2014", + "id": 448942869756518400, + "id_str": "448942869756518400", + "text": "@J3_D1 which means they’re doing some sort of weird incremental rollout instead of just giving it to people as they install…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448942378133782529, + "in_reply_to_status_id_str": "448942378133782529", + "in_reply_to_user_id": 634682675, + "in_reply_to_user_id_str": "634682675", + "in_reply_to_screen_name": "J3_D1", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 22:01:02 +0000 2014", + "id": 448942728588828674, + "id_str": "448942728588828674", + "text": "@J3_D1 this is most assuredly what I have just installed on my phone but the feature is not there", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448942378133782529, + "in_reply_to_status_id_str": "448942378133782529", + "in_reply_to_user_id": 634682675, + "in_reply_to_user_id_str": "634682675", + "in_reply_to_screen_name": "J3_D1", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 21:59:50 +0000 2014", + "id": 448942426758336512, + "id_str": "448942426758336512", + "text": "@vogon yes", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448942299263664128, + "in_reply_to_status_id_str": "448942299263664128", + "in_reply_to_user_id": 6326912, + "in_reply_to_user_id_str": "6326912", + "in_reply_to_screen_name": "vogon", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Wed Mar 26 21:50:06 +0000 2014", + "id": 448939979629424640, + "id_str": "448939979629424640", + "text": "I can’t actually find the claimed “photo sharing improvements” in the new iPhone client", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 21:46:34 +0000 2014", + "id": 448939088755064832, + "id_str": "448939088755064832", + "text": "@gewt no I am practically quoting the news I RT’d", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448938990964469760, + "in_reply_to_status_id_str": "448938990964469760", + "in_reply_to_user_id": 18125825, + "in_reply_to_user_id_str": "18125825", + "in_reply_to_screen_name": "gewt", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 21:45:49 +0000 2014", + "id": 448938901630353408, + "id_str": "448938901630353408", + "text": "LOL apparently Erdogan sees the nefarious will of his shadowy nemesis YouTube behind the baffling free speech advocacy of Twitter.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 21:43:53 +0000 2014", + "id": 448938414583599105, + "id_str": "448938414583599105", + "text": "@attritionorg oh, that’d be just the worst!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448937954077995008, + "in_reply_to_status_id_str": "448937954077995008", + "in_reply_to_user_id": 32625798, + "in_reply_to_user_id_str": "32625798", + "in_reply_to_screen_name": "attritionorg", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 21:42:58 +0000 2014", + "id": 448938184345677824, + "id_str": "448938184345677824", + "text": "RT @fightfortheftr: Turkish Court Overturns Ban on Twitter (but government is stalling, can appeal, may delay for 30 days) http://t.co/cJH8…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Wed Mar 26 21:32:30 +0000 2014", + "id": 448935548699172864, + "id_str": "448935548699172864", + "text": "Turkish Court Overturns Ban on Twitter (but government is stalling, can appeal, may delay for 30 days) http://t.co/cJH8im9kOb", + "source": "Tweet Button", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 382376904, + "id_str": "382376904" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 15, + "favorite_count": 7, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/cJH8im9kOb", + "expanded_url": "http://nyti.ms/1hsivCQ", + "display_url": "nyti.ms/1hsivCQ", + "indices": [ + 103, + 125 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 15, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 21:38:49 +0000 2014", + "id": 448937140492451840, + "id_str": "448937140492451840", + "text": ".@chriseng bizarre; the iPhone one just updated too but it still says Retweet", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 448933108994547712, + "in_reply_to_status_id_str": "448933108994547712", + "in_reply_to_user_id": 13752192, + "in_reply_to_user_id_str": "13752192", + "in_reply_to_screen_name": "chriseng", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 21:38:20 +0000 2014", + "id": 448937016475287553, + "id_str": "448937016475287553", + "text": "RT @chriseng: The Twitter app for Android now says \"Share\" instead of \"Retweet\" and \"Comment\" instead of \"Quote\". For no good reason. #uira…", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Wed Mar 26 21:22:48 +0000 2014", + "id": 448933108994547712, + "id_str": "448933108994547712", + "text": "The Twitter app for Android now says \"Share\" instead of \"Retweet\" and \"Comment\" instead of \"Quote\". For no good reason. #uirage", + "source": "MetroTwit", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 13752192, + "id_str": "13752192" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 18, + "favorite_count": 6, + "entities": { + "hashtags": [ + { + "text": "uirage", + "indices": [ + 120, + 127 + ] + } + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 18, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 21:32:28 +0000 2014", + "id": 448935539497263104, + "id_str": "448935539497263104", + "text": "@mirell Legos", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448926364398141441, + "in_reply_to_status_id_str": "448926364398141441", + "in_reply_to_user_id": 12733992, + "in_reply_to_user_id_str": "12733992", + "in_reply_to_screen_name": "mirell", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "pt" + }, + { + "created_at": "Wed Mar 26 21:16:25 +0000 2014", + "id": 448931503423369216, + "id_str": "448931503423369216", + "text": "@HillaryMelville note this was *inside our house*", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 448930805495382016, + "in_reply_to_status_id_str": "448930805495382016", + "in_reply_to_user_id": 6732972, + "in_reply_to_user_id_str": "6732972", + "in_reply_to_screen_name": "HillaryMelville", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 21:11:30 +0000 2014", + "id": 448930266665730048, + "id_str": "448930266665730048", + "text": "@frkbmb this is also possible, as opposed to our \"it fell out of this lump of junk mail and we didn't notice\" theory", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 448930037564076033, + "in_reply_to_status_id_str": "448930037564076033", + "in_reply_to_user_id": 540721095, + "in_reply_to_user_id_str": "540721095", + "in_reply_to_screen_name": "frkbmb", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 21:10:25 +0000 2014", + "id": 448929994031767552, + "id_str": "448929994031767552", + "text": "Anyway for about ten seconds I thought my house was full of murder rapist thieves. Phew.", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 21:09:35 +0000 2014", + "id": 448929783624507392, + "id_str": "448929783624507392", + "text": "We know who lived here before we did so it'd have to be 2+ tenants ago or an apartment number error", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 21:07:35 +0000 2014", + "id": 448929279594999808, + "id_str": "448929279594999808", + "text": "@RenatoFontes I'm alive! Nobody here and none of our many many electronics are gone", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 448929034961825792, + "in_reply_to_status_id_str": "448929034961825792", + "in_reply_to_user_id": 14642355, + "in_reply_to_user_id_str": "14642355", + "in_reply_to_screen_name": "RenatoFontes", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 21:06:44 +0000 2014", + "id": 448929066247524352, + "id_str": "448929066247524352", + "text": "Concluded it was left in our mailbox and we dropped it on the floor bringing in mail. DH is going to the apt office to see if they can solve", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 21:04:53 +0000 2014", + "id": 448928600306511873, + "id_str": "448928600306511873", + "text": "Scare of my life: found someone else's wallet on the floor of our own house when we came home. And the ID card... has our address on it 1/2", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 20:39:14 +0000 2014", + "id": 448922146589663233, + "id_str": "448922146589663233", + "text": "In this RT: can’t wait to see this break tweetbot or something", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 20:38:29 +0000 2014", + "id": 448921957334286336, + "id_str": "448921957334286336", + "text": "RT @twitter: Photos are getting more social. We're unveiling two new features: photo tagging & adding up to 4 photos per Tweet: https://t.c…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Wed Mar 26 20:36:54 +0000 2014", + "id": 448921559172780032, + "id_str": "448921559172780032", + "text": "Photos are getting more social. We're unveiling two new features: photo tagging & adding up to 4 photos per Tweet: https://t.co/icJVBHrgwN", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 783214, + "id_str": "783214" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3327, + "favorite_count": 1706, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "https://t.co/icJVBHrgwN", + "expanded_url": "https://blog.twitter.com/2014/photos-just-got-more-social", + "display_url": "blog.twitter.com/2014/photos-ju…", + "indices": [ + 119, + 142 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 3327, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 20:30:21 +0000 2014", + "id": 448919909708627969, + "id_str": "448919909708627969", + "text": "RT @mcclure111: \"Get more out of Flappy Bird;select a gender\". This is something a multinational corporation actually just said to me http:…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Wed Mar 26 19:24:30 +0000 2014", + "id": 448903335303577600, + "id_str": "448903335303577600", + "text": "\"Get more out of Flappy Bird;select a gender\". This is something a multinational corporation actually just said to me http://t.co/PXOfRk9rPz", + "source": "Twitter for Android", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 312426579, + "id_str": "312426579" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 158, + "favorite_count": 94, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ], + "media": [ + { + "id": 448903334150164480, + "id_str": "448903334150164480", + "indices": [ + 118, + 140 + ], + "media_url": "http://pbs.twimg.com/media/BjrTNDqCUAACerq.jpg", + "media_url_https": "https://pbs.twimg.com/media/BjrTNDqCUAACerq.jpg", + "url": "http://t.co/PXOfRk9rPz", + "display_url": "pic.twitter.com/PXOfRk9rPz", + "expanded_url": "http://twitter.com/mcclure111/status/448903335303577600/photo/1", + "type": "photo", + "sizes": { + "small": { + "w": 340, + "h": 604, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 540, + "h": 960, + "resize": "fit" + }, + "medium": { + "w": 540, + "h": 960, + "resize": "fit" + } + } + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 158, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 20:19:19 +0000 2014", + "id": 448917131577819136, + "id_str": "448917131577819136", + "text": "@thegrugq @chriseng the wind here is terrible today :\\ stupid flames", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 448916162990981120, + "in_reply_to_status_id_str": "448916162990981120", + "in_reply_to_user_id": 18983429, + "in_reply_to_user_id_str": "18983429", + "in_reply_to_screen_name": "thegrugq", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 20:09:06 +0000 2014", + "id": 448914563011198976, + "id_str": "448914563011198976", + "text": "@focalintent @chriseng @Paucis__Verbis http://t.co/wyGUIcjKOJ", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448911628265070592, + "in_reply_to_status_id_str": "448911628265070592", + "in_reply_to_user_id": 8034552, + "in_reply_to_user_id_str": "8034552", + "in_reply_to_screen_name": "focalintent", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Wed Mar 26 20:07:42 +0000 2014", + "id": 448914210920349696, + "id_str": "448914210920349696", + "text": "RT @bostonpolice: #BPDTrafficAdvisory Beacon St closed from Arlington St to Mass Ave due to a building fire. Please seek alternate routes.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Wed Mar 26 19:59:55 +0000 2014", + "id": 448912249563144192, + "id_str": "448912249563144192", + "text": "#BPDTrafficAdvisory Beacon St closed from Arlington St to Mass Ave due to a building fire. Please seek alternate routes.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 19185333, + "id_str": "19185333" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 78, + "favorite_count": 6, + "entities": { + "hashtags": [ + { + "text": "BPDTrafficAdvisory", + "indices": [ + 0, + 19 + ] + } + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 78, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 19:36:40 +0000 2014", + "id": 448906397275926529, + "id_str": "448906397275926529", + "text": "I said I’d do some six-months-wiser editing of my manuscript for the first book.\n\n*opens document*\n\nOh my gods did I really write THIS MUCH", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 19:36:40 +0000 2014", + "id": 448906397275926529, + "id_str": "448906397275926529", + "text": "I said I’d do some six-months-wiser editing of my manuscript for the first book.\n\n*opens document*\n\nOh my gods did I really write THIS MUCH", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 19:31:57 +0000 2014", + "id": 448905213509120000, + "id_str": "448905213509120000", + "text": "Check @chriseng timeline for live tweet of Boston Bombing response post-mortem", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 19:31:08 +0000 2014", + "id": 448905005723295744, + "id_str": "448905005723295744", + "text": "@chriseng l remember that. Caused a total traffic mess. Soldiers everywhere. THANKS OBAMA", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448904001258815488, + "in_reply_to_status_id_str": "448904001258815488", + "in_reply_to_user_id": 13752192, + "in_reply_to_user_id_str": "13752192", + "in_reply_to_screen_name": "chriseng", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 19:19:15 +0000 2014", + "id": 448902014165352448, + "id_str": "448902014165352448", + "text": "@eevee there's no easy answer to where the balance point is but I feel reasonable in asserting at some point this particular guy crossed it", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 448901236004106240, + "in_reply_to_status_id_str": "448901236004106240", + "in_reply_to_user_id": 14412937, + "in_reply_to_user_id_str": "14412937", + "in_reply_to_screen_name": "eevee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 19:14:08 +0000 2014", + "id": 448900726778261504, + "id_str": "448900726778261504", + "text": "@eevee do you mean in my narrative or ?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448900028296216577, + "in_reply_to_status_id_str": "448900028296216577", + "in_reply_to_user_id": 14412937, + "in_reply_to_user_id_str": "14412937", + "in_reply_to_screen_name": "eevee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 19:11:23 +0000 2014", + "id": 448900036064444416, + "id_str": "448900036064444416", + "text": "@eevee thus putting the burden of fear on every young woman in the comp sci and math majors (few enough of us that he could stalk all)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448899289272438784, + "in_reply_to_status_id_str": "448899289272438784", + "in_reply_to_user_id": 14412937, + "in_reply_to_user_id_str": "14412937", + "in_reply_to_screen_name": "eevee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 19:09:26 +0000 2014", + "id": 448899547008630784, + "id_str": "448899547008630784", + "text": "@eevee yeah I think it’s a classic case of “but he’s ~socially disabled~ it’d be ableist to expel him for serial stalking”", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448899289272438784, + "in_reply_to_status_id_str": "448899289272438784", + "in_reply_to_user_id": 14412937, + "in_reply_to_user_id_str": "14412937", + "in_reply_to_screen_name": "eevee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 18:57:58 +0000 2014", + "id": 448896659674918912, + "id_str": "448896659674918912", + "text": "@tenfootfangs o___O", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448896455810371584, + "in_reply_to_status_id_str": "448896455810371584", + "in_reply_to_user_id": 22337789, + "in_reply_to_user_id_str": "22337789", + "in_reply_to_screen_name": "tenfootfangs", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "ht" + }, + { + "created_at": "Wed Mar 26 18:46:44 +0000 2014", + "id": 448893833355751424, + "id_str": "448893833355751424", + "text": "@eevee a real trenchcoat and fedora type", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448892154090233856, + "in_reply_to_status_id_str": "448892154090233856", + "in_reply_to_user_id": 14412937, + "in_reply_to_user_id_str": "14412937", + "in_reply_to_screen_name": "eevee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 18:44:51 +0000 2014", + "id": 448893360246628352, + "id_str": "448893360246628352", + "text": "RT @attritionorg: And I woke up to threats from Nicholas Lemonias this morning. Great...", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Wed Mar 26 17:45:59 +0000 2014", + "id": 448878546677530625, + "id_str": "448878546677530625", + "text": "And I woke up to threats from Nicholas Lemonias this morning. Great...", + "source": "TweetDeck", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 32625798, + "id_str": "32625798" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 25, + "favorite_count": 12, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 25, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 18:44:13 +0000 2014", + "id": 448893199659335681, + "id_str": "448893199659335681", + "text": "@eevee the fact that last I heard they had granted FOUR restraining orders and still not expelled him is pretty telling", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448892154090233856, + "in_reply_to_status_id_str": "448892154090233856", + "in_reply_to_user_id": 14412937, + "in_reply_to_user_id_str": "14412937", + "in_reply_to_screen_name": "eevee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 18:43:50 +0000 2014", + "id": 448893101185462272, + "id_str": "448893101185462272", + "text": "@eevee the year after I graduated, the uni started granting school-level restraining orders to the other girls", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448892154090233856, + "in_reply_to_status_id_str": "448892154090233856", + "in_reply_to_user_id": 14412937, + "in_reply_to_user_id_str": "14412937", + "in_reply_to_screen_name": "eevee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 18:43:10 +0000 2014", + "id": 448892935502049280, + "id_str": "448892935502049280", + "text": "@eevee he was creepy with a capital everything and stalked every girl who took a CS class. I had to get ENGAGED to get rid of him", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448892154090233856, + "in_reply_to_status_id_str": "448892154090233856", + "in_reply_to_user_id": 14412937, + "in_reply_to_user_id_str": "14412937", + "in_reply_to_screen_name": "eevee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 18:40:34 +0000 2014", + "id": 448892283212271616, + "id_str": "448892283212271616", + "text": "@eevee I’ve told it on twitter before but there was This Guy at my college who, among other things, really liked Haskell", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448892154090233856, + "in_reply_to_status_id_str": "448892154090233856", + "in_reply_to_user_id": 14412937, + "in_reply_to_user_id_str": "14412937", + "in_reply_to_screen_name": "eevee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 18:39:23 +0000 2014", + "id": 448891981792813056, + "id_str": "448891981792813056", + "text": "@eevee I know why *I* haven’t. It’s synonymous with stalkers and restraining orders in my mind!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448891271528988672, + "in_reply_to_status_id_str": "448891271528988672", + "in_reply_to_user_id": 14412937, + "in_reply_to_user_id_str": "14412937", + "in_reply_to_screen_name": "eevee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 18:30:07 +0000 2014", + "id": 448889652557385728, + "id_str": "448889652557385728", + "text": "@nasko now there’s a classic left hand/right hand problem", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448889024426438656, + "in_reply_to_status_id_str": "448889024426438656", + "in_reply_to_user_id": 58613878, + "in_reply_to_user_id_str": "58613878", + "in_reply_to_screen_name": "nasko", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 18:29:11 +0000 2014", + "id": 448889414388023296, + "id_str": "448889414388023296", + "text": "RT @nasko: If you try using EMET with Chrome, you probably want to read this: http://t.co/QqV4HKQ8vI", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Wed Mar 26 18:27:38 +0000 2014", + "id": 448889024426438656, + "id_str": "448889024426438656", + "text": "If you try using EMET with Chrome, you probably want to read this: http://t.co/QqV4HKQ8vI", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 58613878, + "id_str": "58613878" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 32, + "favorite_count": 12, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/QqV4HKQ8vI", + "expanded_url": "http://dev.chromium.org/Home/chromium-security/chromium-and-emet", + "display_url": "dev.chromium.org/Home/chromium-…", + "indices": [ + 67, + 89 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 32, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 18:16:14 +0000 2014", + "id": 448886159528439810, + "id_str": "448886159528439810", + "text": "@PxlPhile someone is modulating a radio transmission across a chunk of bandwidth so that, viewed in waterfall mode, you see this.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448885145945509888, + "in_reply_to_status_id_str": "448885145945509888", + "in_reply_to_user_id": 203610021, + "in_reply_to_user_id_str": "203610021", + "in_reply_to_screen_name": "PxlPhile", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 18:03:10 +0000 2014", + "id": 448882869692542976, + "id_str": "448882869692542976", + "text": "@DrPizza you might have to calibrate it for your eyes’ focal point. Take a break if you experience nausea or vertigo.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448882300210511872, + "in_reply_to_status_id_str": "448882300210511872", + "in_reply_to_user_id": 11375732, + "in_reply_to_user_id_str": "11375732", + "in_reply_to_screen_name": "DrPizza", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 18:02:07 +0000 2014", + "id": 448882603069018113, + "id_str": "448882603069018113", + "text": "RT @TheOnion: Report: 95% Of Grandfathers Got Job By Walking Right Up And Just Asking http://t.co/CVNIligsO5", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue Mar 25 19:02:55 +0000 2014", + "id": 448535518821617664, + "id_str": "448535518821617664", + "text": "Report: 95% Of Grandfathers Got Job By Walking Right Up And Just Asking http://t.co/CVNIligsO5", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 14075928, + "id_str": "14075928" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 508, + "favorite_count": 510, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/CVNIligsO5", + "expanded_url": "http://onion.com/1dKVnyp", + "display_url": "onion.com/1dKVnyp", + "indices": [ + 72, + 94 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 508, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 17:49:07 +0000 2014", + "id": 448879334561173504, + "id_str": "448879334561173504", + "text": "I went outside and now my mouth and eyes are full of sand. F- do not recommend", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 17:25:35 +0000 2014", + "id": 448873411516071940, + "id_str": "448873411516071940", + "text": "@PxlPhile it’s a radio waterfall.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448873122104889345, + "in_reply_to_status_id_str": "448873122104889345", + "in_reply_to_user_id": 203610021, + "in_reply_to_user_id_str": "203610021", + "in_reply_to_screen_name": "PxlPhile", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 17:19:08 +0000 2014", + "id": 448871789255720960, + "id_str": "448871789255720960", + "text": "Reasons abadidea should not have a transmitter #17: I’d use this technique to troll people http://t.co/BQS0y1UCAQ", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 6, + "favorite_count": 7, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 17:10:43 +0000 2014", + "id": 448869668238155776, + "id_str": "448869668238155776", + "text": "RT @ErrataRob: We may have witnessed an NSA TAO \"Shotgiant\" action\nhttp://t.co/moKK194dzu", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Wed Mar 26 17:08:54 +0000 2014", + "id": 448869210618617856, + "id_str": "448869210618617856", + "text": "We may have witnessed an NSA TAO \"Shotgiant\" action\nhttp://t.co/moKK194dzu", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 15300995, + "id_str": "15300995" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 73, + "favorite_count": 32, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/moKK194dzu", + "expanded_url": "http://blog.erratasec.com/2014/03/we-may-have-witnessed-nsa-shotgiant-tao.html", + "display_url": "blog.erratasec.com/2014/03/we-may…", + "indices": [ + 52, + 74 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 73, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 16:58:26 +0000 2014", + "id": 448866579875647489, + "id_str": "448866579875647489", + "text": "RT @notch: I am very aware that i sometimes react emotionally and not \"professionally\". This is one of the benefits of having no external o…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Wed Mar 26 16:56:43 +0000 2014", + "id": 448866144875970560, + "id_str": "448866144875970560", + "text": "I am very aware that i sometimes react emotionally and not \"professionally\". This is one of the benefits of having no external owners.", + "source": "Twitter for Android", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 63485337, + "id_str": "63485337" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 790, + "favorite_count": 1594, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 790, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 16:51:19 +0000 2014", + "id": 448864787423055872, + "id_str": "448864787423055872", + "text": "@jpodhoretz @nytimes @ggreenwald only makes sense if you’re also shielding them from the disgusting world of heterosexuality", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 447353532912787456, + "in_reply_to_status_id_str": "447353532912787456", + "in_reply_to_user_id": 12612432, + "in_reply_to_user_id_str": "12612432", + "in_reply_to_screen_name": "jpodhoretz", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 16:32:22 +0000 2014", + "id": 448860017320812544, + "id_str": "448860017320812544", + "text": "@m1sp I... see a flaw in this plan", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 448859895199043584, + "in_reply_to_status_id_str": "448859895199043584", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 16:27:29 +0000 2014", + "id": 448858788880449536, + "id_str": "448858788880449536", + "text": "@m1sp hey I am slowly freezing to death in the office can you open a wormhole to the Australian hellscape for me", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 448857210441834496, + "in_reply_to_status_id_str": "448857210441834496", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 16:20:29 +0000 2014", + "id": 448857028166164481, + "id_str": "448857028166164481", + "text": "@cyhatypyved @m1sp quote-stealing spambots must die", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 448856470051115008, + "in_reply_to_status_id_str": "448856470051115008", + "in_reply_to_user_id": 2351841613, + "in_reply_to_user_id_str": "2351841613", + "in_reply_to_screen_name": "deleon_Hans", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 16:12:38 +0000 2014", + "id": 448855053756268544, + "id_str": "448855053756268544", + "text": "@dakami Kickstarter specifically warns against thinking of it as a preorder system :\\", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448852247158325248, + "in_reply_to_status_id_str": "448852247158325248", + "in_reply_to_user_id": 8917142, + "in_reply_to_user_id_str": "8917142", + "in_reply_to_screen_name": "dakami", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 15:59:58 +0000 2014", + "id": 448851864382345216, + "id_str": "448851864382345216", + "text": "@ZacharyOrr the one on the sticker in that picture", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 100290468, + "in_reply_to_user_id_str": "100290468", + "in_reply_to_screen_name": "ZacharyOrr", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 15:55:14 +0000 2014", + "id": 448850673367781376, + "id_str": "448850673367781376", + "text": "RT @runasand: Twitter announced it is challenging the access ban in Turkey: https://t.co/MQ0kNYLdK3", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Wed Mar 26 15:53:06 +0000 2014", + "id": 448850135137943552, + "id_str": "448850135137943552", + "text": "Twitter announced it is challenging the access ban in Turkey: https://t.co/MQ0kNYLdK3", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 19959946, + "id_str": "19959946" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 16, + "favorite_count": 9, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "https://t.co/MQ0kNYLdK3", + "expanded_url": "https://blog.twitter.com/2014/challenging-the-access-ban-in-turkey", + "display_url": "blog.twitter.com/2014/challengi…", + "indices": [ + 62, + 85 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 16, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 15:51:32 +0000 2014", + "id": 448849741947097088, + "id_str": "448849741947097088", + "text": "@MrToph @leighalytle \\o/", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448849482076020736, + "in_reply_to_status_id_str": "448849482076020736", + "in_reply_to_user_id": 16521087, + "in_reply_to_user_id_str": "16521087", + "in_reply_to_screen_name": "MrToph", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Wed Mar 26 15:50:19 +0000 2014", + "id": 448849436161368064, + "id_str": "448849436161368064", + "text": ".@vogon it’s not every day the FBI raids senators and Freemasons though.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448848169200128000, + "in_reply_to_status_id_str": "448848169200128000", + "in_reply_to_user_id": 6326912, + "in_reply_to_user_id_str": "6326912", + "in_reply_to_screen_name": "vogon", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 15:07:58 +0000 2014", + "id": 448838779399581696, + "id_str": "448838779399581696", + "text": "@gallifreyan @revolize it’s a hard drive with a bullet hole through it that showed up on my desk one day. Still not sure if death threat", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448838620233752576, + "in_reply_to_status_id_str": "448838620233752576", + "in_reply_to_user_id": 17521435, + "in_reply_to_user_id_str": "17521435", + "in_reply_to_screen_name": "gallifreyan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 15:07:23 +0000 2014", + "id": 448838633093885952, + "id_str": "448838633093885952", + "text": "Though a .NL boy once made me watch the cider song just so I could assure him it’s DEFINITELY not alcohol", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 15:06:14 +0000 2014", + "id": 448838341535215617, + "id_str": "448838341535215617", + "text": "I still have yet to see an entire episode of the show.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 15:04:12 +0000 2014", + "id": 448837832241864704, + "id_str": "448837832241864704", + "text": "People made fun of the ponies in my cube. So I escalated. http://t.co/Lhngptbxol", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 11, + "favorite_count": 44, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 14:57:43 +0000 2014", + "id": 448836199214751744, + "id_str": "448836199214751744", + "text": "@Talen_Lee @m1sp do you have… anything more… about Mispy? >_>", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448834991334498304, + "in_reply_to_status_id_str": "448834991334498304", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 14:52:09 +0000 2014", + "id": 448834800108191744, + "id_str": "448834800108191744", + "text": "@Talen_Lee honestly almost everyone I know in deep geekdom hates Sheldon and all he stands for", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448827378752450561, + "in_reply_to_status_id_str": "448827378752450561", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 14:50:42 +0000 2014", + "id": 448834434960457729, + "id_str": "448834434960457729", + "text": "@Talen_Lee @m1sp don’t think I know this rumpled one", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448834372427210752, + "in_reply_to_status_id_str": "448834372427210752", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 14:50:00 +0000 2014", + "id": 448834257948270592, + "id_str": "448834257948270592", + "text": "@Talen_Lee @m1sp wait… was this the one about the rope", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448825271328579584, + "in_reply_to_status_id_str": "448825271328579584", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 14:47:42 +0000 2014", + "id": 448833678438064129, + "id_str": "448833678438064129", + "text": "It seems the wind and snow got my message that they missed a spot. Oops.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 14:12:10 +0000 2014", + "id": 448824734533562368, + "id_str": "448824734533562368", + "text": "@m1sp @RavenholmeCP42 not yet", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448823938605264896, + "in_reply_to_status_id_str": "448823938605264896", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 14:05:38 +0000 2014", + "id": 448823091809239040, + "id_str": "448823091809239040", + "text": "No snow. But I’m told our friends on the Cape are five inches under and about 75mph across.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 13:57:58 +0000 2014", + "id": 448821164602048512, + "id_str": "448821164602048512", + "text": "@Talen_Lee if that’s a sell-your-own tshirt site, that pic is auto-photoshopped", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448820668386140160, + "in_reply_to_status_id_str": "448820668386140160", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 13:56:02 +0000 2014", + "id": 448820674938036224, + "id_str": "448820674938036224", + "text": "@m1sp more plausible?! D:", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448816961175040000, + "in_reply_to_status_id_str": "448816961175040000", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 13:53:25 +0000 2014", + "id": 448820018336497664, + "id_str": "448820018336497664", + "text": "@m1sp how on earth did you end up in a religious school", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448803651037847552, + "in_reply_to_status_id_str": "448803651037847552", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 04:51:45 +0000 2014", + "id": 448683700583403520, + "id_str": "448683700583403520", + "text": "@Talen_Lee mind you I am the kind of girl who sits around reading Origen", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448682613683666944, + "in_reply_to_status_id_str": "448682613683666944", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 04:51:26 +0000 2014", + "id": 448683621755658240, + "id_str": "448683621755658240", + "text": "@Talen_Lee in the sense of highlighting that ~two thousand years have yielded zero good, uncompromising answers", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448682613683666944, + "in_reply_to_status_id_str": "448682613683666944", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 04:43:26 +0000 2014", + "id": 448681611169890304, + "id_str": "448681611169890304", + "text": "@Talen_Lee I’m thinking of the sort of people who accept existing answers to the question of evil in the context of their all-loving god.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448680947802578944, + "in_reply_to_status_id_str": "448680947802578944", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 04:40:11 +0000 2014", + "id": 448680791288340480, + "id_str": "448680791288340480", + "text": "@Talen_Lee the downfall of theodicy, and orchestra music.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448680091367657472, + "in_reply_to_status_id_str": "448680091367657472", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 04:03:06 +0000 2014", + "id": 448671460094390272, + "id_str": "448671460094390272", + "text": "@m1sp oh, *I* have :D", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448671348135436290, + "in_reply_to_status_id_str": "448671348135436290", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 03:55:21 +0000 2014", + "id": 448669508790923264, + "id_str": "448669508790923264", + "text": "@kaepora two billion dollars is an absolutely mind-poisoningly large amount of money for so few people", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448669203151998976, + "in_reply_to_status_id_str": "448669203151998976", + "in_reply_to_user_id": 11728992, + "in_reply_to_user_id_str": "11728992", + "in_reply_to_screen_name": "kaepora", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 03:52:36 +0000 2014", + "id": 448668818542710784, + "id_str": "448668818542710784", + "text": ".@spacerog how do you “accidentally” mail something to full-disclosure", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448667935083868160, + "in_reply_to_status_id_str": "448667935083868160", + "in_reply_to_user_id": 14133061, + "in_reply_to_user_id_str": "14133061", + "in_reply_to_screen_name": "spacerog", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 03:52:12 +0000 2014", + "id": 448668717380284417, + "id_str": "448668717380284417", + "text": "RT @spacerog: The email that took down Full Disclosure \"The Death and Re-birth of the Full-Disclosure Mail List\" http://t.co/GS2fSpJ29e", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Wed Mar 26 03:49:06 +0000 2014", + "id": 448667935083868160, + "id_str": "448667935083868160", + "text": "The email that took down Full Disclosure \"The Death and Re-birth of the Full-Disclosure Mail List\" http://t.co/GS2fSpJ29e", + "source": "YoruFukurou", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 14133061, + "id_str": "14133061" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 27, + "favorite_count": 8, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/GS2fSpJ29e", + "expanded_url": "http://is.gd/cwgI7R", + "display_url": "is.gd/cwgI7R", + "indices": [ + 99, + 121 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 27, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 03:48:24 +0000 2014", + "id": 448667760030408704, + "id_str": "448667760030408704", + "text": "@m1sp the lady with the ridiculous frill collar has a name now. Peregrine Martel http://t.co/HEfTQ5wRw4", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 03:23:54 +0000 2014", + "id": 448661596106420225, + "id_str": "448661596106420225", + "text": "@edropple *click* *click* *click* *click*\n\nhttp://t.co/7ap6sGHKe5\n\nGahhh", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448661316941926400, + "in_reply_to_status_id_str": "448661316941926400", + "in_reply_to_user_id": 19435553, + "in_reply_to_user_id_str": "19435553", + "in_reply_to_screen_name": "edropple", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 03:22:31 +0000 2014", + "id": 448661248151146497, + "id_str": "448661248151146497", + "text": "My mission was to look up the background of the last name Martel, now I’m in six wiki links deep, send a rescue party", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 03:15:54 +0000 2014", + "id": 448659579396960257, + "id_str": "448659579396960257", + "text": "@Kufat oh I guess that is Frodo’s dad’s name isn’t it", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448659419472334849, + "in_reply_to_status_id_str": "448659419472334849", + "in_reply_to_user_id": 207691003, + "in_reply_to_user_id_str": "207691003", + "in_reply_to_screen_name": "Kufat", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 03:13:33 +0000 2014", + "id": 448658990218883072, + "id_str": "448658990218883072", + "text": "@Kufat she literally had a son named Drogo actually.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448658639348563968, + "in_reply_to_status_id_str": "448658639348563968", + "in_reply_to_user_id": 207691003, + "in_reply_to_user_id_str": "207691003", + "in_reply_to_screen_name": "Kufat", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 03:11:09 +0000 2014", + "id": 448658384922112000, + "id_str": "448658384922112000", + "text": "@slaveration zomg it does.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448658286821134336, + "in_reply_to_status_id_str": "448658286821134336", + "in_reply_to_user_id": 126876549, + "in_reply_to_user_id_str": "126876549", + "in_reply_to_screen_name": "slaveration", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "nl" + }, + { + "created_at": "Wed Mar 26 03:10:54 +0000 2014", + "id": 448658321315475456, + "id_str": "448658321315475456", + "text": "RT @slaveration: @0xabad1dea sounds like pokemon name", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Wed Mar 26 03:10:45 +0000 2014", + "id": 448658286821134336, + "id_str": "448658286821134336", + "text": "@0xabad1dea sounds like pokemon name", + "source": "TweetDeck", + "truncated": false, + "in_reply_to_status_id": 448657806041051136, + "in_reply_to_status_id_str": "448657806041051136", + "in_reply_to_user_id": 126030998, + "in_reply_to_user_id_str": "126030998", + "in_reply_to_screen_name": "0xabad1dea", + "user": { + "id": 126876549, + "id_str": "126876549" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 4, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "0xabad1dea", + "name": "Melissa", + "id": 126030998, + "id_str": "126030998", + "indices": [ + 0, + 11 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 2, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 03:08:51 +0000 2014", + "id": 448657806041051136, + "id_str": "448657806041051136", + "text": "Plectrude is just the most amazingly awful name for a noblewoman I have ever heard. *Plectrude*! http://t.co/tDqgJ4ZswF", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 02:18:28 +0000 2014", + "id": 448645126400016384, + "id_str": "448645126400016384", + "text": "@Talen_Lee @sjalexander world is mine. http://t.co/dte17W2Z1e", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448644394657132544, + "in_reply_to_status_id_str": "448644394657132544", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 02:13:21 +0000 2014", + "id": 448643840283406336, + "id_str": "448643840283406336", + "text": "@Talen_Lee I volunteer as tribute", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448642339313958912, + "in_reply_to_status_id_str": "448642339313958912", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 02:06:07 +0000 2014", + "id": 448642019326705665, + "id_str": "448642019326705665", + "text": "@NintendoFanFTW @xkeepah my brain is interpreting the red bow on her discarded body as the bloody inside of her neck", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448640700083884032, + "in_reply_to_status_id_str": "448640700083884032", + "in_reply_to_user_id": 336310362, + "in_reply_to_user_id_str": "336310362", + "in_reply_to_screen_name": "NintendoFanFTW", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 02:04:42 +0000 2014", + "id": 448641661728718848, + "id_str": "448641661728718848", + "text": "@Myriachan he runs nmap and is one of the oldest names in the industry", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448641459915223040, + "in_reply_to_status_id_str": "448641459915223040", + "in_reply_to_user_id": 1556497868, + "in_reply_to_user_id_str": "1556497868", + "in_reply_to_screen_name": "Myriachan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 01:48:08 +0000 2014", + "id": 448637495493013505, + "id_str": "448637495493013505", + "text": "@miuaf hope you don’t disappear from Twitter entirely, I like you", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448633356515680257, + "in_reply_to_status_id_str": "448633356515680257", + "in_reply_to_user_id": 1029662892, + "in_reply_to_user_id_str": "1029662892", + "in_reply_to_screen_name": "miuaf", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 01:46:28 +0000 2014", + "id": 448637075425071104, + "id_str": "448637075425071104", + "text": "Glad to see a new FD arise backed by someone we can all agree has an established reputation", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 01:45:33 +0000 2014", + "id": 448636842179829761, + "id_str": "448636842179829761", + "text": "RT @lcamtuf: Fyodor put together a new version of F-D: http://t.co/92eDXhLH7B. Hop in.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Wed Mar 26 01:26:30 +0000 2014", + "id": 448632049029480448, + "id_str": "448632049029480448", + "text": "Fyodor put together a new version of F-D: http://t.co/92eDXhLH7B. Hop in.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 44666078, + "id_str": "44666078" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 62, + "favorite_count": 16, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/92eDXhLH7B", + "expanded_url": "http://insecure.org/news/fulldisclosure/", + "display_url": "insecure.org/news/fulldiscl…", + "indices": [ + 42, + 64 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 62, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 01:44:17 +0000 2014", + "id": 448636523853119488, + "id_str": "448636523853119488", + "text": "@antumbral @m1sp lol I tried to draw Tamal next but her braids and vine crown always come out terrible", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448635182443028480, + "in_reply_to_status_id_str": "448635182443028480", + "in_reply_to_user_id": 19837512, + "in_reply_to_user_id_str": "19837512", + "in_reply_to_screen_name": "antumbral", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 01:37:02 +0000 2014", + "id": 448634701235093504, + "id_str": "448634701235093504", + "text": "@m1sp @antumbral http://t.co/NagsOGmpxu", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448632669035708416, + "in_reply_to_status_id_str": "448632669035708416", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Wed Mar 26 01:26:00 +0000 2014", + "id": 448631922173157379, + "id_str": "448631922173157379", + "text": "@antumbral @m1sp mua ha ha http://t.co/f1sv0c1m6d", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448630129544003584, + "in_reply_to_status_id_str": "448630129544003584", + "in_reply_to_user_id": 19837512, + "in_reply_to_user_id_str": "19837512", + "in_reply_to_screen_name": "antumbral", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "vi" + }, + { + "created_at": "Wed Mar 26 01:20:41 +0000 2014", + "id": 448630583942737920, + "id_str": "448630583942737920", + "text": "RT @Demiurge: \"I did not chip in $10k to seed a first investment round to build value for a Facebook acquisition.\" - @notch http://t.co/yBa…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Wed Mar 26 00:14:06 +0000 2014", + "id": 448613828310224896, + "id_str": "448613828310224896", + "text": "\"I did not chip in $10k to seed a first investment round to build value for a Facebook acquisition.\" - @notch http://t.co/yBam8M79cX", + "source": "TweetDeck", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 756201, + "id_str": "756201" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 128, + "favorite_count": 56, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/yBam8M79cX", + "expanded_url": "http://notch.net/2014/03/virtual-reality-is-going-to-change-the-world/", + "display_url": "notch.net/2014/03/virtua…", + "indices": [ + 110, + 132 + ] + } + ], + "user_mentions": [ + { + "screen_name": "notch", + "name": "Markus Persson", + "id": 63485337, + "id_str": "63485337", + "indices": [ + 103, + 109 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 128, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 01:17:39 +0000 2014", + "id": 448629824224239617, + "id_str": "448629824224239617", + "text": "@m1sp actually I feel it’s completely justified in the context I have deprived you of, she is no sweet innocent angel", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448629291064909824, + "in_reply_to_status_id_str": "448629291064909824", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 00:48:01 +0000 2014", + "id": 448622363677323264, + "id_str": "448622363677323264", + "text": "@admittedlyhuman I guess this is a weakness of my tweet-sized philosophy.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448620356006596608, + "in_reply_to_status_id_str": "448620356006596608", + "in_reply_to_user_id": 19892410, + "in_reply_to_user_id_str": "19892410", + "in_reply_to_screen_name": "admittedlyhuman", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 00:14:49 +0000 2014", + "id": 448614009374527488, + "id_str": "448614009374527488", + "text": "@Kufat it’s eating the right markov chains", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448613507421175808, + "in_reply_to_status_id_str": "448613507421175808", + "in_reply_to_user_id": 207691003, + "in_reply_to_user_id_str": "207691003", + "in_reply_to_screen_name": "Kufat", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 00:10:27 +0000 2014", + "id": 448612909762224128, + "id_str": "448612909762224128", + "text": "Autocorrect, wat r u doin\n\nAutocorrect, STAHP http://t.co/kEladzyViv", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 14, + "favorite_count": 22, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "nl" + }, + { + "created_at": "Wed Mar 26 00:08:05 +0000 2014", + "id": 448612314523369472, + "id_str": "448612314523369472", + "text": "@misuzulive “oh, this neighborhood sounds posh”", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448611392120422400, + "in_reply_to_status_id_str": "448611392120422400", + "in_reply_to_user_id": 45715585, + "in_reply_to_user_id_str": "45715585", + "in_reply_to_screen_name": "misuzulive", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 00:05:46 +0000 2014", + "id": 448611732291084288, + "id_str": "448611732291084288", + "text": "@shelhart @attrc they have serial numbers. You want a model with overwritable firmware to defeat this. Game pirates would have a list", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448568584051388416, + "in_reply_to_status_id_str": "448568584051388416", + "in_reply_to_user_id": 16469896, + "in_reply_to_user_id_str": "16469896", + "in_reply_to_screen_name": "shelhart", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 00:00:58 +0000 2014", + "id": 448610526227353601, + "id_str": "448610526227353601", + "text": "RT @politicalmath: A good rule of thumb: If you run into Mark Zuckerberg, he's probably about to buy you. http://t.co/WHRPciwMGI", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue Mar 25 22:29:06 +0000 2014", + "id": 448587406862594050, + "id_str": "448587406862594050", + "text": "A good rule of thumb: If you run into Mark Zuckerberg, he's probably about to buy you. http://t.co/WHRPciwMGI", + "source": "TweetDeck", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 36667104, + "id_str": "36667104" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 51, + "favorite_count": 24, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/WHRPciwMGI", + "expanded_url": "http://www.reddit.com/r/oculus/comments/1wf6mg/so_no_way_to_confirm_this_but_my_friend_works_in/", + "display_url": "reddit.com/r/oculus/comme…", + "indices": [ + 87, + 109 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 51, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Wed Mar 26 00:00:22 +0000 2014", + "id": 448610374385164288, + "id_str": "448610374385164288", + "text": "@TweetsofOld … well that was depressing", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448601726870757376, + "in_reply_to_status_id_str": "448601726870757376", + "in_reply_to_user_id": 66666549, + "in_reply_to_user_id_str": "66666549", + "in_reply_to_screen_name": "TweetsofOld", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "de" + }, + { + "created_at": "Tue Mar 25 23:58:47 +0000 2014", + "id": 448609975385210880, + "id_str": "448609975385210880", + "text": "@mralext20 @big_ben_clock well, it will compress well, so upkeep costs will be minimal 8)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448609788826374144, + "in_reply_to_status_id_str": "448609788826374144", + "in_reply_to_user_id": 905041434, + "in_reply_to_user_id_str": "905041434", + "in_reply_to_screen_name": "mralext20", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Mar 25 23:57:27 +0000 2014", + "id": 448609639316611072, + "id_str": "448609639316611072", + "text": "Given the diminishing cost of storage, you’re aiming to still be worth like, two cents", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Mar 25 23:56:08 +0000 2014", + "id": 448609309199720448, + "id_str": "448609309199720448", + "text": "Live so that it will still be worth paying taxes to keep your Twitter archive in the Library of Congress in three hundred years", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 6, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Mar 25 23:52:19 +0000 2014", + "id": 448608349412929536, + "id_str": "448608349412929536", + "text": "@_larry0 how come they never call me?\n\nActually I’d never know because I never answer a strange number first time", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448595071961935872, + "in_reply_to_status_id_str": "448595071961935872", + "in_reply_to_user_id": 17055552, + "in_reply_to_user_id_str": "17055552", + "in_reply_to_screen_name": "_larry0", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Mar 25 23:33:17 +0000 2014", + "id": 448603557227683840, + "id_str": "448603557227683840", + "text": "@admittedlyhuman it sounds like someone was being a creep themselves and not asking in good faith :\\", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 448593378041933824, + "in_reply_to_status_id_str": "448593378041933824", + "in_reply_to_user_id": 19892410, + "in_reply_to_user_id_str": "19892410", + "in_reply_to_screen_name": "admittedlyhuman", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Mar 25 22:46:12 +0000 2014", + "id": 448591709300330497, + "id_str": "448591709300330497", + "text": "@admittedlyhuman they don’t, but for the record I consider myself extremely Socially Awkward but still agree with approx. all of that essay", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448591342516858881, + "in_reply_to_status_id_str": "448591342516858881", + "in_reply_to_user_id": 19892410, + "in_reply_to_user_id_str": "19892410", + "in_reply_to_screen_name": "admittedlyhuman", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Mar 25 22:45:04 +0000 2014", + "id": 448591422925852672, + "id_str": "448591422925852672", + "text": "@zygen @tapbot_paul nest doesn’t even appeal to me as something I would ever need or want. Oculus is at least wantable to me", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448590485540462592, + "in_reply_to_status_id_str": "448590485540462592", + "in_reply_to_user_id": 12843182, + "in_reply_to_user_id_str": "12843182", + "in_reply_to_screen_name": "zygen", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Mar 25 22:43:19 +0000 2014", + "id": 448590984730148864, + "id_str": "448590984730148864", + "text": "@admittedlyhuman if you’re genuinely serious I can block you so I won’t :p", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448590533636915200, + "in_reply_to_status_id_str": "448590533636915200", + "in_reply_to_user_id": 19892410, + "in_reply_to_user_id_str": "19892410", + "in_reply_to_screen_name": "admittedlyhuman", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Mar 25 22:40:34 +0000 2014", + "id": 448590290396667904, + "id_str": "448590290396667904", + "text": "@admittedlyhuman if someone says “please don’t —— again to me” there’s rarely an appropriate answer other than “okay”", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448589763722096641, + "in_reply_to_status_id_str": "448589763722096641", + "in_reply_to_user_id": 19892410, + "in_reply_to_user_id_str": "19892410", + "in_reply_to_screen_name": "admittedlyhuman", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Mar 25 22:35:22 +0000 2014", + "id": 448588983552212994, + "id_str": "448588983552212994", + "text": "In this RT: I agree: the difference between Socially Awkward and Creepy is one readily and sincerely apologizes, the other gets defensive", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 9, + "favorite_count": 12, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Mar 25 22:33:59 +0000 2014", + "id": 448588634124722176, + "id_str": "448588634124722176", + "text": "RT @backtobeatrice: Important read. Seriously. \"@WhySharksMatter: Being \"socially awkward\" isn't an excuse for creepy behavior. http://t.…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue Mar 25 22:11:38 +0000 2014", + "id": 448583009219137536, + "id_str": "448583009219137536", + "text": "Important read. Seriously. \"@WhySharksMatter: Being \"socially awkward\" isn't an excuse for creepy behavior. http://t.co/4JCEkRWUMy\"", + "source": "Twitter for Android", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 14713705, + "id_str": "14713705" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 31, + "favorite_count": 17, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/4JCEkRWUMy", + "expanded_url": "http://www.doctornerdlove.com/2014/03/socially-awkward-isnt-an-excuse/", + "display_url": "doctornerdlove.com/2014/03/social…", + "indices": [ + 110, + 132 + ] + } + ], + "user_mentions": [ + { + "screen_name": "WhySharksMatter", + "name": "David Shiffman", + "id": 66182591, + "id_str": "66182591", + "indices": [ + 29, + 45 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 31, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue Mar 25 22:09:23 +0000 2014", + "id": 448582442367348736, + "id_str": "448582442367348736", + "text": "@m1sp no context http://t.co/bincQfV5EI", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue Mar 25 21:55:18 +0000 2014", + "id": 448578897597448193, + "id_str": "448578897597448193", + "text": "What’s it say that two billion dollars doesn’t even REGISTER on my acquisition price eyebrow-raisers anymore", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 9, + "favorite_count": 7, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Mar 25 21:54:23 +0000 2014", + "id": 448578668571668481, + "id_str": "448578668571668481", + "text": "@TakoArishi we threw the entire country into building it all in one go and we’ve barely touched it since.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448578359187218432, + "in_reply_to_status_id_str": "448578359187218432", + "in_reply_to_user_id": 22107482, + "in_reply_to_user_id_str": "22107482", + "in_reply_to_screen_name": "TakoArishi", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Mar 25 21:52:39 +0000 2014", + "id": 448578232821223424, + "id_str": "448578232821223424", + "text": "Someone tell Facebook their April Fools post went out a week early http://t.co/fBpvKkpVUc", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 22, + "favorite_count": 12, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue Mar 25 21:40:22 +0000 2014", + "id": 448575141338185728, + "id_str": "448575141338185728", + "text": "@TakoArishi most of our roads are honestly in a shameful state compared to our reputation", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448574720792092672, + "in_reply_to_status_id_str": "448574720792092672", + "in_reply_to_user_id": 22107482, + "in_reply_to_user_id_str": "22107482", + "in_reply_to_screen_name": "TakoArishi", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Mar 25 21:38:01 +0000 2014", + "id": 448574550901800960, + "id_str": "448574550901800960", + "text": "@Talen_Lee I feel subtweeted", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448573506305806336, + "in_reply_to_status_id_str": "448573506305806336", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Mar 25 21:37:01 +0000 2014", + "id": 448574299742687232, + "id_str": "448574299742687232", + "text": "@grp I think twitter uses a bloom filter type thing with a small but noticeable wrong answer rate", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448573861840171008, + "in_reply_to_status_id_str": "448573861840171008", + "in_reply_to_user_id": 69459178, + "in_reply_to_user_id_str": "69459178", + "in_reply_to_screen_name": "grp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Mar 25 21:36:29 +0000 2014", + "id": 448574165646606337, + "id_str": "448574165646606337", + "text": "@grp most recent person I saw say this: definitely not. Other people: don’t think any of them were. Unfortunately I don’t have a list", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448573861840171008, + "in_reply_to_status_id_str": "448573861840171008", + "in_reply_to_user_id": 69459178, + "in_reply_to_user_id_str": "69459178", + "in_reply_to_screen_name": "grp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Mar 25 21:35:38 +0000 2014", + "id": 448573950805954560, + "id_str": "448573950805954560", + "text": "@TakoArishi @Talen_Lee we have roads in mainland USA??", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448573329587568642, + "in_reply_to_status_id_str": "448573329587568642", + "in_reply_to_user_id": 22107482, + "in_reply_to_user_id_str": "22107482", + "in_reply_to_screen_name": "TakoArishi", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Mar 25 21:34:51 +0000 2014", + "id": 448573752524439552, + "id_str": "448573752524439552", + "text": "@grp who, the blockee? They can’t be retweeted in the first place", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448573545224753152, + "in_reply_to_status_id_str": "448573545224753152", + "in_reply_to_user_id": 69459178, + "in_reply_to_user_id_str": "69459178", + "in_reply_to_screen_name": "grp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Mar 25 21:32:40 +0000 2014", + "id": 448573202135273472, + "id_str": "448573202135273472", + "text": "@MaruZenunim @Talen_Lee @TakoArishi I AM THE WILL WHICH DETERMINES THE WORLD.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448572967250067456, + "in_reply_to_status_id_str": "448572967250067456", + "in_reply_to_user_id": 628721558, + "in_reply_to_user_id_str": "628721558", + "in_reply_to_screen_name": "MaruZenunim", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Mar 25 21:29:51 +0000 2014", + "id": 448572495864799232, + "id_str": "448572495864799232", + "text": "@Shufflejoy there’s a saying about buying an airplane to get the peanuts inside.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448572230058782720, + "in_reply_to_status_id_str": "448572230058782720", + "in_reply_to_user_id": 1567524811, + "in_reply_to_user_id_str": "1567524811", + "in_reply_to_screen_name": "Shufflejoy", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Mar 25 21:28:13 +0000 2014", + "id": 448572084676206592, + "id_str": "448572084676206592", + "text": "@grp blocking someone and then seeing their tweets because someone else retweeted them is kind of contrary to this goal", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448571698342686721, + "in_reply_to_status_id_str": "448571698342686721", + "in_reply_to_user_id": 69459178, + "in_reply_to_user_id_str": "69459178", + "in_reply_to_screen_name": "grp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Mar 25 21:27:53 +0000 2014", + "id": 448572000240693248, + "id_str": "448572000240693248", + "text": "@grp the use case of the block feature is to get someone out of your twitter experience unless you manually re-engage", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448571698342686721, + "in_reply_to_status_id_str": "448571698342686721", + "in_reply_to_user_id": 69459178, + "in_reply_to_user_id_str": "69459178", + "in_reply_to_screen_name": "grp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Mar 25 21:26:51 +0000 2014", + "id": 448571738033770496, + "id_str": "448571738033770496", + "text": "@drymangobird @puellavulnerata programmable in the way HTML is programmable", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448571622484480000, + "in_reply_to_status_id_str": "448571622484480000", + "in_reply_to_user_id": 892400503, + "in_reply_to_user_id_str": "892400503", + "in_reply_to_screen_name": "drymangobird", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Mar 25 21:20:25 +0000 2014", + "id": 448570118831095808, + "id_str": "448570118831095808", + "text": ".@munin To be clear I mean ***Twitter is buggy about enforcing block and this is utterly unacceptable***", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448569643587080192, + "in_reply_to_status_id_str": "448569643587080192", + "in_reply_to_user_id": 8513352, + "in_reply_to_user_id_str": "8513352", + "in_reply_to_screen_name": "munin", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 6, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Mar 25 21:16:26 +0000 2014", + "id": 448569117503913984, + "id_str": "448569117503913984", + "text": "The number of times I’ve seen someone say “just saw a retweet from someone I blocked” is waaaay too high", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 4, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Mar 25 21:12:45 +0000 2014", + "id": 448568191397429248, + "id_str": "448568191397429248", + "text": "@TRONMAXIMUM @vogon oh… one of those “saying hurtful things, but totes ironically, so it’s funny!” people.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448550877725356032, + "in_reply_to_status_id_str": "448550877725356032", + "in_reply_to_user_id": 634308522, + "in_reply_to_user_id_str": "634308522", + "in_reply_to_screen_name": "TRONMAXIMUM", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Mar 25 21:08:37 +0000 2014", + "id": 448567151855951872, + "id_str": "448567151855951872", + "text": "@frkbmb I imagine they would have to iterate the process for producing the circuitry several times (and need relevant insights)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448544414013456384, + "in_reply_to_status_id_str": "448544414013456384", + "in_reply_to_user_id": 540721095, + "in_reply_to_user_id_str": "540721095", + "in_reply_to_screen_name": "frkbmb", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Mar 25 21:04:51 +0000 2014", + "id": 448566203456692224, + "id_str": "448566203456692224", + "text": "@rantyben now you listen here —", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448566105183772672, + "in_reply_to_status_id_str": "448566105183772672", + "in_reply_to_user_id": 977910404, + "in_reply_to_user_id_str": "977910404", + "in_reply_to_screen_name": "rantyben", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Mar 25 21:01:35 +0000 2014", + "id": 448565382266490880, + "id_str": "448565382266490880", + "text": "I’m terrified of developing a degenerative disease which would affect my ability to communicate :(", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Mar 25 21:00:19 +0000 2014", + "id": 448565060542402560, + "id_str": "448565060542402560", + "text": "RT @a_greenberg: Satoshi Nakamoto's Neighbor: The Bitcoin Ghostwriter Who Wasn't http://t.co/g4ySg4eqKI", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue Mar 25 18:59:59 +0000 2014", + "id": 448534780229844992, + "id_str": "448534780229844992", + "text": "Satoshi Nakamoto's Neighbor: The Bitcoin Ghostwriter Who Wasn't http://t.co/g4ySg4eqKI", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 4255361, + "id_str": "4255361" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 58, + "favorite_count": 33, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/g4ySg4eqKI", + "expanded_url": "http://www.forbes.com/sites/andygreenberg/2014/03/25/satoshi-nakamotos-neighbor-the-bitcoin-ghostwriter-who-wasnt/", + "display_url": "forbes.com/sites/andygree…", + "indices": [ + 64, + 86 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 58, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue Mar 25 20:43:38 +0000 2014", + "id": 448560862488723458, + "id_str": "448560862488723458", + "text": "RT @davidjayharris: @0xabad1dea you were right re: media moving the goalposts on \"millennial\" by @amandahess Via @daveweigel @hardsci http:…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue Mar 25 19:56:05 +0000 2014", + "id": 448548896281591808, + "id_str": "448548896281591808", + "text": "@0xabad1dea you were right re: media moving the goalposts on \"millennial\" by @amandahess Via @daveweigel @hardsci http://t.co/nD34TxP8eG", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448534564374589440, + "in_reply_to_status_id_str": "448534564374589440", + "in_reply_to_user_id": 13524182, + "in_reply_to_user_id_str": "13524182", + "in_reply_to_screen_name": "daveweigel", + "user": { + "id": 308065135, + "id_str": "308065135" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 2, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/nD34TxP8eG", + "expanded_url": "http://www.slate.com/blogs/xx_factor/2014/03/25/new_york_times_millennial_trend_stories_reporters_quote_generation_x_sources.html", + "display_url": "slate.com/blogs/xx_facto…", + "indices": [ + 114, + 136 + ] + } + ], + "user_mentions": [ + { + "screen_name": "0xabad1dea", + "name": "MeliSSL ", + "id": 126030998, + "id_str": "126030998", + "indices": [ + 0, + 11 + ] + }, + { + "screen_name": "amandahess", + "name": "Amanda Hess", + "id": 16222904, + "id_str": "16222904", + "indices": [ + 77, + 88 + ] + }, + { + "screen_name": "daveweigel", + "name": "daveweigel", + "id": 13524182, + "id_str": "13524182", + "indices": [ + 93, + 104 + ] + }, + { + "screen_name": "hardsci", + "name": "Sanjay Srivastava", + "id": 102768569, + "id_str": "102768569", + "indices": [ + 105, + 113 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 1, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue Mar 25 18:59:22 +0000 2014", + "id": 448534622616686592, + "id_str": "448534622616686592", + "text": "@jakalopee @eevee I’m so frustrated with certain (intelligent) people who don’t grasp this sort of thing right now that I want to cry :(", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448533730685382656, + "in_reply_to_status_id_str": "448533730685382656", + "in_reply_to_user_id": 14870667, + "in_reply_to_user_id_str": "14870667", + "in_reply_to_screen_name": "jakalopee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Mar 25 18:52:14 +0000 2014", + "id": 448532827458772992, + "id_str": "448532827458772992", + "text": "@JZdziarski @DarthNull people boycotting their personal hot button issues is 100% perfectly sensical", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448532613595402240, + "in_reply_to_status_id_str": "448532613595402240", + "in_reply_to_user_id": 1267770224, + "in_reply_to_user_id_str": "1267770224", + "in_reply_to_screen_name": "JZdziarski", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Mar 25 18:50:42 +0000 2014", + "id": 448532442891431936, + "id_str": "448532442891431936", + "text": "@JZdziarski @DarthNull weren’t you just criticizing people for not boycotting Starbucks enough? It can’t be both", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448532254030311424, + "in_reply_to_status_id_str": "448532254030311424", + "in_reply_to_user_id": 1267770224, + "in_reply_to_user_id_str": "1267770224", + "in_reply_to_screen_name": "JZdziarski", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Mar 25 18:50:06 +0000 2014", + "id": 448532293020573696, + "id_str": "448532293020573696", + "text": "@DarthNull @JZdziarski the root cause of all this discussion is the Mozilla CEO guy is a prop 8 funder ($1000)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448532130512273408, + "in_reply_to_status_id_str": "448532130512273408", + "in_reply_to_user_id": 12287142, + "in_reply_to_user_id_str": "12287142", + "in_reply_to_screen_name": "DarthNull", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Mar 25 18:48:40 +0000 2014", + "id": 448531929814802432, + "id_str": "448531929814802432", + "text": "@JZdziarski @DarthNull though I’m sure at least one person has out of the thousands simply expressing disappointment in Mozilla’s choices.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448531676168462336, + "in_reply_to_status_id_str": "448531676168462336", + "in_reply_to_user_id": 1267770224, + "in_reply_to_user_id_str": "1267770224", + "in_reply_to_screen_name": "JZdziarski", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Mar 25 18:48:16 +0000 2014", + "id": 448531830850199553, + "id_str": "448531830850199553", + "text": "@JZdziarski @DarthNull I still don’t know of any specific examples of anyone seriously making *that* argument", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448531676168462336, + "in_reply_to_status_id_str": "448531676168462336", + "in_reply_to_user_id": 1267770224, + "in_reply_to_user_id_str": "1267770224", + "in_reply_to_screen_name": "JZdziarski", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Mar 25 18:46:34 +0000 2014", + "id": 448531402846658560, + "id_str": "448531402846658560", + "text": "@JZdziarski @DarthNull one of the #1 reasons I moved to Massachusetts was to get into a state that HAS agreed to this", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448531223674380288, + "in_reply_to_status_id_str": "448531223674380288", + "in_reply_to_user_id": 1267770224, + "in_reply_to_user_id_str": "1267770224", + "in_reply_to_screen_name": "JZdziarski", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Mar 25 18:43:18 +0000 2014", + "id": 448530581627076608, + "id_str": "448530581627076608", + "text": "@JZdziarski people protest Starbucks all the time. When *isn’t* Starbucks being protested by someone over something?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448530379516166144, + "in_reply_to_status_id_str": "448530379516166144", + "in_reply_to_user_id": 1267770224, + "in_reply_to_user_id_str": "1267770224", + "in_reply_to_screen_name": "JZdziarski", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Mar 25 18:41:52 +0000 2014", + "id": 448530219876749312, + "id_str": "448530219876749312", + "text": "@JZdziarski — someone who has monetarily funded the fight against the cause of a SUBSTANTIAL minority of the tech community", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448529912451063808, + "in_reply_to_status_id_str": "448529912451063808", + "in_reply_to_user_id": 1267770224, + "in_reply_to_user_id_str": "1267770224", + "in_reply_to_screen_name": "JZdziarski", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Mar 25 18:41:21 +0000 2014", + "id": 448530092235706369, + "id_str": "448530092235706369", + "text": "@JZdziarski I’m not seeing that. I’m seeing disappointment that Mozilla placed in the highest, most public leadership position —", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448529912451063808, + "in_reply_to_status_id_str": "448529912451063808", + "in_reply_to_user_id": 1267770224, + "in_reply_to_user_id_str": "1267770224", + "in_reply_to_screen_name": "JZdziarski", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Mar 25 18:39:04 +0000 2014", + "id": 448529514784899072, + "id_str": "448529514784899072", + "text": "@JZdziarski okay… well… um… they’re pretty wrong. We built a society around the assumption you can sign a contract to become family.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448529231195410432, + "in_reply_to_status_id_str": "448529231195410432", + "in_reply_to_user_id": 1267770224, + "in_reply_to_user_id_str": "1267770224", + "in_reply_to_screen_name": "JZdziarski", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Mar 25 18:36:14 +0000 2014", + "id": 448528803795845120, + "id_str": "448528803795845120", + "text": "@JZdziarski and the argument I have yet to hear to deny equal rights to equal people is ?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448514951754571776, + "in_reply_to_status_id_str": "448514951754571776", + "in_reply_to_user_id": 1267770224, + "in_reply_to_user_id_str": "1267770224", + "in_reply_to_screen_name": "JZdziarski", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Mar 25 18:34:39 +0000 2014", + "id": 448528405383098368, + "id_str": "448528405383098368", + "text": "RT @chriseng: MSFT releases source code for MS-DOS 1.1/2.0 and Word for Windows 1.1a. http://t.co/bZS8iJq2HA", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue Mar 25 17:29:47 +0000 2014", + "id": 448512081974026240, + "id_str": "448512081974026240", + "text": "MSFT releases source code for MS-DOS 1.1/2.0 and Word for Windows 1.1a. http://t.co/bZS8iJq2HA", + "source": "MetroTwit", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 13752192, + "id_str": "13752192" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 69, + "favorite_count": 27, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/bZS8iJq2HA", + "expanded_url": "http://blogs.technet.com/b/microsoft_blog/archive/2014/03/25/microsoft-makes-source-code-for-ms-dos-and-word-for-windows-available-to-public.aspx", + "display_url": "blogs.technet.com/b/microsoft_bl…", + "indices": [ + 72, + 94 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 69, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue Mar 25 18:33:02 +0000 2014", + "id": 448527995503124480, + "id_str": "448527995503124480", + "text": "@chriseng that’s basically Eich’s own argument on his old blog post. “Stop being so intolerant of me funding intolerance! That’s bad!”", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448508748076949505, + "in_reply_to_status_id_str": "448508748076949505", + "in_reply_to_user_id": 13752192, + "in_reply_to_user_id_str": "13752192", + "in_reply_to_screen_name": "chriseng", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Mar 25 18:31:12 +0000 2014", + "id": 448527537778737152, + "id_str": "448527537778737152", + "text": "@Sonikku_a @winocm just in case someone else hasn’t mentioned it: it’s a joke gag gift.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448496005135085568, + "in_reply_to_status_id_str": "448496005135085568", + "in_reply_to_user_id": 538699837, + "in_reply_to_user_id_str": "538699837", + "in_reply_to_screen_name": "Sonikku_a", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Mar 25 15:40:56 +0000 2014", + "id": 448484685333954560, + "id_str": "448484685333954560", + "text": "@JZdziarski if you’re opting into a service to tie your twitter to your key, I’m pretty sure blowing your cover is a feature not a bug", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448484311524966401, + "in_reply_to_status_id_str": "448484311524966401", + "in_reply_to_user_id": 1267770224, + "in_reply_to_user_id_str": "1267770224", + "in_reply_to_screen_name": "JZdziarski", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Mar 25 15:35:40 +0000 2014", + "id": 448483363054424064, + "id_str": "448483363054424064", + "text": "@JZdziarski you know the escrow is 100% optional right? I chose to use it for when I get a chance to go bug hunting", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448478715203563520, + "in_reply_to_status_id_str": "448478715203563520", + "in_reply_to_user_id": 1267770224, + "in_reply_to_user_id_str": "1267770224", + "in_reply_to_screen_name": "JZdziarski", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Mar 25 15:30:30 +0000 2014", + "id": 448482060391698432, + "id_str": "448482060391698432", + "text": "RT @Kufat: Jimmy Wales is taking no shit from pro-quackery activists: http://t.co/eBZChU9bKM", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue Mar 25 14:17:48 +0000 2014", + "id": 448463767496835073, + "id_str": "448463767496835073", + "text": "Jimmy Wales is taking no shit from pro-quackery activists: http://t.co/eBZChU9bKM", + "source": "MetroTwit", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 207691003, + "id_str": "207691003" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 3, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/eBZChU9bKM", + "expanded_url": "http://www.pcpro.co.uk/news/387790/jimmy-wales-rants-at-holistic-healers-petitioning-wikipedia", + "display_url": "pcpro.co.uk/news/387790/ji…", + "indices": [ + 59, + 81 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 2, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue Mar 25 15:22:01 +0000 2014", + "id": 448479925650333696, + "id_str": "448479925650333696", + "text": "@MentatMode @Anne_Roth just passing forward a specific example of a general reminder the phish are out there :)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1979461, + "in_reply_to_user_id_str": "1979461", + "in_reply_to_screen_name": "MentatMode", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Mar 25 15:20:43 +0000 2014", + "id": 448479598960193536, + "id_str": "448479598960193536", + "text": "RT @FredericJacobs: Tor usage in Turkey keeps peaking with no sign of slowing down. Adding 10 000 users a day. http://t.co/jy7KTCcBCb", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue Mar 25 12:42:06 +0000 2014", + "id": 448439684079689728, + "id_str": "448439684079689728", + "text": "Tor usage in Turkey keeps peaking with no sign of slowing down. Adding 10 000 users a day. http://t.co/jy7KTCcBCb", + "source": "Twitter for Mac", + "truncated": false, + "in_reply_to_status_id": 447894891834900480, + "in_reply_to_status_id_str": "447894891834900480", + "in_reply_to_user_id": 18018877, + "in_reply_to_user_id_str": "18018877", + "in_reply_to_screen_name": "FredericJacobs", + "user": { + "id": 18018877, + "id_str": "18018877" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 146, + "favorite_count": 38, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ], + "media": [ + { + "id": 448439683991601152, + "id_str": "448439683991601152", + "indices": [ + 91, + 113 + ], + "media_url": "http://pbs.twimg.com/media/BjkthEOCAAA_2P4.png", + "media_url_https": "https://pbs.twimg.com/media/BjkthEOCAAA_2P4.png", + "url": "http://t.co/jy7KTCcBCb", + "display_url": "pic.twitter.com/jy7KTCcBCb", + "expanded_url": "http://twitter.com/FredericJacobs/status/448439684079689728/photo/1", + "type": "photo", + "sizes": { + "large": { + "w": 576, + "h": 360, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 213, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 576, + "h": 360, + "resize": "fit" + } + } + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 146, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue Mar 25 15:19:54 +0000 2014", + "id": 448479393716113408, + "id_str": "448479393716113408", + "text": "RT @Anne_Roth: If you get a mail like this, pretending to be from Riseup, asking for your password: DON'T EVER SEND YOUR PASSWORD! http://t…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue Mar 25 12:21:02 +0000 2014", + "id": 448434380403261440, + "id_str": "448434380403261440", + "text": "If you get a mail like this, pretending to be from Riseup, asking for your password: DON'T EVER SEND YOUR PASSWORD! http://t.co/wdjkS8isWm", + "source": "TweetDeck", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 88398197, + "id_str": "88398197" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 18, + "favorite_count": 3, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ], + "media": [ + { + "id": 448434380214530049, + "id_str": "448434380214530049", + "indices": [ + 116, + 138 + ], + "media_url": "http://pbs.twimg.com/media/BjkosWHCcAE-kRU.jpg", + "media_url_https": "https://pbs.twimg.com/media/BjkosWHCcAE-kRU.jpg", + "url": "http://t.co/wdjkS8isWm", + "display_url": "pic.twitter.com/wdjkS8isWm", + "expanded_url": "http://twitter.com/Anne_Roth/status/448434380403261440/photo/1", + "type": "photo", + "sizes": { + "medium": { + "w": 600, + "h": 380, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 215, + "resize": "fit" + }, + "large": { + "w": 694, + "h": 439, + "resize": "fit" + } + } + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 18, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue Mar 25 15:09:54 +0000 2014", + "id": 448476878819823616, + "id_str": "448476878819823616", + "text": "@Herrackman @Talen_Lee @m1sp dragon blooded, that’s it. I kept coming up with Dragonborn and thinking no, no…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448476575403483136, + "in_reply_to_status_id_str": "448476575403483136", + "in_reply_to_user_id": 84528836, + "in_reply_to_user_id_str": "84528836", + "in_reply_to_screen_name": "Herrackman", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Mar 25 15:09:11 +0000 2014", + "id": 448476698020179968, + "id_str": "448476698020179968", + "text": "@Talen_Lee it’s simple. Cheap. Reliable. Effective.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448389348359032832, + "in_reply_to_status_id_str": "448389348359032832", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Mar 25 15:03:13 +0000 2014", + "id": 448475193934372864, + "id_str": "448475193934372864", + "text": "@puellavulnerata I wouldn’t call that completely normal", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448361874459881472, + "in_reply_to_status_id_str": "448361874459881472", + "in_reply_to_user_id": 54666727, + "in_reply_to_user_id_str": "54666727", + "in_reply_to_screen_name": "puellavulnerata", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Mar 25 14:58:05 +0000 2014", + "id": 448473905226055681, + "id_str": "448473905226055681", + "text": "@Talen_Lee @m1sp but my character was Zanzeibel, a name of much import in my own lore.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448336357711040512, + "in_reply_to_status_id_str": "448336357711040512", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Mar 25 14:57:37 +0000 2014", + "id": 448473785705189376, + "id_str": "448473785705189376", + "text": "@Talen_Lee @m1sp also, when I played Exalted, it was as the bronze tier ones, I can’t remember their name", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448336357711040512, + "in_reply_to_status_id_str": "448336357711040512", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Mar 25 14:55:38 +0000 2014", + "id": 448473288529170433, + "id_str": "448473288529170433", + "text": "@headhntr @thegrugq he’s got me on one count. But five or six years? I’ve only been refusing to talk to my husband since last night", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448265996701167616, + "in_reply_to_status_id_str": "448265996701167616", + "in_reply_to_user_id": 22404415, + "in_reply_to_user_id_str": "22404415", + "in_reply_to_screen_name": "headhntr", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Mar 25 14:55:07 +0000 2014", + "id": 448473155544567808, + "id_str": "448473155544567808", + "text": "RT @headhntr: Remember when Gen. Hayden called Snowden supporters \"...twenty-somethings who haven't talked to the opposite sex in five or s…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue Mar 25 01:11:56 +0000 2014", + "id": 448265996701167616, + "id_str": "448265996701167616", + "text": "Remember when Gen. Hayden called Snowden supporters \"...twenty-somethings who haven't talked to the opposite sex in five or six years.\" ?", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 22404415, + "id_str": "22404415" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 22, + "favorite_count": 16, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 22, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Mar 25 14:50:40 +0000 2014", + "id": 448472035925430272, + "id_str": "448472035925430272", + "text": "@m1sp did you see the picture I drew last night of using Tsovinar as a radio transmitter :p", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448471515651002369, + "in_reply_to_status_id_str": "448471515651002369", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Mar 25 14:47:47 +0000 2014", + "id": 448471311258750976, + "id_str": "448471311258750976", + "text": "@DaKnObCS it was just under $50. I was trying to use up a gift card but Amazon rejected it but I decided I really wanted it anyway lol", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448471052415688704, + "in_reply_to_status_id_str": "448471052415688704", + "in_reply_to_user_id": 49344236, + "in_reply_to_user_id_str": "49344236", + "in_reply_to_screen_name": "DaKnObCS", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Mar 25 14:45:42 +0000 2014", + "id": 448470787797049344, + "id_str": "448470787797049344", + "text": "@DaKnObCS it’s not an SDR actually", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448416455189889024, + "in_reply_to_status_id_str": "448416455189889024", + "in_reply_to_user_id": 49344236, + "in_reply_to_user_id_str": "49344236", + "in_reply_to_screen_name": "DaKnObCS", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Mar 25 14:45:11 +0000 2014", + "id": 448470655814868992, + "id_str": "448470655814868992", + "text": "@sixohsix yeah, that’s how I was figuring out who I was tuning into", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448395445715599360, + "in_reply_to_status_id_str": "448395445715599360", + "in_reply_to_user_id": 14297591, + "in_reply_to_user_id_str": "14297591", + "in_reply_to_screen_name": "sixohsix", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Mar 25 14:43:52 +0000 2014", + "id": 448470327455408128, + "id_str": "448470327455408128", + "text": "@Talen_Lee @m1sp Exalted *may* have been an influence.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448336357711040512, + "in_reply_to_status_id_str": "448336357711040512", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Mar 25 14:43:16 +0000 2014", + "id": 448470172710739968, + "id_str": "448470172710739968", + "text": "@m1sp 300 years later, after the internet is invented, some idiot thaws her out.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448335311710343168, + "in_reply_to_status_id_str": "448335311710343168", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Mar 25 04:59:07 +0000 2014", + "id": 448323169234210816, + "id_str": "448323169234210816", + "text": "@kyhwana in particular I feel like the way this lady just said \"myuuurder\" is not how an Australian would say it", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 448321700929626112, + "in_reply_to_status_id_str": "448321700929626112", + "in_reply_to_user_id": 30135560, + "in_reply_to_user_id_str": "30135560", + "in_reply_to_screen_name": "kyhwana", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Mar 25 04:57:47 +0000 2014", + "id": 448322832070897664, + "id_str": "448322832070897664", + "text": "@kyhwana so, sorry again, but no. You sound completely identical. \n\nActually I feel like there's a tiny diff I can't put my finger on", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 448321700929626112, + "in_reply_to_status_id_str": "448321700929626112", + "in_reply_to_user_id": 30135560, + "in_reply_to_user_id_str": "30135560", + "in_reply_to_screen_name": "kyhwana", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Mar 25 04:52:41 +0000 2014", + "id": 448321550107021312, + "id_str": "448321550107021312", + "text": "@kyhwana ... yes actually it's very easy sorry >.>", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 448321205762678784, + "in_reply_to_status_id_str": "448321205762678784", + "in_reply_to_user_id": 30135560, + "in_reply_to_user_id_str": "30135560", + "in_reply_to_screen_name": "kyhwana", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Mar 25 04:45:53 +0000 2014", + "id": 448319839497891841, + "id_str": "448319839497891841", + "text": "@danielwithmusic radio new zealand international on 15720 khz", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 448319392640548864, + "in_reply_to_status_id_str": "448319392640548864", + "in_reply_to_user_id": 73962161, + "in_reply_to_user_id_str": "73962161", + "in_reply_to_screen_name": "danielwithmusic", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "sl" + }, + { + "created_at": "Tue Mar 25 04:26:35 +0000 2014", + "id": 448314981957001216, + "id_str": "448314981957001216", + "text": "@chriseng they just break for no reason\n\nHonestly my sister is not very computer literate", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 448314833185042434, + "in_reply_to_status_id_str": "448314833185042434", + "in_reply_to_user_id": 13752192, + "in_reply_to_user_id_str": "13752192", + "in_reply_to_screen_name": "chriseng", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Mar 25 04:26:17 +0000 2014", + "id": 448314904744054784, + "id_str": "448314904744054784", + "text": "From this I have learned the shortwave version is more than thirty seconds in the future relative to the internet version of the station", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 6, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Mar 25 04:23:07 +0000 2014", + "id": 448314108979712000, + "id_str": "448314108979712000", + "text": "@Iskaros93 http://t.co/21kVU0rVIk", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448313760290070529, + "in_reply_to_status_id_str": "448313760290070529", + "in_reply_to_user_id": 173636707, + "in_reply_to_user_id_str": "173636707", + "in_reply_to_screen_name": "Iskaros93", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Tue Mar 25 04:15:25 +0000 2014", + "id": 448312171332894720, + "id_str": "448312171332894720", + "text": "Sweeeeeet I'm picking up New Zealand from Massachusetts this is the best! #AbadideaGotAShortwaveRadio", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 13, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Mar 25 03:25:56 +0000 2014", + "id": 448299717886488576, + "id_str": "448299717886488576", + "text": "My sister set off the fire alarm boiling hot dogs. IT'S GENETIC.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 6, + "favorite_count": 14, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Mar 25 02:33:30 +0000 2014", + "id": 448286522530598912, + "id_str": "448286522530598912", + "text": "RT @SimGenerator: Senior Java Developer Simulator 2014 http://t.co/AMpwpeysX7", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Thu Mar 20 13:00:06 +0000 2014", + "id": 446632274537488384, + "id_str": "446632274537488384", + "text": "Senior Java Developer Simulator 2014 http://t.co/AMpwpeysX7", + "source": "Simulator Generator", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 2282369803, + "id_str": "2282369803" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 133, + "favorite_count": 69, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ], + "media": [ + { + "id": 446632274315190272, + "id_str": "446632274315190272", + "indices": [ + 37, + 59 + ], + "media_url": "http://pbs.twimg.com/media/BjLBr-fIIAAEVR-.png", + "media_url_https": "https://pbs.twimg.com/media/BjLBr-fIIAAEVR-.png", + "url": "http://t.co/AMpwpeysX7", + "display_url": "pic.twitter.com/AMpwpeysX7", + "expanded_url": "http://twitter.com/SimGenerator/status/446632274537488384/photo/1", + "type": "photo", + "sizes": { + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 94, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 166, + "resize": "fit" + }, + "large": { + "w": 940, + "h": 260, + "resize": "fit" + } + } + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "pt" + }, + "retweet_count": 133, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "pt" + }, + { + "created_at": "Tue Mar 25 02:32:16 +0000 2014", + "id": 448286210516324352, + "id_str": "448286210516324352", + "text": "@ra6bit it came with a block diagram that specifically notes the DSP is “American”", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448285992836136960, + "in_reply_to_status_id_str": "448285992836136960", + "in_reply_to_user_id": 537333195, + "in_reply_to_user_id_str": "537333195", + "in_reply_to_screen_name": "ra6bit", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Mar 25 02:31:15 +0000 2014", + "id": 448285955666214912, + "id_str": "448285955666214912", + "text": "@vogon did you retweet that because the license plate is — \n\n— yes, yes you did", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 6326912, + "in_reply_to_user_id_str": "6326912", + "in_reply_to_screen_name": "vogon", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Mar 25 02:28:23 +0000 2014", + "id": 448285233784578048, + "id_str": "448285233784578048", + "text": "@ra6bit I think this is a pretty good catch for my first night with a cheap radio and a pile of wire http://t.co/X8kefccMFr", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448278937706438656, + "in_reply_to_status_id_str": "448278937706438656", + "in_reply_to_user_id": 537333195, + "in_reply_to_user_id_str": "537333195", + "in_reply_to_screen_name": "ra6bit", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue Mar 25 02:00:56 +0000 2014", + "id": 448278327422619648, + "id_str": "448278327422619648", + "text": "@ra6bit well what I mean is I picked up China Radio International but according to a website the exact transmitter is in Albania", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448278137982705664, + "in_reply_to_status_id_str": "448278137982705664", + "in_reply_to_user_id": 537333195, + "in_reply_to_user_id_str": "537333195", + "in_reply_to_screen_name": "ra6bit", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Mar 25 01:57:24 +0000 2014", + "id": 448277439454928896, + "id_str": "448277439454928896", + "text": "@ra6bit just learned I can’t trust the announced country name as for where the transmitter actually is, haha.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 537333195, + "in_reply_to_user_id_str": "537333195", + "in_reply_to_screen_name": "ra6bit", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Mar 25 01:43:42 +0000 2014", + "id": 448273991233716224, + "id_str": "448273991233716224", + "text": "RT @eassumption: It's easy to think \"personal\" and \"professional\" are separate when you aren't the one being told you can't see your dying …", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Tue Mar 25 00:12:50 +0000 2014", + "id": 448251121773989889, + "id_str": "448251121773989889", + "text": "It's easy to think \"personal\" and \"professional\" are separate when you aren't the one being told you can't see your dying spouse.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 165453873, + "id_str": "165453873" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 20, + "favorite_count": 19, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 20, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Mar 25 01:39:07 +0000 2014", + "id": 448272835086401536, + "id_str": "448272835086401536", + "text": "@frkbmb yes, ARM Jasmine, and I think others", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448272484425400320, + "in_reply_to_status_id_str": "448272484425400320", + "in_reply_to_user_id": 540721095, + "in_reply_to_user_id_str": "540721095", + "in_reply_to_screen_name": "frkbmb", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Mar 25 01:29:21 +0000 2014", + "id": 448270377291358208, + "id_str": "448270377291358208", + "text": "If I fall off a chair and die trying to tack copper wiring to the ceiling, the blame rests squarely with @ra6bit", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Mar 25 01:24:45 +0000 2014", + "id": 448269221873876993, + "id_str": "448269221873876993", + "text": "@innismir @ra6bit yes, but, you can see the sequence of thoughts here.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448267101644812288, + "in_reply_to_status_id_str": "448267101644812288", + "in_reply_to_user_id": 14061445, + "in_reply_to_user_id_str": "14061445", + "in_reply_to_screen_name": "innismir", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Mar 25 01:07:58 +0000 2014", + "id": 448264999589675008, + "id_str": "448264999589675008", + "text": "@dakami I don’t think it’s simple; I think it’s ancient. That parser has been shipping for like twenty years.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448263854619783168, + "in_reply_to_status_id_str": "448263854619783168", + "in_reply_to_user_id": 8917142, + "in_reply_to_user_id_str": "8917142", + "in_reply_to_screen_name": "dakami", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Mar 25 00:35:26 +0000 2014", + "id": 448256809607102465, + "id_str": "448256809607102465", + "text": "Oh my gods, there were still bugs in Office’s RTF parser?!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 9, + "favorite_count": 9, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Mar 25 00:35:03 +0000 2014", + "id": 448256714425774080, + "id_str": "448256714425774080", + "text": "RT @gcluley: Just previewing an Outlook email could infect your computer. Microsoft warns of zero-day flaw http://t.co/1Abo8tFq7Y", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Mon Mar 24 23:45:24 +0000 2014", + "id": 448244218558177280, + "id_str": "448244218558177280", + "text": "Just previewing an Outlook email could infect your computer. Microsoft warns of zero-day flaw http://t.co/1Abo8tFq7Y", + "source": "IFTTT", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 11791512, + "id_str": "11791512" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 63, + "favorite_count": 12, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/1Abo8tFq7Y", + "expanded_url": "http://bit.ly/1ptOHtN", + "display_url": "bit.ly/1ptOHtN", + "indices": [ + 94, + 116 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 63, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue Mar 25 00:33:12 +0000 2014", + "id": 448256248006602753, + "id_str": "448256248006602753", + "text": "@ra6bit you’ve just made me acutely aware I don’t know where our hot water heater actually is.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448255709336330240, + "in_reply_to_status_id_str": "448255709336330240", + "in_reply_to_user_id": 537333195, + "in_reply_to_user_id_str": "537333195", + "in_reply_to_screen_name": "ra6bit", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Mar 25 00:27:44 +0000 2014", + "id": 448254873986146304, + "id_str": "448254873986146304", + "text": "@ra6bit I am of course being slightly facetious. The next scheduled number station is midnight but I really doubt I could get it here.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448254287857319936, + "in_reply_to_status_id_str": "448254287857319936", + "in_reply_to_user_id": 537333195, + "in_reply_to_user_id_str": "537333195", + "in_reply_to_screen_name": "ra6bit", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Mar 25 00:26:47 +0000 2014", + "id": 448254634688532480, + "id_str": "448254634688532480", + "text": "RT @dangoodin001: Attackers to Basecamp: If you ever want to get back online, pay us or else http://t.co/PhQxUTpuwW", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Mon Mar 24 23:30:21 +0000 2014", + "id": 448240431432617984, + "id_str": "448240431432617984", + "text": "Attackers to Basecamp: If you ever want to get back online, pay us or else http://t.co/PhQxUTpuwW", + "source": "TweetDeck", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 14150736, + "id_str": "14150736" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 6, + "favorite_count": 1, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/PhQxUTpuwW", + "expanded_url": "http://ars.to/1kYUg3j", + "display_url": "ars.to/1kYUg3j", + "indices": [ + 75, + 97 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 6, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Tue Mar 25 00:21:29 +0000 2014", + "id": 448253300669169664, + "id_str": "448253300669169664", + "text": "@Talen_Lee why would a loving god leave us to hold seminars on why a loving god would allow wickedness?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448232559432847360, + "in_reply_to_status_id_str": "448232559432847360", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 7, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Tue Mar 25 00:07:07 +0000 2014", + "id": 448249685225275393, + "id_str": "448249685225275393", + "text": "@Talen_Lee @zhuowei @m1sp http://t.co/G3Az5lJUd2 Glory.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448234184499146752, + "in_reply_to_status_id_str": "448234184499146752", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 23:03:40 +0000 2014", + "id": 448233718101336064, + "id_str": "448233718101336064", + "text": "@zhuowei @m1sp borrowing from the future plot here but http://t.co/fPAA7qskOn", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 448228268576354304, + "in_reply_to_status_id_str": "448228268576354304", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 23:02:38 +0000 2014", + "id": 448233457622462465, + "id_str": "448233457622462465", + "text": "@landley resplendent in the reception ! ~", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 448230338192752640, + "in_reply_to_status_id_str": "448230338192752640", + "in_reply_to_user_id": 14326287, + "in_reply_to_user_id_str": "14326287", + "in_reply_to_screen_name": "landley", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 23:02:16 +0000 2014", + "id": 448233364496347136, + "id_str": "448233364496347136", + "text": "@AnonO_o no, it's dot on for industrial control, just a question of what exactly", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 448230326876536832, + "in_reply_to_status_id_str": "448230326876536832", + "in_reply_to_user_id": 346013865, + "in_reply_to_user_id_str": "346013865", + "in_reply_to_screen_name": "AnonO_o", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 22:49:24 +0000 2014", + "id": 448230127814848512, + "id_str": "448230127814848512", + "text": "\"You don't really want to go to dinner, you just want to take your new radio wardriving!\" m aaaay be", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 5, + "favorite_count": 28, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 22:43:45 +0000 2014", + "id": 448228706340077568, + "id_str": "448228706340077568", + "text": "@zhuowei my \"wat\" is not always literal ;)", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 448228268576354304, + "in_reply_to_status_id_str": "448228268576354304", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 22:41:18 +0000 2014", + "id": 448228088678465536, + "id_str": "448228088678465536", + "text": "@bibbleco her conversion backend is wolfram alpha", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 448226862234619904, + "in_reply_to_status_id_str": "448226862234619904", + "in_reply_to_user_id": 14776653, + "in_reply_to_user_id_str": "14776653", + "in_reply_to_screen_name": "bibbleco", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 22:40:52 +0000 2014", + "id": 448227980608016384, + "id_str": "448227980608016384", + "text": "@zhuowei bahaha wat.", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": 448227556685119488, + "in_reply_to_status_id_str": "448227556685119488", + "in_reply_to_user_id": 383083538, + "in_reply_to_user_id_str": "383083538", + "in_reply_to_screen_name": "zhuowei", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "tl" + }, + { + "created_at": "Mon Mar 24 22:25:29 +0000 2014", + "id": 448224108393017344, + "id_str": "448224108393017344", + "text": "@leviathanch it is some sort of common, short range device I am pretty sure. Just don't know what", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 448223855996600321, + "in_reply_to_status_id_str": "448223855996600321", + "in_reply_to_user_id": 393960191, + "in_reply_to_user_id_str": "393960191", + "in_reply_to_screen_name": "leviathanch", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 22:19:47 +0000 2014", + "id": 448222674545033217, + "id_str": "448222674545033217", + "text": "@Talen_Lee that one just SOUNDS Mormon. Which is totally different!", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 448222409808543744, + "in_reply_to_status_id_str": "448222409808543744", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 22:19:07 +0000 2014", + "id": 448222504612818944, + "id_str": "448222504612818944", + "text": "@Talen_Lee actually I think she \"converted\" like five or six different people out of JW over a few years", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 448222233471631361, + "in_reply_to_status_id_str": "448222233471631361", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 22:18:37 +0000 2014", + "id": 448222378838200320, + "id_str": "448222378838200320", + "text": "@shiroihane no, it's 13560 which is ISM so it's \"basically literally anything\" and probably close by.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 448222104887263232, + "in_reply_to_status_id_str": "448222104887263232", + "in_reply_to_user_id": 48861375, + "in_reply_to_user_id_str": "48861375", + "in_reply_to_screen_name": "shiroihane", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 22:18:03 +0000 2014", + "id": 448222238496796672, + "id_str": "448222238496796672", + "text": "@Talen_Lee so the house was full of their literature and I became very familiar with their weirdly uniform style", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 448221674098290688, + "in_reply_to_status_id_str": "448221674098290688", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 22:17:33 +0000 2014", + "id": 448222112176963584, + "id_str": "448222112176963584", + "text": "@Talen_Lee my mother went through a phase of being a Fundie Classic on a crusade to save people from JW", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 448221674098290688, + "in_reply_to_status_id_str": "448221674098290688", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 22:16:30 +0000 2014", + "id": 448221848128745472, + "id_str": "448221848128745472", + "text": "@failathon sorry, it's a handheld audio one.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 448220984135266304, + "in_reply_to_status_id_str": "448220984135266304", + "in_reply_to_user_id": 208791044, + "in_reply_to_user_id_str": "208791044", + "in_reply_to_screen_name": "failathon", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 22:11:43 +0000 2014", + "id": 448220644929724416, + "id_str": "448220644929724416", + "text": "@Talen_Lee shortwave is noted for its nationwide religious broadcasts. I could pick out a JW from a Fundie Classic from a million miles.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 448220384630816768, + "in_reply_to_status_id_str": "448220384630816768", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 22:11:05 +0000 2014", + "id": 448220485705535489, + "id_str": "448220485705535489", + "text": "It's actually not morse. It slow-beeps anywhere from 4 to 30 times followed by exactly 10 fast beeps.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 22:10:15 +0000 2014", + "id": 448220275545743360, + "id_str": "448220275545743360", + "text": "RT @Mamex_Toomoe: @0xabad1dea Morse religion", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Mon Mar 24 22:09:48 +0000 2014", + "id": 448220162018533377, + "id_str": "448220162018533377", + "text": "@0xabad1dea Morse religion", + "source": "TweetDeck", + "truncated": false, + "in_reply_to_status_id": 448220004090396675, + "in_reply_to_status_id_str": "448220004090396675", + "in_reply_to_user_id": 126030998, + "in_reply_to_user_id_str": "126030998", + "in_reply_to_screen_name": "0xabad1dea", + "user": { + "id": 548705190, + "id_str": "548705190" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 1, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "0xabad1dea", + "name": "Melissa", + "id": 126030998, + "id_str": "126030998", + "indices": [ + 0, + 11 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "lang": "da" + }, + "retweet_count": 2, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "da" + }, + { + "created_at": "Mon Mar 24 22:09:11 +0000 2014", + "id": 448220004090396675, + "id_str": "448220004090396675", + "text": "Things I can pick up with my new radio: religion, religion, religion, Spanish religion, and something that goes beep on an ISM frequency", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 7, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 21:16:44 +0000 2014", + "id": 448206804909305858, + "id_str": "448206804909305858", + "text": "@HanakoGames because it’s all about boys, boys, straight straight boys, everything must be for their demographic !", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448203457380773888, + "in_reply_to_status_id_str": "448203457380773888", + "in_reply_to_user_id": 233343528, + "in_reply_to_user_id_str": "233343528", + "in_reply_to_screen_name": "HanakoGames", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 21:14:31 +0000 2014", + "id": 448206246043480066, + "id_str": "448206246043480066", + "text": "RT @jbdunne: Latest smartwatch design http://t.co/5htadP9y1N", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Mon Mar 24 18:52:41 +0000 2014", + "id": 448170553447170048, + "id_str": "448170553447170048", + "text": "Latest smartwatch design http://t.co/5htadP9y1N", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 90169556, + "id_str": "90169556" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 6309, + "favorite_count": 3461, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ], + "media": [ + { + "id": 448170553451364352, + "id_str": "448170553451364352", + "indices": [ + 25, + 47 + ], + "media_url": "http://pbs.twimg.com/media/Bjg4vm1CQAA-r2b.png", + "media_url_https": "https://pbs.twimg.com/media/Bjg4vm1CQAA-r2b.png", + "url": "http://t.co/5htadP9y1N", + "display_url": "pic.twitter.com/5htadP9y1N", + "expanded_url": "http://twitter.com/jbdunne/status/448170553447170048/photo/1", + "type": "photo", + "sizes": { + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 253, + "resize": "fit" + }, + "medium": { + "w": 487, + "h": 362, + "resize": "fit" + }, + "large": { + "w": 487, + "h": 362, + "resize": "fit" + } + } + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 6309, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 21:13:34 +0000 2014", + "id": 448206010050965504, + "id_str": "448206010050965504", + "text": "@akopa field trip!!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448205818584780800, + "in_reply_to_status_id_str": "448205818584780800", + "in_reply_to_user_id": 14314798, + "in_reply_to_user_id_str": "14314798", + "in_reply_to_screen_name": "akopa", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "nl" + }, + { + "created_at": "Mon Mar 24 21:13:34 +0000 2014", + "id": 448206010050965504, + "id_str": "448206010050965504", + "text": "@akopa field trip!!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448205818584780800, + "in_reply_to_status_id_str": "448205818584780800", + "in_reply_to_user_id": 14314798, + "in_reply_to_user_id_str": "14314798", + "in_reply_to_screen_name": "akopa", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "nl" + }, + { + "created_at": "Mon Mar 24 21:01:37 +0000 2014", + "id": 448203000105160704, + "id_str": "448203000105160704", + "text": "I am advised not to use antenna extension in the place of much thunder.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 8, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 21:00:53 +0000 2014", + "id": 448202818814771200, + "id_str": "448202818814771200", + "text": "This tiny radio came with *twelve feet* of thin wiring with a clip on the end which is \"antenna extension\"", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 20:59:59 +0000 2014", + "id": 448202588803334144, + "id_str": "448202588803334144", + "text": "@gdude2002 \\o/", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 448202052330868736, + "in_reply_to_status_id_str": "448202052330868736", + "in_reply_to_user_id": 25127603, + "in_reply_to_user_id_str": "25127603", + "in_reply_to_screen_name": "gdude2002", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Mon Mar 24 20:39:05 +0000 2014", + "id": 448197329754279936, + "id_str": "448197329754279936", + "text": "@bean_dad there is literally one on my desk right now.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 448197192873168896, + "in_reply_to_status_id_str": "448197192873168896", + "in_reply_to_user_id": 93821919, + "in_reply_to_user_id_str": "93821919", + "in_reply_to_screen_name": "bean_dad", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 20:38:47 +0000 2014", + "id": 448197255942918144, + "id_str": "448197255942918144", + "text": "@qole I'm referring to the media who I've spotted calling people up to age 35 millennials.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 448195892793733120, + "in_reply_to_status_id_str": "448195892793733120", + "in_reply_to_user_id": 16121811, + "in_reply_to_user_id_str": "16121811", + "in_reply_to_screen_name": "qole", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 20:15:45 +0000 2014", + "id": 448191459955834880, + "id_str": "448191459955834880", + "text": "@akopa maybe but I don't really have a use for it right now", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 448190454761533440, + "in_reply_to_status_id_str": "448190454761533440", + "in_reply_to_user_id": 14314798, + "in_reply_to_user_id_str": "14314798", + "in_reply_to_screen_name": "akopa", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 20:09:00 +0000 2014", + "id": 448189758586781696, + "id_str": "448189758586781696", + "text": "@danikayser84 pl-380 apparently? it has a mini-usb port. Not micro, nooo, that'd be too easy", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 448189206024978434, + "in_reply_to_status_id_str": "448189206024978434", + "in_reply_to_user_id": 181023085, + "in_reply_to_user_id_str": "181023085", + "in_reply_to_screen_name": "DragonGoddessDS", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 20:05:05 +0000 2014", + "id": 448188773214724096, + "id_str": "448188773214724096", + "text": "Oh look, another radio! They're breeding. That's my story and I'm sticking to it http://t.co/jVMjgJVWQ3", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 8, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 19:54:21 +0000 2014", + "id": 448186072305258496, + "id_str": "448186072305258496", + "text": "@eevee at least it was “only” a thousand dollars which is on a personal scale (though certainly not a trivial amount)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448185802707582976, + "in_reply_to_status_id_str": "448185802707582976", + "in_reply_to_user_id": 14412937, + "in_reply_to_user_id_str": "14412937", + "in_reply_to_screen_name": "eevee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 19:47:44 +0000 2014", + "id": 448184406533242881, + "id_str": "448184406533242881", + "text": "@thegrugq they’re broadcasting on public walkie talkie channels, chief. I had my walkie talkie on.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448184138361606144, + "in_reply_to_status_id_str": "448184138361606144", + "in_reply_to_user_id": 18983429, + "in_reply_to_user_id_str": "18983429", + "in_reply_to_screen_name": "thegrugq", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 19:41:47 +0000 2014", + "id": 448182910978654209, + "id_str": "448182910978654209", + "text": "Even if in general he’s really nice/a good leader. Absolute deal breaker to be publicly on the “no” side of my civil rights.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 10, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 19:39:14 +0000 2014", + "id": 448182270592303105, + "id_str": "448182270592303105", + "text": "@pbaylies oh, she gives the answer, it’s just her “loading screen” message", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448182111586222080, + "in_reply_to_status_id_str": "448182111586222080", + "in_reply_to_user_id": 302255160, + "in_reply_to_user_id_str": "302255160", + "in_reply_to_screen_name": "pbaylies", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 19:38:44 +0000 2014", + "id": 448182141596483584, + "id_str": "448182141596483584", + "text": "I personally would not feel safe/welcome working under a CEO who was known to have financially opposed my minority group’s civil rights", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 24, + "favorite_count": 20, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 19:35:39 +0000 2014", + "id": 448181366371667968, + "id_str": "448181366371667968", + "text": "“How many feet in a mile?” “Consulting my tea leaves”\n\nDangit Siri you can practice spiritualism on your own time!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 6, + "favorite_count": 10, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 19:31:43 +0000 2014", + "id": 448180378785034241, + "id_str": "448180378785034241", + "text": "@eevee @atweetingtwit the “marriage and civil unions are equivalent even if we call them different things” operator", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448180016103174144, + "in_reply_to_status_id_str": "448180016103174144", + "in_reply_to_user_id": 14412937, + "in_reply_to_user_id_str": "14412937", + "in_reply_to_screen_name": "eevee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 7, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 19:30:16 +0000 2014", + "id": 448180013259825152, + "id_str": "448180013259825152", + "text": "@demize95 yes that one exactly", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448179695620603904, + "in_reply_to_status_id_str": "448179695620603904", + "in_reply_to_user_id": 137133048, + "in_reply_to_user_id_str": "137133048", + "in_reply_to_screen_name": "demize95", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 19:28:22 +0000 2014", + "id": 448179534777835522, + "id_str": "448179534777835522", + "text": "@demize95 it was about $60 I think. It’s called a “base camp,” it’s larger than the kind you buy in pairs and clip to your belt", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448179344112746496, + "in_reply_to_status_id_str": "448179344112746496", + "in_reply_to_user_id": 137133048, + "in_reply_to_user_id_str": "137133048", + "in_reply_to_screen_name": "demize95", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 19:26:52 +0000 2014", + "id": 448179157571477504, + "id_str": "448179157571477504", + "text": "@demize95 but it refuses to go high power mode for the “family” channels", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448178871108505600, + "in_reply_to_status_id_str": "448178871108505600", + "in_reply_to_user_id": 137133048, + "in_reply_to_user_id_str": "137133048", + "in_reply_to_screen_name": "demize95", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 19:26:30 +0000 2014", + "id": 448179066303414272, + "id_str": "448179066303414272", + "text": "@demize95 the one I’m using has variable power. When it scans the licensed channels, a little “H” for High pops up", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448178871108505600, + "in_reply_to_status_id_str": "448178871108505600", + "in_reply_to_user_id": 137133048, + "in_reply_to_user_id_str": "137133048", + "in_reply_to_screen_name": "demize95", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 19:24:51 +0000 2014", + "id": 448178650442371072, + "id_str": "448178650442371072", + "text": "@demize95 though given how rarely I pick up anything here I doubt they were in that low power mode", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448178042901250048, + "in_reply_to_status_id_str": "448178042901250048", + "in_reply_to_user_id": 137133048, + "in_reply_to_user_id_str": "137133048", + "in_reply_to_screen_name": "demize95", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 19:24:06 +0000 2014", + "id": 448178462428512256, + "id_str": "448178462428512256", + "text": "@demize95 oh technically if you operate in really low power you can use these channels without a license, forgot that detail", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448178042901250048, + "in_reply_to_status_id_str": "448178042901250048", + "in_reply_to_user_id": 137133048, + "in_reply_to_user_id_str": "137133048", + "in_reply_to_screen_name": "demize95", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 19:22:13 +0000 2014", + "id": 448177988912553984, + "id_str": "448177988912553984", + "text": "@demize95 well in Canada you don’t need a license for these same channels. http://t.co/3qp07Ftlmg", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448177853813624832, + "in_reply_to_status_id_str": "448177853813624832", + "in_reply_to_user_id": 137133048, + "in_reply_to_user_id_str": "137133048", + "in_reply_to_screen_name": "demize95", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 19:21:05 +0000 2014", + "id": 448177703582441472, + "id_str": "448177703582441472", + "text": "@demize95 I was joking about the FCC raiding children, pretty sure they’d only bother in response to formal complaints", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448177013770051584, + "in_reply_to_status_id_str": "448177013770051584", + "in_reply_to_user_id": 137133048, + "in_reply_to_user_id_str": "137133048", + "in_reply_to_screen_name": "demize95", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 19:19:38 +0000 2014", + "id": 448177336488583168, + "id_str": "448177336488583168", + "text": "@demize95 they are two logically distinct sets of channels with different names and the radio is clearly marked as supporting both", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448177013770051584, + "in_reply_to_status_id_str": "448177013770051584", + "in_reply_to_user_id": 137133048, + "in_reply_to_user_id_str": "137133048", + "in_reply_to_screen_name": "demize95", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 19:17:43 +0000 2014", + "id": 448176856018472960, + "id_str": "448176856018472960", + "text": "@demize95 they can either revoke your license or fine you for not having a license to keep the channels clear for Serious Business", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448176572361486337, + "in_reply_to_status_id_str": "448176572361486337", + "in_reply_to_user_id": 137133048, + "in_reply_to_user_id_str": "137133048", + "in_reply_to_screen_name": "demize95", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 19:17:16 +0000 2014", + "id": 448176739215507456, + "id_str": "448176739215507456", + "text": "@demize95 I believe the idea is that some channels are intended for commercial usage and if you’re spamming it for the lulz", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448176572361486337, + "in_reply_to_status_id_str": "448176572361486337", + "in_reply_to_user_id": 137133048, + "in_reply_to_user_id_str": "137133048", + "in_reply_to_screen_name": "demize95", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 19:15:50 +0000 2014", + "id": 448176379541348354, + "id_str": "448176379541348354", + "text": "@WhiteMageSlave maybe they should invest in one larger computer instead of trying to use an 8-bit Beowulf cluster", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448176082895003649, + "in_reply_to_status_id_str": "448176082895003649", + "in_reply_to_user_id": 90791634, + "in_reply_to_user_id_str": "90791634", + "in_reply_to_screen_name": "WhiteMageSlave", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 19:13:00 +0000 2014", + "id": 448175668476780545, + "id_str": "448175668476780545", + "text": "@sfan55 (and they were using a channel you need a license for :)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448174983773442049, + "in_reply_to_status_id_str": "448174983773442049", + "in_reply_to_user_id": 845953692, + "in_reply_to_user_id_str": "845953692", + "in_reply_to_screen_name": "sfan55", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 19:12:31 +0000 2014", + "id": 448175545248141312, + "id_str": "448175545248141312", + "text": "@demize95 yes. It will clearly tell you in the manual which are which. But I get the impression the repercussions are… minimal", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448175012638244864, + "in_reply_to_status_id_str": "448175012638244864", + "in_reply_to_user_id": 137133048, + "in_reply_to_user_id_str": "137133048", + "in_reply_to_screen_name": "demize95", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 19:11:56 +0000 2014", + "id": 448175398606893056, + "id_str": "448175398606893056", + "text": "@sfan55 walkie talkies can go for miles in good conditions, especially in the high power mode you need a license for", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448174983773442049, + "in_reply_to_status_id_str": "448174983773442049", + "in_reply_to_user_id": 845953692, + "in_reply_to_user_id_str": "845953692", + "in_reply_to_screen_name": "sfan55", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 19:08:09 +0000 2014", + "id": 448174448957734912, + "id_str": "448174448957734912", + "text": "@sfan55 walkie talkies have orders of magnitude more range and are kiddie birthday present sized in terms of cost.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448174221966204928, + "in_reply_to_status_id_str": "448174221966204928", + "in_reply_to_user_id": 845953692, + "in_reply_to_user_id_str": "845953692", + "in_reply_to_screen_name": "sfan55", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 19:05:17 +0000 2014", + "id": 448173725612273665, + "id_str": "448173725612273665", + "text": "@xkeepah with retailer markup you’re looking at more like $15 to $20 each but I bulk ordered 10 for just over 100 dollars last year", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448173346413219840, + "in_reply_to_status_id_str": "448173346413219840", + "in_reply_to_user_id": 61653331, + "in_reply_to_user_id_str": "61653331", + "in_reply_to_screen_name": "xkeepah", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 19:04:28 +0000 2014", + "id": 448173520045219840, + "id_str": "448173520045219840", + "text": "@xkeepah this is what my Defcon talk was about last year http://t.co/Gzh4llL3EZ", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448173346413219840, + "in_reply_to_status_id_str": "448173346413219840", + "in_reply_to_user_id": 61653331, + "in_reply_to_user_id_str": "61653331", + "in_reply_to_screen_name": "xkeepah", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 19:03:43 +0000 2014", + "id": 448173333373546496, + "id_str": "448173333373546496", + "text": "I think the kids with the walkie talkies were on school busses and now I’m jealous I never thought of that when I was little", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 19:02:45 +0000 2014", + "id": 448173086982946816, + "id_str": "448173086982946816", + "text": "@Kufat no >.> … I don’t think so. It was 29 or so wasn’t it?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448172950685229056, + "in_reply_to_status_id_str": "448172950685229056", + "in_reply_to_user_id": 207691003, + "in_reply_to_user_id_str": "207691003", + "in_reply_to_screen_name": "Kufat", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 19:01:23 +0000 2014", + "id": 448172745390837762, + "id_str": "448172745390837762", + "text": "@xkeepah I guess you’ve, uh, missed out on the $10 SDR revolution", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448172527391498240, + "in_reply_to_status_id_str": "448172527391498240", + "in_reply_to_user_id": 61653331, + "in_reply_to_user_id_str": "61653331", + "in_reply_to_screen_name": "xkeepah", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 18:58:28 +0000 2014", + "id": 448172008610988032, + "id_str": "448172008610988032", + "text": "@xkeepah it’s a midland basecamp with a crank. Any ol’ SDR + some scripting would also work", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448171755245293568, + "in_reply_to_status_id_str": "448171755245293568", + "in_reply_to_user_id": 61653331, + "in_reply_to_user_id_str": "61653331", + "in_reply_to_screen_name": "xkeepah", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 18:55:51 +0000 2014", + "id": 448171350377922560, + "id_str": "448171350377922560", + "text": "@rmd1023 it’s a handheld radio that automatically scans the local walkie talkie frequencies.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448171173114052608, + "in_reply_to_status_id_str": "448171173114052608", + "in_reply_to_user_id": 14821220, + "in_reply_to_user_id_str": "14821220", + "in_reply_to_screen_name": "rmd1023", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 18:52:45 +0000 2014", + "id": 448170572334514177, + "id_str": "448170572334514177", + "text": "@USSJoin yeah", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448170373948116994, + "in_reply_to_status_id_str": "448170373948116994", + "in_reply_to_user_id": 7084032, + "in_reply_to_user_id_str": "7084032", + "in_reply_to_screen_name": "USSJoin", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Mon Mar 24 18:52:37 +0000 2014", + "id": 448170538826223616, + "id_str": "448170538826223616", + "text": ".@katzmandu it’s walkie talkies", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448170298991337472, + "in_reply_to_status_id_str": "448170298991337472", + "in_reply_to_user_id": 13127002, + "in_reply_to_user_id_str": "13127002", + "in_reply_to_screen_name": "katzmandu", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 18:51:09 +0000 2014", + "id": 448170167852617728, + "id_str": "448170167852617728", + "text": "Picking up a bunch of young children on a channel you technically need a license for. Mental image of FCC raiding the birthday party", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 8, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 18:43:13 +0000 2014", + "id": 448168170327920640, + "id_str": "448168170327920640", + "text": "RT @computionist: In other news, gay hater Brendan Eich is now the CEO of Mozilla http://t.co/EntA3OONYu", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Mon Mar 24 18:01:37 +0000 2014", + "id": 448157703592882176, + "id_str": "448157703592882176", + "text": "In other news, gay hater Brendan Eich is now the CEO of Mozilla http://t.co/EntA3OONYu", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 166725432, + "id_str": "166725432" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 41, + "favorite_count": 5, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/EntA3OONYu", + "expanded_url": "http://blogs.wsj.com/digits/2014/03/24/mozilla-picks-insider-eich-as-new-ceo/?mod=WSJBlog", + "display_url": "blogs.wsj.com/digits/2014/03…", + "indices": [ + 64, + 86 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": true, + "lang": "en" + }, + "retweet_count": 41, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 18:31:31 +0000 2014", + "id": 448165226291417088, + "id_str": "448165226291417088", + "text": ".@greerga another datapoint for my theory that Complaining is Magic", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448164779333390336, + "in_reply_to_status_id_str": "448164779333390336", + "in_reply_to_user_id": 313743868, + "in_reply_to_user_id_str": "313743868", + "in_reply_to_screen_name": "greerga", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 5, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 18:31:17 +0000 2014", + "id": 448165167072043008, + "id_str": "448165167072043008", + "text": "RT @greerga: @0xabad1dea Apparently you just needed to complain about not hearing anything to get them talking again.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Mon Mar 24 18:29:44 +0000 2014", + "id": 448164779333390336, + "id_str": "448164779333390336", + "text": "@0xabad1dea Apparently you just needed to complain about not hearing anything to get them talking again.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 448164290714144768, + "in_reply_to_status_id_str": "448164290714144768", + "in_reply_to_user_id": 126030998, + "in_reply_to_user_id_str": "126030998", + "in_reply_to_screen_name": "0xabad1dea", + "user": { + "id": 313743868, + "id_str": "313743868" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 1, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "0xabad1dea", + "name": "MeliSSL", + "id": 126030998, + "id_str": "126030998", + "indices": [ + 0, + 11 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 1, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 18:27:48 +0000 2014", + "id": 448164290714144768, + "id_str": "448164290714144768", + "text": "The weather must be just right because I went from hearing nothing on my scanner for days to hearing twelve things since last night", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 17:53:57 +0000 2014", + "id": 448155772388532224, + "id_str": "448155772388532224", + "text": "Well, I'm stumped. Someone submitted a question to the hate blog I can't answer. http://t.co/kNByx2S1gK", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 7, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 17:40:21 +0000 2014", + "id": 448152349501292544, + "id_str": "448152349501292544", + "text": "@bcrypt here is my list which has some different ones https://t.co/zriSQTUEv9", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448151587152592896, + "in_reply_to_status_id_str": "448151587152592896", + "in_reply_to_user_id": 968881477, + "in_reply_to_user_id_str": "968881477", + "in_reply_to_screen_name": "bcrypt", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 17:38:57 +0000 2014", + "id": 448151998110920704, + "id_str": "448151998110920704", + "text": "@blowdart the government has a tumblr. Several, in fact.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448151516474376193, + "in_reply_to_status_id_str": "448151516474376193", + "in_reply_to_user_id": 1847381, + "in_reply_to_user_id_str": "1847381", + "in_reply_to_screen_name": "blowdart", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 17:36:38 +0000 2014", + "id": 448151413978566656, + "id_str": "448151413978566656", + "text": "The consensus is I can raid playgrounds all I want as long as I don’t bring my husband who looks exactly like a Hollywood pedophile", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 6, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 17:35:22 +0000 2014", + "id": 448151095421194240, + "id_str": "448151095421194240", + "text": "@demize95 @landley eighteen, never mind that I looked thirteen! :p", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448150893633232896, + "in_reply_to_status_id_str": "448150893633232896", + "in_reply_to_user_id": 137133048, + "in_reply_to_user_id_str": "137133048", + "in_reply_to_screen_name": "demize95", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 17:33:51 +0000 2014", + "id": 448150717434724352, + "id_str": "448150717434724352", + "text": "@landley @demize95 to be fair my husband does look like a Hollywood pedophile", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448150185110020096, + "in_reply_to_status_id_str": "448150185110020096", + "in_reply_to_user_id": 14326287, + "in_reply_to_user_id_str": "14326287", + "in_reply_to_screen_name": "landley", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 17:33:26 +0000 2014", + "id": 448150612048633856, + "id_str": "448150612048633856", + "text": "@Kufat the one *nearest* to me is a school but most elementary schools let people use the playground and soccer field on weekends afaik", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448150292962762752, + "in_reply_to_status_id_str": "448150292962762752", + "in_reply_to_user_id": 207691003, + "in_reply_to_user_id_str": "207691003", + "in_reply_to_screen_name": "Kufat", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 17:31:06 +0000 2014", + "id": 448150021519998977, + "id_str": "448150021519998977", + "text": "@Kufat I’m not aware of any playgrounds not open to the general public except maybe after dark", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448149480005963776, + "in_reply_to_status_id_str": "448149480005963776", + "in_reply_to_user_id": 207691003, + "in_reply_to_user_id_str": "207691003", + "in_reply_to_screen_name": "Kufat", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 17:17:59 +0000 2014", + "id": 448146721584197632, + "id_str": "448146721584197632", + "text": "@munin @DarthNull okay. Let me put it this way.\n\nI’m not allowed to take pizza out of the oven because I keep burning myself.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448146559499112448, + "in_reply_to_status_id_str": "448146559499112448", + "in_reply_to_user_id": 8513352, + "in_reply_to_user_id_str": "8513352", + "in_reply_to_screen_name": "munin", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 17:14:53 +0000 2014", + "id": 448145940822904832, + "id_str": "448145940822904832", + "text": "@DarthNull oh, in theory, but odds are about 30 to 1 I’d just break it because I have very poor skillz", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448145602476769281, + "in_reply_to_status_id_str": "448145602476769281", + "in_reply_to_user_id": 12287142, + "in_reply_to_user_id_str": "12287142", + "in_reply_to_screen_name": "DarthNull", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 17:11:55 +0000 2014", + "id": 448145195948060672, + "id_str": "448145195948060672", + "text": "@Jennimason0990 well it was just last week that a lady thought I was young enough the ring demanded an explanation.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448145030398476288, + "in_reply_to_status_id_str": "448145030398476288", + "in_reply_to_user_id": 485288297, + "in_reply_to_user_id_str": "485288297", + "in_reply_to_screen_name": "Jennimason0990", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 17:09:32 +0000 2014", + "id": 448144596351344640, + "id_str": "448144596351344640", + "text": "On a scale from 1 to SWAT how likely is it the cops will be called on me if I climb on top of a playground to get better reception", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 6, + "favorite_count": 15, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 17:07:31 +0000 2014", + "id": 448144090199515136, + "id_str": "448144090199515136", + "text": "@apiary will we destroy ourselves?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448144019110248448, + "in_reply_to_status_id_str": "448144019110248448", + "in_reply_to_user_id": 17897532, + "in_reply_to_user_id_str": "17897532", + "in_reply_to_screen_name": "apiary", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 16:55:45 +0000 2014", + "id": 448141128022638592, + "id_str": "448141128022638592", + "text": "@DrPizza @blowdart though it’s more common just to make a Purity Pledge and wear a Purity Ring you replace with your wedding ring", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448140266185449472, + "in_reply_to_status_id_str": "448140266185449472", + "in_reply_to_user_id": 11375732, + "in_reply_to_user_id_str": "11375732", + "in_reply_to_screen_name": "DrPizza", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 16:55:13 +0000 2014", + "id": 448140991347032065, + "id_str": "448140991347032065", + "text": "@DrPizza @blowdart I can attest that Purity Balls are a real thing the Daily Mail did not make up", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448140266185449472, + "in_reply_to_status_id_str": "448140266185449472", + "in_reply_to_user_id": 11375732, + "in_reply_to_user_id_str": "11375732", + "in_reply_to_screen_name": "DrPizza", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 16:53:51 +0000 2014", + "id": 448140648815017984, + "id_str": "448140648815017984", + "text": "@DrPizza OH I see you’ve discovered the American Christian tradition of the Purity Ball.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448139343723769856, + "in_reply_to_status_id_str": "448139343723769856", + "in_reply_to_user_id": 11375732, + "in_reply_to_user_id_str": "11375732", + "in_reply_to_screen_name": "DrPizza", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 16:36:11 +0000 2014", + "id": 448136205193183232, + "id_str": "448136205193183232", + "text": "It seems Tumblr has gone 2FA http://t.co/a8FlaUBlQK", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 8, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 16:35:55 +0000 2014", + "id": 448136135592919041, + "id_str": "448136135592919041", + "text": "Deleted because I found the answer to my question on a different page. Sorry for haste.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 16:04:09 +0000 2014", + "id": 448128141266276352, + "id_str": "448128141266276352", + "text": "@twallutis @vrunt they’re for feeding animals", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448127020825083906, + "in_reply_to_status_id_str": "448127020825083906", + "in_reply_to_user_id": 49129829, + "in_reply_to_user_id_str": "49129829", + "in_reply_to_screen_name": "twallutis", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 15:57:12 +0000 2014", + "id": 448126394011484160, + "id_str": "448126394011484160", + "text": "RT @vrunt: this is why you always check the reviews before ordering one thousand live crickets http://t.co/473fhXpgMR", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sat Mar 22 22:29:14 +0000 2014", + "id": 447500276648652801, + "id_str": "447500276648652801", + "text": "this is why you always check the reviews before ordering one thousand live crickets http://t.co/473fhXpgMR", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 15062828, + "id_str": "15062828" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1746, + "favorite_count": 1896, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ], + "media": [ + { + "id": 447500276472496129, + "id_str": "447500276472496129", + "indices": [ + 84, + 106 + ], + "media_url": "http://pbs.twimg.com/media/BjXXIWgIQAEs0Ge.jpg", + "media_url_https": "https://pbs.twimg.com/media/BjXXIWgIQAEs0Ge.jpg", + "url": "http://t.co/473fhXpgMR", + "display_url": "pic.twitter.com/473fhXpgMR", + "expanded_url": "http://twitter.com/vrunt/status/447500276648652801/photo/1", + "type": "photo", + "sizes": { + "small": { + "w": 340, + "h": 604, + "resize": "fit" + }, + "large": { + "w": 576, + "h": 1024, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 576, + "h": 1024, + "resize": "fit" + } + } + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 1746, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 15:56:23 +0000 2014", + "id": 448126187278458880, + "id_str": "448126187278458880", + "text": "@mcclure111 @Jennimason0990 hahaha okay.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448126112330039297, + "in_reply_to_status_id_str": "448126112330039297", + "in_reply_to_user_id": 312426579, + "in_reply_to_user_id_str": "312426579", + "in_reply_to_screen_name": "mcclure111", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "tl" + }, + { + "created_at": "Mon Mar 24 15:54:41 +0000 2014", + "id": 448125761355280384, + "id_str": "448125761355280384", + "text": "@Jennimason0990 @mcclure111 I *did* retweet the actual news first I am pretty sure ! :p", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448125542618132480, + "in_reply_to_status_id_str": "448125542618132480", + "in_reply_to_user_id": 485288297, + "in_reply_to_user_id_str": "485288297", + "in_reply_to_screen_name": "Jennimason0990", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 15:46:00 +0000 2014", + "id": 448123575086886912, + "id_str": "448123575086886912", + "text": "“This app was created by So-and-So, a 16yo iOS developer! Rated Age 17+ for the following…”", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 27, + "favorite_count": 23, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 15:30:52 +0000 2014", + "id": 448119766931476480, + "id_str": "448119766931476480", + "text": "Due to the unreasonableness of human psychology I now get to be scared of a train coming up an escalator at me forever", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 7, + "favorite_count": 17, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 15:29:57 +0000 2014", + "id": 448119536156672000, + "id_str": "448119536156672000", + "text": "RT @SeamusBellamy: Holy crap. “ 32 injured when train derails, rides up escalator at Chicago's O'Hare Airport http://t.co/QZ3FHJsV2B http:/…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Mon Mar 24 12:16:29 +0000 2014", + "id": 448070847429738496, + "id_str": "448070847429738496", + "text": "Holy crap. “ 32 injured when train derails, rides up escalator at Chicago's O'Hare Airport http://t.co/QZ3FHJsV2B http://t.co/TOrTsqn1SN”", + "source": "Tweetbot for Mac", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 128321519, + "id_str": "128321519" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 112, + "favorite_count": 24, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/QZ3FHJsV2B", + "expanded_url": "http://on.mash.to/OR7m7i", + "display_url": "on.mash.to/OR7m7i", + "indices": [ + 91, + 113 + ] + } + ], + "user_mentions": [ + + ], + "media": [ + { + "id": 448065068203540480, + "id_str": "448065068203540480", + "indices": [ + 114, + 136 + ], + "media_url": "http://pbs.twimg.com/media/BjfYzjqIgAA4fcQ.jpg", + "media_url_https": "https://pbs.twimg.com/media/BjfYzjqIgAA4fcQ.jpg", + "url": "http://t.co/TOrTsqn1SN", + "display_url": "pic.twitter.com/TOrTsqn1SN", + "expanded_url": "http://twitter.com/mashable/status/448065068450975744/photo/1", + "type": "photo", + "sizes": { + "medium": { + "w": 600, + "h": 338, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 191, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 1024, + "h": 576, + "resize": "fit" + } + }, + "source_status_id": 448065068450975744, + "source_status_id_str": "448065068450975744" + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 112, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 15:22:29 +0000 2014", + "id": 448117657578266625, + "id_str": "448117657578266625", + "text": "Read the subsequent timeline/bug report as this is a lot less bonkers than it seems at first glance https://t.co/szrTKFWje0", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 15:01:57 +0000 2014", + "id": 448112489168109569, + "id_str": "448112489168109569", + "text": "RT @mdowd: Creationists are really just Permian holocaust deniers", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Mon Mar 24 10:30:25 +0000 2014", + "id": 448044153541107712, + "id_str": "448044153541107712", + "text": "Creationists are really just Permian holocaust deniers", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 15581551, + "id_str": "15581551" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 49, + "favorite_count": 55, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 49, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 15:00:50 +0000 2014", + "id": 448112207935844352, + "id_str": "448112207935844352", + "text": "@Talen_Lee objectifying TO women? What’s being objectified in our general direction?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 448042759769710592, + "in_reply_to_status_id_str": "448042759769710592", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 04:43:17 +0000 2014", + "id": 447956797652230144, + "id_str": "447956797652230144", + "text": "No, autocorrect, I am not SMITHING my enemies. You should know me better than that.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 11, + "favorite_count": 20, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 04:42:04 +0000 2014", + "id": 447956491476402176, + "id_str": "447956491476402176", + "text": "@Rippah1888 … I’ll be over here.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 447956413420408832, + "in_reply_to_status_id_str": "447956413420408832", + "in_reply_to_user_id": 1055813791, + "in_reply_to_user_id_str": "1055813791", + "in_reply_to_screen_name": "Rippah1888", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 04:40:57 +0000 2014", + "id": 447956211011694592, + "id_str": "447956211011694592", + "text": "My husband is watching anime. He said to me “Jack the Ripper just teleported from Costa Rica to save his love interest Nobunaga”", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 4, + "favorite_count": 13, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 04:19:30 +0000 2014", + "id": 447950809951911937, + "id_str": "447950809951911937", + "text": "@Talen_Lee if they’re also sexist and racist clap your hands\n\nCLAP CLAP", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 447949992167088128, + "in_reply_to_status_id_str": "447949992167088128", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 04:18:54 +0000 2014", + "id": 447950661276434432, + "id_str": "447950661276434432", + "text": "@Talen_Lee CLAP CLAP", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 447949992167088128, + "in_reply_to_status_id_str": "447949992167088128", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "vi" + }, + { + "created_at": "Mon Mar 24 04:00:06 +0000 2014", + "id": 447945928159555584, + "id_str": "447945928159555584", + "text": "@eksith that makes me not one again", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 447945831875092480, + "in_reply_to_status_id_str": "447945831875092480", + "in_reply_to_user_id": 16364936, + "in_reply_to_user_id_str": "16364936", + "in_reply_to_screen_name": "eksith", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 03:51:03 +0000 2014", + "id": 447943650459537408, + "id_str": "447943650459537408", + "text": "@kyhwana @dancapper you’re either older or a LOT younger than I thought.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 447941967817617408, + "in_reply_to_status_id_str": "447941967817617408", + "in_reply_to_user_id": 30135560, + "in_reply_to_user_id_str": "30135560", + "in_reply_to_screen_name": "kyhwana", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 03:50:16 +0000 2014", + "id": 447943452144459776, + "id_str": "447943452144459776", + "text": "@jlwfnord the context was the lottery complaining that millennials don’t buy lottery tickets ! The nerve", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 447941372809863168, + "in_reply_to_status_id_str": "447941372809863168", + "in_reply_to_user_id": 2686861, + "in_reply_to_user_id_str": "2686861", + "in_reply_to_screen_name": "jlwfnord", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 03:41:09 +0000 2014", + "id": 447941161521803264, + "id_str": "447941161521803264", + "text": "@McGrewSecurity lol (context implicit)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 13275122, + "in_reply_to_user_id_str": "13275122", + "in_reply_to_screen_name": "McGrewSecurity", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 03:32:31 +0000 2014", + "id": 447938988914270208, + "id_str": "447938988914270208", + "text": "@DiorTheBun @Tomi_Tapio well I hope his dinosaurs all learned something.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 447900417054474240, + "in_reply_to_status_id_str": "447900417054474240", + "in_reply_to_user_id": 25789825, + "in_reply_to_user_id_str": "25789825", + "in_reply_to_screen_name": "DiorTheBun", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 03:31:23 +0000 2014", + "id": 447938703026323456, + "id_str": "447938703026323456", + "text": "@innismir well it’d be both simultaneously wouldn’t it?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 447938516283322368, + "in_reply_to_status_id_str": "447938516283322368", + "in_reply_to_user_id": 14061445, + "in_reply_to_user_id_str": "14061445", + "in_reply_to_screen_name": "innismir", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 03:26:27 +0000 2014", + "id": 447937460136603648, + "id_str": "447937460136603648", + "text": "Not too long ago I was too old to be a millennial and now the news calls people with ten years on me millennials", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 03:25:51 +0000 2014", + "id": 447937308726403072, + "id_str": "447937308726403072", + "text": "Is it my imagination or has the word “millennial” been rapidly expanding to include everyone now alive who’s not yet *old*?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 15, + "favorite_count": 20, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 02:50:05 +0000 2014", + "id": 447928307284459520, + "id_str": "447928307284459520", + "text": "The idiom “sent packing” felt very jarring in a fantasy novel, but I checked and it’s attested from the 1500s. Hmph, carry on then.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 6, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 01:48:44 +0000 2014", + "id": 447912870718996480, + "id_str": "447912870718996480", + "text": "@puellavulnerata I think she’s REALLY impressed I got quoted in Forbes that one time", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 447912628023992321, + "in_reply_to_status_id_str": "447912628023992321", + "in_reply_to_user_id": 54666727, + "in_reply_to_user_id_str": "54666727", + "in_reply_to_screen_name": "puellavulnerata", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 01:45:49 +0000 2014", + "id": 447912137303027712, + "id_str": "447912137303027712", + "text": "My grandmother called to let me know I’m famous now \n\n(Not really sure why)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 9, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 00:49:28 +0000 2014", + "id": 447897955656548353, + "id_str": "447897955656548353", + "text": "@Shufflejoy I can’t say I was the first person to ever invoke the dark oath “may you step on a Lego”", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 447897718774431744, + "in_reply_to_status_id_str": "447897718774431744", + "in_reply_to_user_id": 1567524811, + "in_reply_to_user_id_str": "1567524811", + "in_reply_to_screen_name": "Shufflejoy", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 00:38:23 +0000 2014", + "id": 447895165571985409, + "id_str": "447895165571985409", + "text": "@Myriachan @kivikakk which is a shame because I like the word radical. I want to be radical!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 447893701659230208, + "in_reply_to_status_id_str": "447893701659230208", + "in_reply_to_user_id": 1556497868, + "in_reply_to_user_id_str": "1556497868", + "in_reply_to_screen_name": "Myriachan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 00:37:40 +0000 2014", + "id": 447894983421722624, + "id_str": "447894983421722624", + "text": "@Myriachan @kivikakk as far as I know this is literally the definition of radfem or at least that’s what it’s become", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 447893701659230208, + "in_reply_to_status_id_str": "447893701659230208", + "in_reply_to_user_id": 1556497868, + "in_reply_to_user_id_str": "1556497868", + "in_reply_to_screen_name": "Myriachan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 00:23:28 +0000 2014", + "id": 447891411904790528, + "id_str": "447891411904790528", + "text": "@harmless_ebooks @kivikakk not so harmless eBooks", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 447885540205920256, + "in_reply_to_status_id_str": "447885540205920256", + "in_reply_to_user_id": 566859777, + "in_reply_to_user_id_str": "566859777", + "in_reply_to_screen_name": "harmless_ebooks", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Mon Mar 24 00:23:00 +0000 2014", + "id": 447891293822550016, + "id_str": "447891293822550016", + "text": "@JackLScanlan when I was little I asked for an electron microscope for Christmas.\n\nApparently my parents don’t love me.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 447891060337807360, + "in_reply_to_status_id_str": "447891060337807360", + "in_reply_to_user_id": 10342612, + "in_reply_to_user_id_str": "10342612", + "in_reply_to_screen_name": "JackLScanlan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 23 23:53:39 +0000 2014", + "id": 447883909502889985, + "id_str": "447883909502889985", + "text": "@cwebber yeah", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 447883859430871040, + "in_reply_to_status_id_str": "447883859430871040", + "in_reply_to_user_id": 14268006, + "in_reply_to_user_id_str": "14268006", + "in_reply_to_screen_name": "cwebber", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Sun Mar 23 23:39:07 +0000 2014", + "id": 447880248542363648, + "id_str": "447880248542363648", + "text": "RT @rickasaurus: The moving sofa problem https://t.co/dwsueqjHsi", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sun Mar 23 18:35:22 +0000 2014", + "id": 447803808937410560, + "id_str": "447803808937410560", + "text": "The moving sofa problem https://t.co/dwsueqjHsi", + "source": "MetroTwit", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 16377511, + "id_str": "16377511" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 38, + "favorite_count": 18, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "https://t.co/dwsueqjHsi", + "expanded_url": "https://en.wikipedia.org/wiki/Moving_sofa_problem", + "display_url": "en.wikipedia.org/wiki/Moving_so…", + "indices": [ + 24, + 47 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 38, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 23 23:30:35 +0000 2014", + "id": 447878101364924416, + "id_str": "447878101364924416", + "text": "@puellavulnerata … it’s still snowing weather here…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 447876229211750400, + "in_reply_to_status_id_str": "447876229211750400", + "in_reply_to_user_id": 54666727, + "in_reply_to_user_id_str": "54666727", + "in_reply_to_screen_name": "puellavulnerata", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 23 23:27:04 +0000 2014", + "id": 447877217146896385, + "id_str": "447877217146896385", + "text": "@comex that said, I kinda recall Xenosaga as being a movie pretending to be a game :)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 447862610655203328, + "in_reply_to_status_id_str": "447862610655203328", + "in_reply_to_user_id": 14550962, + "in_reply_to_user_id_str": "14550962", + "in_reply_to_screen_name": "comex", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 23 23:26:45 +0000 2014", + "id": 447877139149623296, + "id_str": "447877139149623296", + "text": "@comex there’s an older game called The Bouncer about which the only thing I know is the notorious cutscene:gameplay ratio", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 447862610655203328, + "in_reply_to_status_id_str": "447862610655203328", + "in_reply_to_user_id": 14550962, + "in_reply_to_user_id_str": "14550962", + "in_reply_to_screen_name": "comex", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 23 23:25:05 +0000 2014", + "id": 447876717873758208, + "id_str": "447876717873758208", + "text": ".@natashenka “So-called Millennials not as stupid as grandparents think, refrain from buying lottery tickets”", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 447854847987961856, + "in_reply_to_status_id_str": "447854847987961856", + "in_reply_to_user_id": 15680514, + "in_reply_to_user_id_str": "15680514", + "in_reply_to_screen_name": "natashenka", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 23 22:19:46 +0000 2014", + "id": 447860280211808256, + "id_str": "447860280211808256", + "text": "Oh my gods he rearranged my gems in my inventory it’s like he doesn’t even KNOW me #Diablo", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 6, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 23 22:01:59 +0000 2014", + "id": 447855807032729600, + "id_str": "447855807032729600", + "text": "My husband rearranged my skills on Diablo and didn’t tell me. I ALMOST DIED", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 3, + "favorite_count": 13, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 23 21:49:44 +0000 2014", + "id": 447852723330101248, + "id_str": "447852723330101248", + "text": "@matthew_d_green we were taught this in university! Something about depersonalizing it. We’re not sure if it’s worth changing", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 447851635034038272, + "in_reply_to_status_id_str": "447851635034038272", + "in_reply_to_user_id": 106234268, + "in_reply_to_user_id_str": "106234268", + "in_reply_to_screen_name": "matthew_d_green", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 23 21:26:45 +0000 2014", + "id": 447846937841373184, + "id_str": "447846937841373184", + "text": "@balpha yes actually, you need to go through the website interface to find the list of accounts who can send alerts", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 447845808025903104, + "in_reply_to_status_id_str": "447845808025903104", + "in_reply_to_user_id": 24531225, + "in_reply_to_user_id_str": "24531225", + "in_reply_to_screen_name": "balpha", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 23 21:20:32 +0000 2014", + "id": 447845373294698496, + "id_str": "447845373294698496", + "text": "@balpha I don’t know. My city has yet to be attacked by kaiju", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 447844944880082945, + "in_reply_to_status_id_str": "447844944880082945", + "in_reply_to_user_id": 24531225, + "in_reply_to_user_id_str": "24531225", + "in_reply_to_screen_name": "balpha", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 23 20:56:46 +0000 2014", + "id": 447839394251407361, + "id_str": "447839394251407361", + "text": "@Xaosopher as for my conclusion, the last time I caught a conversation, two people were discussing an orgy", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 447837651018588160, + "in_reply_to_status_id_str": "447837651018588160", + "in_reply_to_user_id": 68878049, + "in_reply_to_user_id_str": "68878049", + "in_reply_to_screen_name": "Xaosopher", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 23 20:54:18 +0000 2014", + "id": 447838772735258626, + "id_str": "447838772735258626", + "text": "@thegrugq respect my culture, Charlie Brown", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 447835455002669056, + "in_reply_to_status_id_str": "447835455002669056", + "in_reply_to_user_id": 18983429, + "in_reply_to_user_id_str": "18983429", + "in_reply_to_screen_name": "thegrugq", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 23 20:50:01 +0000 2014", + "id": 447837696699158528, + "id_str": "447837696699158528", + "text": "@mralext20 @PythEch http://t.co/N5GWi6qnPP", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 447836695321276416, + "in_reply_to_status_id_str": "447836695321276416", + "in_reply_to_user_id": 905041434, + "in_reply_to_user_id_str": "905041434", + "in_reply_to_screen_name": "mralext20", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Sun Mar 23 20:49:13 +0000 2014", + "id": 447837492008734720, + "id_str": "447837492008734720", + "text": "@Xaosopher It might have been a young girl with an unusually mature voice harassing her dad, actually.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 447835388820742144, + "in_reply_to_status_id_str": "447835388820742144", + "in_reply_to_user_id": 68878049, + "in_reply_to_user_id_str": "68878049", + "in_reply_to_screen_name": "Xaosopher", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 23 20:48:42 +0000 2014", + "id": 447837362564136960, + "id_str": "447837362564136960", + "text": "@Xaosopher seriously sounded like a cartoon villain and her henchman. \"When I call... you... ANSWER!!!!\" \"Roger.\"", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 447835388820742144, + "in_reply_to_status_id_str": "447835388820742144", + "in_reply_to_user_id": 68878049, + "in_reply_to_user_id_str": "68878049", + "in_reply_to_screen_name": "Xaosopher", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 23 20:46:29 +0000 2014", + "id": 447836803660521472, + "id_str": "447836803660521472", + "text": ".@Xaosopher Crazy lady flipping out at dude over not answering her radio summons quickly enough (~15 seconds). Dude sounds 100% done", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 447835388820742144, + "in_reply_to_status_id_str": "447835388820742144", + "in_reply_to_user_id": 68878049, + "in_reply_to_user_id_str": "68878049", + "in_reply_to_screen_name": "Xaosopher", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 23 20:44:22 +0000 2014", + "id": 447836271151689728, + "id_str": "447836271151689728", + "text": "RT @PythEch: @0xabad1dea Looks like the government failed to block all IPs. 199.59.148.10 is one of them (in other words, 'hosts' trick wor…", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sun Mar 23 20:34:56 +0000 2014", + "id": 447833898165084160, + "id_str": "447833898165084160", + "text": "@0xabad1dea Looks like the government failed to block all IPs. 199.59.148.10 is one of them (in other words, 'hosts' trick works).", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 447444976860155904, + "in_reply_to_status_id_str": "447444976860155904", + "in_reply_to_user_id": 126030998, + "in_reply_to_user_id_str": "126030998", + "in_reply_to_screen_name": "0xabad1dea", + "user": { + "id": 94548658, + "id_str": "94548658" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 5, + "favorite_count": 1, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "0xabad1dea", + "name": "MeliSSL", + "id": 126030998, + "id_str": "126030998", + "indices": [ + 0, + 11 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 5, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 23 20:35:45 +0000 2014", + "id": 447834105808703489, + "id_str": "447834105808703489", + "text": "Good gravy apparently everyone who uses walkie talkies around here is CRAZY", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 23 20:24:19 +0000 2014", + "id": 447831228209983488, + "id_str": "447831228209983488", + "text": ".@puellavulnerata @twitter over a shark, that is.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 447829857850765312, + "in_reply_to_status_id_str": "447829857850765312", + "in_reply_to_user_id": 54666727, + "in_reply_to_user_id_str": "54666727", + "in_reply_to_screen_name": "puellavulnerata", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 23 20:24:09 +0000 2014", + "id": 447831185327394817, + "id_str": "447831185327394817", + "text": "RT @puellavulnerata: http://t.co/uXWl4NBS47 This is @twitter's version of standing on an 80th-storey ledge and threatening to jump.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sun Mar 23 20:18:53 +0000 2014", + "id": 447829857850765312, + "id_str": "447829857850765312", + "text": "http://t.co/uXWl4NBS47 This is @twitter's version of standing on an 80th-storey ledge and threatening to jump.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 54666727, + "id_str": "54666727" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 10, + "favorite_count": 3, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/uXWl4NBS47", + "expanded_url": "http://www.buzzfeed.com/charliewarzel/is-twitter-phasing-out-hashtags-and-at-replies", + "display_url": "buzzfeed.com/charliewarzel/…", + "indices": [ + 0, + 22 + ] + } + ], + "user_mentions": [ + { + "screen_name": "twitter", + "name": "Twitter", + "id": 783214, + "id_str": "783214", + "indices": [ + 31, + 39 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 10, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 23 20:22:15 +0000 2014", + "id": 447830705952022528, + "id_str": "447830705952022528", + "text": "My walkie talkie scanner found someone! I was beginning to think I was the only human who existed after all…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 23 20:12:59 +0000 2014", + "id": 447828374778814464, + "id_str": "447828374778814464", + "text": "@nelhage it really screams “corrupt vizier”", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 447828029503332353, + "in_reply_to_status_id_str": "447828029503332353", + "in_reply_to_user_id": 11806222, + "in_reply_to_user_id_str": "11806222", + "in_reply_to_screen_name": "nelhage", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 23 20:11:31 +0000 2014", + "id": 447828006166597633, + "id_str": "447828006166597633", + "text": "Not to say that every single one of them is definitely malicious, but it’s a known pattern — and they *are* all sleazy about giving credit.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 23 20:08:54 +0000 2014", + "id": 447827345760878592, + "id_str": "447827345760878592", + "text": "Good netizens don’t retweet accounts that post nothing except completely uncredited theme photography. They’re pump-and-spam scams.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 15, + "favorite_count": 13, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 23 19:15:05 +0000 2014", + "id": 447813803796082688, + "id_str": "447813803796082688", + "text": "@sakjur \\o/", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 447813545108209664, + "in_reply_to_status_id_str": "447813545108209664", + "in_reply_to_user_id": 63478005, + "in_reply_to_user_id_str": "63478005", + "in_reply_to_screen_name": "sakjur", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "und" + }, + { + "created_at": "Sun Mar 23 19:12:31 +0000 2014", + "id": 447813156644339712, + "id_str": "447813156644339712", + "text": "@sakjur does it crash??", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 447812472897298433, + "in_reply_to_status_id_str": "447812472897298433", + "in_reply_to_user_id": 63478005, + "in_reply_to_user_id_str": "63478005", + "in_reply_to_screen_name": "sakjur", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 23 18:54:23 +0000 2014", + "id": 447808594084634624, + "id_str": "447808594084634624", + "text": "@dan_crowley there’s a story that Ulysses S. Grant’s “accidental” name change in records was to get rid of the initials HUG.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 447808009020796928, + "in_reply_to_status_id_str": "447808009020796928", + "in_reply_to_user_id": 20532907, + "in_reply_to_user_id_str": "20532907", + "in_reply_to_screen_name": "dan_crowley", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 23 18:50:14 +0000 2014", + "id": 447807550889926656, + "id_str": "447807550889926656", + "text": "@mtheoryx @codinghorror I am the granddaughter of a polio survivor, so there is hope for a good life for the last few afflicted", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 447807263500029952, + "in_reply_to_status_id_str": "447807263500029952", + "in_reply_to_user_id": 1558511, + "in_reply_to_user_id_str": "1558511", + "in_reply_to_screen_name": "mtheoryx", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 23 18:47:38 +0000 2014", + "id": 447806893869002753, + "id_str": "447806893869002753", + "text": "RT @codinghorror: India finally eradicated Polio. http://t.co/oNcdvC0f6v until Jenny tells everyone how dangerous those Polio vaccinations …", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sun Mar 23 18:21:41 +0000 2014", + "id": 447800365501521921, + "id_str": "447800365501521921", + "text": "India finally eradicated Polio. http://t.co/oNcdvC0f6v until Jenny tells everyone how dangerous those Polio vaccinations are #AskJenny", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 5637652, + "id_str": "5637652" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 96, + "favorite_count": 31, + "entities": { + "hashtags": [ + { + "text": "AskJenny", + "indices": [ + 126, + 135 + ] + } + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/oNcdvC0f6v", + "expanded_url": "http://www.cnn.com/2014/03/22/health/india-end-of-polio/index.html", + "display_url": "cnn.com/2014/03/22/hea…", + "indices": [ + 32, + 54 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 96, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 23 18:26:26 +0000 2014", + "id": 447801560689815552, + "id_str": "447801560689815552", + "text": "RT @csoghoian: Today I learned: it is a felony to publish info about how _foreign_ govs encrypt or spy, if classified by the US gov. http:/…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sun Mar 23 17:14:09 +0000 2014", + "id": 447783368009449473, + "id_str": "447783368009449473", + "text": "Today I learned: it is a felony to publish info about how _foreign_ govs encrypt or spy, if classified by the US gov. http://t.co/htFyqDiPKA", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 14669471, + "id_str": "14669471" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 76, + "favorite_count": 43, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/htFyqDiPKA", + "expanded_url": "http://www.law.cornell.edu/uscode/text/18/798", + "display_url": "law.cornell.edu/uscode/text/18…", + "indices": [ + 118, + 140 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 76, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 23 16:57:51 +0000 2014", + "id": 447779268429639680, + "id_str": "447779268429639680", + "text": "@demize95 must be the numbers.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 447778362623156225, + "in_reply_to_status_id_str": "447778362623156225", + "in_reply_to_user_id": 137133048, + "in_reply_to_user_id_str": "137133048", + "in_reply_to_screen_name": "demize95", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 23 16:56:37 +0000 2014", + "id": 447778958072090624, + "id_str": "447778958072090624", + "text": "@demizeinjail I can’t even imagine the gymnastics involved in that", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 447778069575897088, + "in_reply_to_status_id_str": "447778069575897088", + "in_reply_to_user_id": 1672286780, + "in_reply_to_user_id_str": "1672286780", + "in_reply_to_screen_name": "demizeinjail", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 23 16:52:21 +0000 2014", + "id": 447777884493860865, + "id_str": "447777884493860865", + "text": "@demizeinjail the plot thickens.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 447777771360894976, + "in_reply_to_status_id_str": "447777771360894976", + "in_reply_to_user_id": 1672286780, + "in_reply_to_user_id_str": "1672286780", + "in_reply_to_screen_name": "demizeinjail", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 23 16:37:44 +0000 2014", + "id": 447774205393002497, + "id_str": "447774205393002497", + "text": "@m1sp well, the predecessor soul was also a Fantasy-European… guy. So I dunno what she’s supposed to feel about that.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 447772602010849280, + "in_reply_to_status_id_str": "447772602010849280", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 23 16:27:42 +0000 2014", + "id": 447771681852227585, + "id_str": "447771681852227585", + "text": "@m1sp I made up for the overall shortage of white people in this story by putting the essence of Europe itself into her", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 447771311297687552, + "in_reply_to_status_id_str": "447771311297687552", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 23 16:24:26 +0000 2014", + "id": 447770859072393216, + "id_str": "447770859072393216", + "text": "@m1sp I think I drew a nice Erasmin http://t.co/Z21JBec5J1", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 23 16:12:17 +0000 2014", + "id": 447767798887227393, + "id_str": "447767798887227393", + "text": "@McGrewSecurity ohh, THAT Malware Must Die? They were very rude to me on twitter", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 447767445546467328, + "in_reply_to_status_id_str": "447767445546467328", + "in_reply_to_user_id": 13275122, + "in_reply_to_user_id_str": "13275122", + "in_reply_to_screen_name": "McGrewSecurity", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 23 16:08:50 +0000 2014", + "id": 447766930624360448, + "id_str": "447766930624360448", + "text": "@Kufat nothing to do with emails", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 447766055000506368, + "in_reply_to_status_id_str": "447766055000506368", + "in_reply_to_user_id": 207691003, + "in_reply_to_user_id_str": "207691003", + "in_reply_to_screen_name": "Kufat", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 23 16:06:16 +0000 2014", + "id": 447766288753242112, + "id_str": "447766288753242112", + "text": "@strcpy @grp that malicious code in the process is game over, which, strictly speaking, it is", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 447766052567805952, + "in_reply_to_status_id_str": "447766052567805952", + "in_reply_to_user_id": 14887430, + "in_reply_to_user_id_str": "14887430", + "in_reply_to_screen_name": "strcpy", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 23 15:58:35 +0000 2014", + "id": 447764351832064001, + "id_str": "447764351832064001", + "text": "Okay, which one of these knobs I never turned on controls \"x and y are talking about Thing!\" alerts? http://t.co/YoVS17z0zs", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 23 15:15:14 +0000 2014", + "id": 447753443810476032, + "id_str": "447753443810476032", + "text": "RT @MarquardtA: #Russia forces at Belbek base searching every media team for memory cards, confiscating them. Want no traces of this dramat…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sat Mar 22 16:07:12 +0000 2014", + "id": 447404133826703360, + "id_str": "447404133826703360", + "text": "#Russia forces at Belbek base searching every media team for memory cards, confiscating them. Want no traces of this dramatic afternoon.", + "source": "Twitter for BlackBerry®", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 27938809, + "id_str": "27938809" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 424, + "favorite_count": 58, + "entities": { + "hashtags": [ + { + "text": "Russia", + "indices": [ + 0, + 7 + ] + } + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 424, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 23 14:59:24 +0000 2014", + "id": 447749458286358528, + "id_str": "447749458286358528", + "text": "RT @FredericJacobs: Tor usage is peaking in Turkey.\n> 35 000 connecting. More expected for the next few days. http://t.co/1c7AOflm7h", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sun Mar 23 14:58:37 +0000 2014", + "id": 447749262240382977, + "id_str": "447749262240382977", + "text": "Tor usage is peaking in Turkey.\n> 35 000 connecting. More expected for the next few days. http://t.co/1c7AOflm7h", + "source": "Twitter for Mac", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 18018877, + "id_str": "18018877" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 233, + "favorite_count": 58, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ], + "media": [ + { + "id": 447749262106198016, + "id_str": "447749262106198016", + "indices": [ + 93, + 115 + ], + "media_url": "http://pbs.twimg.com/media/Bja5lORIgAAt-zr.png", + "media_url_https": "https://pbs.twimg.com/media/Bja5lORIgAAt-zr.png", + "url": "http://t.co/1c7AOflm7h", + "display_url": "pic.twitter.com/1c7AOflm7h", + "expanded_url": "http://twitter.com/FredericJacobs/status/447749262240382977/photo/1", + "type": "photo", + "sizes": { + "large": { + "w": 576, + "h": 360, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 213, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 576, + "h": 360, + "resize": "fit" + } + } + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 233, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 23 14:57:56 +0000 2014", + "id": 447749089405706240, + "id_str": "447749089405706240", + "text": "@m1sp @Talen_Lee teenkin.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 447748807367749633, + "in_reply_to_status_id_str": "447748807367749633", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "fi" + }, + { + "created_at": "Sun Mar 23 14:52:16 +0000 2014", + "id": 447747663233290240, + "id_str": "447747663233290240", + "text": "@Talen_Lee @m1sp what’s wrong, champ?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 447747100797698048, + "in_reply_to_status_id_str": "447747100797698048", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 23 14:49:56 +0000 2014", + "id": 447747074948616193, + "id_str": "447747074948616193", + "text": "@m1sp @Talen_Lee … and apparently that afternoon I told a lady at the grocery store I was sixteen years old", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 447745842758164480, + "in_reply_to_status_id_str": "447745842758164480", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 23 14:49:36 +0000 2014", + "id": 447746994753519616, + "id_str": "447746994753519616", + "text": "@m1sp @Talen_Lee I guess this movie does very slightly predate you; I saw it when I was two years old after it came out on video", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 447745842758164480, + "in_reply_to_status_id_str": "447745842758164480", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 23 14:42:13 +0000 2014", + "id": 447745135972212737, + "id_str": "447745135972212737", + "text": "@m1sp @Talen_Lee please\n\nIt’s a DINGLEHOPPER", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 447744921458319360, + "in_reply_to_status_id_str": "447744921458319360", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 23 14:39:26 +0000 2014", + "id": 447744432570638337, + "id_str": "447744432570638337", + "text": "@Talen_Lee nothing confused about it!", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 447729251043651584, + "in_reply_to_status_id_str": "447729251043651584", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 23 14:37:18 +0000 2014", + "id": 447743899441070080, + "id_str": "447743899441070080", + "text": ".@auntysarah @maradydd why do newspapers make their “next page” button so tiny? It’s like they don’t want us to notice there’s more…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 447721651833430016, + "in_reply_to_status_id_str": "447721651833430016", + "in_reply_to_user_id": 11599312, + "in_reply_to_user_id_str": "11599312", + "in_reply_to_screen_name": "auntysarah", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 23 14:36:28 +0000 2014", + "id": 447743688329166848, + "id_str": "447743688329166848", + "text": "RT @auntysarah: Astonishing - 63% of women had neurons with Y chromosomes in their brains. Nearly TWO THIRDS!\n\nYour move, @giagia\n\nhttp://t…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sun Mar 23 13:08:54 +0000 2014", + "id": 447721651833430016, + "id_str": "447721651833430016", + "text": "Astonishing - 63% of women had neurons with Y chromosomes in their brains. Nearly TWO THIRDS!\n\nYour move, @giagia\n\nhttp://t.co/J5Ob3mpslc", + "source": "Twitter for Mac", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 11599312, + "id_str": "11599312" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 70, + "favorite_count": 67, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/J5Ob3mpslc", + "expanded_url": "http://www.nytimes.com/2013/09/17/science/dna-double-take.html", + "display_url": "nytimes.com/2013/09/17/sci…", + "indices": [ + 115, + 137 + ] + } + ], + "user_mentions": [ + { + "screen_name": "giagia", + "name": "Gia Milinovich", + "id": 10855372, + "id_str": "10855372", + "indices": [ + 106, + 113 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 70, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 23 14:27:21 +0000 2014", + "id": 447741394149724160, + "id_str": "447741394149724160", + "text": "@thegrugq the condom bit makes it sound like some sort of political statement…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 447682076947406849, + "in_reply_to_status_id_str": "447682076947406849", + "in_reply_to_user_id": 18983429, + "in_reply_to_user_id_str": "18983429", + "in_reply_to_screen_name": "thegrugq", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 23 14:20:27 +0000 2014", + "id": 447739655627481088, + "id_str": "447739655627481088", + "text": "RT @TelecomixTurkey: If you want to check if an IP address or website is blocked in Turkey, it's this way ==> http://t.co/pcsUNM8D3r", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sun Mar 23 09:24:24 +0000 2014", + "id": 447665152926957568, + "id_str": "447665152926957568", + "text": "If you want to check if an IP address or website is blocked in Turkey, it's this way ==> http://t.co/pcsUNM8D3r", + "source": "Twitter for Mac", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 1480638702, + "id_str": "1480638702" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 86, + "favorite_count": 46, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/pcsUNM8D3r", + "expanded_url": "http://eekg.tib.gov.tr/", + "display_url": "eekg.tib.gov.tr", + "indices": [ + 92, + 114 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 86, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 23 14:05:41 +0000 2014", + "id": 447735942624071680, + "id_str": "447735942624071680", + "text": "@m1sp I totally believe I said this but I can only imagine why", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 447606136326221824, + "in_reply_to_status_id_str": "447606136326221824", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 23 04:47:53 +0000 2014", + "id": 447595564558200832, + "id_str": "447595564558200832", + "text": "@m1sp @Talen_Lee probably like… three hundred tops", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 447595403639156736, + "in_reply_to_status_id_str": "447595403639156736", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 23 04:44:22 +0000 2014", + "id": 447594682248593408, + "id_str": "447594682248593408", + "text": "@m1sp yes I know I held back because you liked lisp and nothing good could come of that", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 447594476752494593, + "in_reply_to_status_id_str": "447594476752494593", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 4, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 23 04:42:34 +0000 2014", + "id": 447594229750300672, + "id_str": "447594229750300672", + "text": "@m1sp … Why did you follow me again", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 447593861708136449, + "in_reply_to_status_id_str": "447593861708136449", + "in_reply_to_user_id": 1007638597, + "in_reply_to_user_id_str": "1007638597", + "in_reply_to_screen_name": "m1sp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 23 04:20:44 +0000 2014", + "id": 447588732729040897, + "id_str": "447588732729040897", + "text": "@Talen_Lee @kivikakk Baw-ston not Bwa, this is important", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 447588533646028801, + "in_reply_to_status_id_str": "447588533646028801", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "tl" + }, + { + "created_at": "Sun Mar 23 04:19:20 +0000 2014", + "id": 447588379803529216, + "id_str": "447588379803529216", + "text": "@kivikakk @Talen_Lee well I’d take you up on the offer but apparently you’re full", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 447588256071159809, + "in_reply_to_status_id_str": "447588256071159809", + "in_reply_to_user_id": 67204542, + "in_reply_to_user_id_str": "67204542", + "in_reply_to_screen_name": "kivikakk", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 23 04:18:00 +0000 2014", + "id": 447588045723017216, + "id_str": "447588045723017216", + "text": "@Talen_Lee BOUNDLESS PLAINS TO SHARE", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 447587527449251840, + "in_reply_to_status_id_str": "447587527449251840", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 23 04:12:23 +0000 2014", + "id": 447586632221605888, + "id_str": "447586632221605888", + "text": "@Talen_Lee Certain guys I know insist they would be TOTALLY cool with it and that’s why it’s okay if they call me a guy.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 447585762356105216, + "in_reply_to_status_id_str": "447585762356105216", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 23 04:11:44 +0000 2014", + "id": 447586466886324224, + "id_str": "447586466886324224", + "text": "@conniptions .oO(who is this looney…)", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 447585961820848128, + "in_reply_to_status_id_str": "447585961820848128", + "in_reply_to_user_id": 17874311, + "in_reply_to_user_id_str": "17874311", + "in_reply_to_screen_name": "conniptions", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 23 04:02:38 +0000 2014", + "id": 447584180340539393, + "id_str": "447584180340539393", + "text": "@savagejen and I do mean broadly offensive, not some sort of niche personal matter", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 447583536359276544, + "in_reply_to_status_id_str": "447583536359276544", + "in_reply_to_user_id": 11324652, + "in_reply_to_user_id_str": "11324652", + "in_reply_to_screen_name": "savagejen", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 23 04:02:18 +0000 2014", + "id": 447584095355555841, + "id_str": "447584095355555841", + "text": "@savagejen my last few unfollows have followed the pattern of someone being offensive and taking the “it’s your fault you’re offended” tack", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 447583536359276544, + "in_reply_to_status_id_str": "447583536359276544", + "in_reply_to_user_id": 11324652, + "in_reply_to_user_id_str": "11324652", + "in_reply_to_screen_name": "savagejen", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 23 04:00:45 +0000 2014", + "id": 447583703506903040, + "id_str": "447583703506903040", + "text": "@voodooKobra yeah, or “just threw up everywhere”", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 447583358504419329, + "in_reply_to_status_id_str": "447583358504419329", + "in_reply_to_user_id": 340518676, + "in_reply_to_user_id_str": "340518676", + "in_reply_to_screen_name": "voodooKobra", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 23 03:58:33 +0000 2014", + "id": 447583151951708160, + "id_str": "447583151951708160", + "text": "@savagejen I did accidentally follow someone with that, though I was just thinking about why I follow so-and-so anyway", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 447582947613216770, + "in_reply_to_status_id_str": "447582947613216770", + "in_reply_to_user_id": 11324652, + "in_reply_to_user_id_str": "11324652", + "in_reply_to_screen_name": "savagejen", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 23 03:57:52 +0000 2014", + "id": 447582980887044096, + "id_str": "447582980887044096", + "text": "On a related note, I frequently accidentally fave things and it seems karmically calculated to always be something awkward", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 19, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 23 03:56:10 +0000 2014", + "id": 447582552027832320, + "id_str": "447582552027832320", + "text": "Is there a word for when you accidentally follow a stranger on twitter and you’re too polite to unfollow so now they’re your new friend", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 4, + "favorite_count": 34, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 23 02:59:27 +0000 2014", + "id": 447568275875323904, + "id_str": "447568275875323904", + "text": "RT @frkbmb: stuck between a ♩ and a ? place http://t.co/AIuggXgw2f", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sun Mar 23 02:46:22 +0000 2014", + "id": 447564985732829184, + "id_str": "447564985732829184", + "text": "stuck between a ♩ and a ? place http://t.co/AIuggXgw2f", + "source": "YoruFukurou", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 540721095, + "id_str": "540721095" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 11, + "favorite_count": 7, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/AIuggXgw2f", + "expanded_url": "http://31.media.tumblr.com/4e31f437ce191e025a34e4f706374120/tumblr_mzxw5n5Ivp1r83ei3o1_500.gif", + "display_url": "31.media.tumblr.com/4e31f437ce191e…", + "indices": [ + 32, + 54 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 11, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 23 02:54:09 +0000 2014", + "id": 447566945291087872, + "id_str": "447566945291087872", + "text": "@grp @strcpy I see it as an 80% solution; most compromises do not use maximally clever kits. You just can’t *count* on that.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 447562909460090881, + "in_reply_to_status_id_str": "447562909460090881", + "in_reply_to_user_id": 69459178, + "in_reply_to_user_id_str": "69459178", + "in_reply_to_screen_name": "grp", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 23 02:36:19 +0000 2014", + "id": 447562457767497728, + "id_str": "447562457767497728", + "text": "@pchengi I still say it’s the NSA’s fault they didn’t respond to my request for comment from them.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 447561639647526912, + "in_reply_to_status_id_str": "447561639647526912", + "in_reply_to_user_id": 22619802, + "in_reply_to_user_id_str": "22619802", + "in_reply_to_screen_name": "pchengi", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 23 02:21:59 +0000 2014", + "id": 447558850225647616, + "id_str": "447558850225647616", + "text": "@abby_ebooks @Ninjifox zomg perfect.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 447556087626338304, + "in_reply_to_status_id_str": "447556087626338304", + "in_reply_to_user_id": 789336668, + "in_reply_to_user_id_str": "789336668", + "in_reply_to_screen_name": "abby_ebooks", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "nl" + }, + { + "created_at": "Sun Mar 23 02:20:03 +0000 2014", + "id": 447558364084854784, + "id_str": "447558364084854784", + "text": "RT @strcpy: http://t.co/U6Z8QVkRZQ A quick little article I wrote up about detecting & protecting your code from LD_PRELOAD like attacks.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sat Mar 22 19:46:40 +0000 2014", + "id": 447459364266586113, + "id_str": "447459364266586113", + "text": "http://t.co/U6Z8QVkRZQ A quick little article I wrote up about detecting & protecting your code from LD_PRELOAD like attacks.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 14887430, + "id_str": "14887430" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 39, + "favorite_count": 61, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/U6Z8QVkRZQ", + "expanded_url": "http://ellzey.github.io/2014/03/22/preload-reload/", + "display_url": "ellzey.github.io/2014/03/22/pre…", + "indices": [ + 0, + 22 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 39, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 23 02:08:08 +0000 2014", + "id": 447555364041814016, + "id_str": "447555364041814016", + "text": "I swear the New Yorker has some sort of quota to meet to remind everyone of how they spell coördination", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 7, + "favorite_count": 14, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 23 02:07:09 +0000 2014", + "id": 447555114468139008, + "id_str": "447555114468139008", + "text": "RT @PandaMittens: In depth look at the Sandy Hook killer. Important to dislodge tidy narratives about monsters and negligent parents. http:…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sat Mar 22 22:38:13 +0000 2014", + "id": 447502535167733760, + "id_str": "447502535167733760", + "text": "In depth look at the Sandy Hook killer. Important to dislodge tidy narratives about monsters and negligent parents. http://t.co/fnH3IgCkUo", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 240685806, + "id_str": "240685806" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 21, + "favorite_count": 16, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/fnH3IgCkUo", + "expanded_url": "http://m.newyorker.com/reporting/2014/03/17/140317fa_fact_solomon?currentPage=all", + "display_url": "m.newyorker.com/reporting/2014…", + "indices": [ + 116, + 138 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 21, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 23 01:34:01 +0000 2014", + "id": 447546779031334912, + "id_str": "447546779031334912", + "text": "@jeremiahfelt though now I’m recalling a children’s book about an arsonist destroying a school and it was very sad", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 447531013720137728, + "in_reply_to_status_id_str": "447531013720137728", + "in_reply_to_user_id": 9154112, + "in_reply_to_user_id_str": "9154112", + "in_reply_to_screen_name": "jeremiahfelt", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 23 01:33:36 +0000 2014", + "id": 447546674400219137, + "id_str": "447546674400219137", + "text": "@jeremiahfelt … if a school had to go up in an inferno, at least it was on a Saturday", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 447531013720137728, + "in_reply_to_status_id_str": "447531013720137728", + "in_reply_to_user_id": 9154112, + "in_reply_to_user_id_str": "9154112", + "in_reply_to_screen_name": "jeremiahfelt", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 23 01:32:09 +0000 2014", + "id": 447546308241670144, + "id_str": "447546308241670144", + "text": "@Talen_Lee @jetblackvalias I hate when a typo makes me look crazy.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 447546129652002817, + "in_reply_to_status_id_str": "447546129652002817", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 23 01:31:48 +0000 2014", + "id": 447546217976066048, + "id_str": "447546217976066048", + "text": "@Talen_Lee @jetblackvalias … I see.@", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 447546129652002817, + "in_reply_to_status_id_str": "447546129652002817", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "da" + }, + { + "created_at": "Sun Mar 23 01:29:11 +0000 2014", + "id": 447545561793978369, + "id_str": "447545561793978369", + "text": "@Talen_Lee Bird Jesus lives in your heart.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 447545401088831489, + "in_reply_to_status_id_str": "447545401088831489", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 23 01:26:21 +0000 2014", + "id": 447544850112868352, + "id_str": "447544850112868352", + "text": "@Talen_Lee *squint* not sure if Twitch Plays tweet", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 447523230509580289, + "in_reply_to_status_id_str": "447523230509580289", + "in_reply_to_user_id": 1626778274, + "in_reply_to_user_id_str": "1626778274", + "in_reply_to_screen_name": "Talen_Lee", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 23 01:25:14 +0000 2014", + "id": 447544565898432513, + "id_str": "447544565898432513", + "text": "@m1sp1dea_ebooks like so.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 447523137824260096, + "in_reply_to_status_id_str": "447523137824260096", + "in_reply_to_user_id": 1602616146, + "in_reply_to_user_id_str": "1602616146", + "in_reply_to_screen_name": "m1sp1dea_ebooks", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 23 00:06:23 +0000 2014", + "id": 447524722772037632, + "id_str": "447524722772037632", + "text": "@TheColonial oh. I thought you were referring to my problem in particular :)", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 447524102425677824, + "in_reply_to_status_id_str": "447524102425677824", + "in_reply_to_user_id": 15011270, + "in_reply_to_user_id_str": "15011270", + "in_reply_to_screen_name": "TheColonial", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 23 00:05:53 +0000 2014", + "id": 447524599497244672, + "id_str": "447524599497244672", + "text": "@WillCulpepper @shellbryson I have an MP3, Audacity.app, and little else", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 447524449491759104, + "in_reply_to_status_id_str": "447524449491759104", + "in_reply_to_user_id": 114797355, + "in_reply_to_user_id_str": "114797355", + "in_reply_to_screen_name": "WillCulpepper", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 23 00:05:12 +0000 2014", + "id": 447524424770916352, + "id_str": "447524424770916352", + "text": "@WillCulpepper @shellbryson mind you I've barely studied this type of signal processing, I'm just an easily amused hobbyist", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 447522854674788352, + "in_reply_to_status_id_str": "447522854674788352", + "in_reply_to_user_id": 114797355, + "in_reply_to_user_id_str": "114797355", + "in_reply_to_screen_name": "WillCulpepper", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 23 00:04:38 +0000 2014", + "id": 447524283405721601, + "id_str": "447524283405721601", + "text": "@WillCulpepper @shellbryson here's voice, so I guess I should focus on those clear spikes in the beep-beep http://t.co/OHvnxFkKks", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 447522854674788352, + "in_reply_to_status_id_str": "447522854674788352", + "in_reply_to_user_id": 114797355, + "in_reply_to_user_id_str": "114797355", + "in_reply_to_screen_name": "WillCulpepper", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 23 00:03:46 +0000 2014", + "id": 447524067113840640, + "id_str": "447524067113840640", + "text": "@WillCulpepper @shellbryson here's the beep-beep, 1/2 http://t.co/urjPjpTcqC", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 447522854674788352, + "in_reply_to_status_id_str": "447522854674788352", + "in_reply_to_user_id": 114797355, + "in_reply_to_user_id_str": "114797355", + "in_reply_to_screen_name": "WillCulpepper", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sun Mar 23 00:01:22 +0000 2014", + "id": 447523460903092224, + "id_str": "447523460903092224", + "text": "@TheColonial I'm referring to priyom (where I was looking up known transmissions of UVB-76), you?", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 447523009494917121, + "in_reply_to_status_id_str": "447523009494917121", + "in_reply_to_user_id": 15011270, + "in_reply_to_user_id_str": "15011270", + "in_reply_to_screen_name": "TheColonial", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 22 23:58:52 +0000 2014", + "id": 447522830931218433, + "id_str": "447522830931218433", + "text": "@mralext20 channel didn't even exist. I could camp it and be the operator ;)", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 447522742389051393, + "in_reply_to_status_id_str": "447522742389051393", + "in_reply_to_user_id": 905041434, + "in_reply_to_user_id_str": "905041434", + "in_reply_to_screen_name": "mralext20", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 22 23:57:57 +0000 2014", + "id": 447522600101888000, + "id_str": "447522600101888000", + "text": "I went to go ask the presumed experts if this is common but their listed IRC channel is.... completely empty :[", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 22 23:55:35 +0000 2014", + "id": 447522006767251456, + "id_str": "447522006767251456", + "text": "@demize95 consensus seems to be it's because it's absolutely foolproof and apocalypse resistant: simplest AM radio receiver will work.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 447521739564535808, + "in_reply_to_status_id_str": "447521739564535808", + "in_reply_to_user_id": 137133048, + "in_reply_to_user_id_str": "137133048", + "in_reply_to_screen_name": "demize95", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 22 23:55:10 +0000 2014", + "id": 447521900903010304, + "id_str": "447521900903010304", + "text": "@demize95 it *is* encrypted, just in the pre-digital fashion", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 447521739564535808, + "in_reply_to_status_id_str": "447521739564535808", + "in_reply_to_user_id": 137133048, + "in_reply_to_user_id_str": "137133048", + "in_reply_to_screen_name": "demize95", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 22 23:54:06 +0000 2014", + "id": 447521634568896513, + "id_str": "447521634568896513", + "text": "@bibbleco I plan to figure out which I can/can't receive in short order with careful consultation of schedule charts", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 447521355693830144, + "in_reply_to_status_id_str": "447521355693830144", + "in_reply_to_user_id": 14776653, + "in_reply_to_user_id_str": "14776653", + "in_reply_to_screen_name": "bibbleco", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 22 23:53:41 +0000 2014", + "id": 447521528264273920, + "id_str": "447521528264273920", + "text": "@bibbleco I'm not working off my own receptions, but of posted archived recordings. My shortwave radio isn't even here yet :>", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 447521355693830144, + "in_reply_to_status_id_str": "447521355693830144", + "in_reply_to_user_id": 14776653, + "in_reply_to_user_id_str": "14776653", + "in_reply_to_screen_name": "bibbleco", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 22 23:53:14 +0000 2014", + "id": 447521414934188032, + "id_str": "447521414934188032", + "text": "@TheDaveCA yeah, so, 12-18 months in... there's a new model of iPad... it's out of the question I would not just upgrade", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 447520876120928256, + "in_reply_to_status_id_str": "447520876120928256", + "in_reply_to_user_id": 50187291, + "in_reply_to_user_id_str": "50187291", + "in_reply_to_screen_name": "TheDaveCA", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 22 23:50:16 +0000 2014", + "id": 447520669925134336, + "id_str": "447520669925134336", + "text": "@demize95 the thing I just posted shortly precedes the March 20 11:23 event", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 447520174065733632, + "in_reply_to_status_id_str": "447520174065733632", + "in_reply_to_user_id": 137133048, + "in_reply_to_user_id_str": "137133048", + "in_reply_to_screen_name": "demize95", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 22 23:49:43 +0000 2014", + "id": 447520530221244417, + "id_str": "447520530221244417", + "text": "@demize95 you can hear some recordings of actual messages aside from beeeeeeep here. http://t.co/hFsDjk0Wz7", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 447520174065733632, + "in_reply_to_status_id_str": "447520174065733632", + "in_reply_to_user_id": 137133048, + "in_reply_to_user_id_str": "137133048", + "in_reply_to_screen_name": "demize95", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 22 23:49:14 +0000 2014", + "id": 447520409312047106, + "id_str": "447520409312047106", + "text": "@demize95 yes. UVB-76 *is* a numbers station, but its ratio of meaningless beeps to numbers is about 10000000:1", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 447520174065733632, + "in_reply_to_status_id_str": "447520174065733632", + "in_reply_to_user_id": 137133048, + "in_reply_to_user_id_str": "137133048", + "in_reply_to_screen_name": "demize95", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 22 23:45:26 +0000 2014", + "id": 447519453874769920, + "id_str": "447519453874769920", + "text": "@WillCulpepper @shellbryson in this case? Not very much. The profile looks slightly different but not tremendously.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 447519122528546816, + "in_reply_to_status_id_str": "447519122528546816", + "in_reply_to_user_id": 114797355, + "in_reply_to_user_id_str": "114797355", + "in_reply_to_screen_name": "WillCulpepper", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 22 23:44:26 +0000 2014", + "id": 447519201776140288, + "id_str": "447519201776140288", + "text": "Here's my noise-reduced sample, you can hear \"Dmitri\" (part of their callsign) very clearly while buzzer is running http://t.co/kyWyb01aIx", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 7, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 22 23:35:36 +0000 2014", + "id": 447516978379759616, + "id_str": "447516978379759616", + "text": "However I think I found an instance of UVB-76 accidentally leaving the buzzer on over the voice. A \"correct\" transmission follows later", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 7, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 22 23:33:59 +0000 2014", + "id": 447516568571113472, + "id_str": "447516568571113472", + "text": "@shellbryson within which there may or may NOT be a brief vocal transmission lasting mere seconds.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 447516186071539712, + "in_reply_to_status_id_str": "447516186071539712", + "in_reply_to_user_id": 16638757, + "in_reply_to_user_id_str": "16638757", + "in_reply_to_screen_name": "shellbryson", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 22 23:33:33 +0000 2014", + "id": 447516460274163712, + "id_str": "447516460274163712", + "text": "@shellbryson oh, context.\n\nTwenty four hours of BEEP <silence> BEEP <silence> BEEP <silence>", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 447516186071539712, + "in_reply_to_status_id_str": "447516186071539712", + "in_reply_to_user_id": 16638757, + "in_reply_to_user_id_str": "16638757", + "in_reply_to_screen_name": "shellbryson", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 22 23:30:48 +0000 2014", + "id": 447515769836818432, + "id_str": "447515769836818432", + "text": "It turns out finding 15 seconds of speech in 24 hours of THIS nonsense is not the trivial task one'd hope. http://t.co/FE9EnVWJer", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 22 23:22:38 +0000 2014", + "id": 447513712623374336, + "id_str": "447513712623374336", + "text": "@DaveAtErrata @jeffreycarr @Beaker @4Dgifts @jack_daniel \n\npretty please with sugar on top take uninvolved parties off the cc", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 447513494838321152, + "in_reply_to_status_id_str": "447513494838321152", + "in_reply_to_user_id": 15817736, + "in_reply_to_user_id_str": "15817736", + "in_reply_to_screen_name": "DaveAtErrata", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 22 23:22:38 +0000 2014", + "id": 447513712623374336, + "id_str": "447513712623374336", + "text": "@DaveAtErrata @jeffreycarr @Beaker @4Dgifts @jack_daniel \n\npretty please with sugar on top take uninvolved parties off the cc", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 447513494838321152, + "in_reply_to_status_id_str": "447513494838321152", + "in_reply_to_user_id": 15817736, + "in_reply_to_user_id_str": "15817736", + "in_reply_to_screen_name": "DaveAtErrata", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 22 23:10:06 +0000 2014", + "id": 447510558997499904, + "id_str": "447510558997499904", + "text": "@kaepora @evacide they probably discovered unanticipated collateral damage from businesses configured to use it", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 447501773599956992, + "in_reply_to_status_id_str": "447501773599956992", + "in_reply_to_user_id": 11728992, + "in_reply_to_user_id_str": "11728992", + "in_reply_to_screen_name": "kaepora", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 22 23:04:07 +0000 2014", + "id": 447509055364669440, + "id_str": "447509055364669440", + "text": "RT @kaepora: Who have you told http://t.co/RG9WnnuHzW", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sat Mar 22 21:25:46 +0000 2014", + "id": 447484305049419776, + "id_str": "447484305049419776", + "text": "Who have you told http://t.co/RG9WnnuHzW", + "source": "Twitter for Mac", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 11728992, + "id_str": "11728992" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 89, + "favorite_count": 102, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ], + "media": [ + { + "id": 447484304944541696, + "id_str": "447484304944541696", + "indices": [ + 18, + 40 + ], + "media_url": "http://pbs.twimg.com/media/BjXImr7IMAAgtFT.png", + "media_url_https": "https://pbs.twimg.com/media/BjXImr7IMAAgtFT.png", + "url": "http://t.co/RG9WnnuHzW", + "display_url": "pic.twitter.com/RG9WnnuHzW", + "expanded_url": "http://twitter.com/kaepora/status/447484305049419776/photo/1", + "type": "photo", + "sizes": { + "small": { + "w": 340, + "h": 280, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 500, + "h": 412, + "resize": "fit" + }, + "medium": { + "w": 500, + "h": 412, + "resize": "fit" + } + } + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 89, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 22 22:31:46 +0000 2014", + "id": 447500911418814464, + "id_str": "447500911418814464", + "text": "@sakjur yeah but I was going direct from little ol' Boston", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 447500783098294272, + "in_reply_to_status_id_str": "447500783098294272", + "in_reply_to_user_id": 63478005, + "in_reply_to_user_id_str": "63478005", + "in_reply_to_screen_name": "sakjur", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 22 21:49:35 +0000 2014", + "id": 447490296109334528, + "id_str": "447490296109334528", + "text": "@ryanlawler a good account to watch would be @TelecomixTurkey if you are not already.", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 447490002490892289, + "in_reply_to_status_id_str": "447490002490892289", + "in_reply_to_user_id": 15823784, + "in_reply_to_user_id_str": "15823784", + "in_reply_to_screen_name": "ryanlawler", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 22 21:46:36 +0000 2014", + "id": 447489546373308416, + "id_str": "447489546373308416", + "text": "@ryanlawler casual twitter acquaintances in Turkey are describing a rapidly changing situation however. I guess they keep changing it up", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 447487235290460160, + "in_reply_to_status_id_str": "447487235290460160", + "in_reply_to_user_id": 15823784, + "in_reply_to_user_id_str": "15823784", + "in_reply_to_screen_name": "ryanlawler", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 22 21:45:47 +0000 2014", + "id": 447489342077157376, + "id_str": "447489342077157376", + "text": "@ryanlawler and requires more of a censorship infrastructure in place to pull off at a national level", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 447487235290460160, + "in_reply_to_status_id_str": "447487235290460160", + "in_reply_to_user_id": 15823784, + "in_reply_to_user_id_str": "15823784", + "in_reply_to_screen_name": "ryanlawler", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 22 21:45:30 +0000 2014", + "id": 447489269146595328, + "id_str": "447489269146595328", + "text": "@ryanlawler the other thing, IP blocking/banning, just means dropping all connections heading to those listed IP addresses", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 447487235290460160, + "in_reply_to_status_id_str": "447487235290460160", + "in_reply_to_user_id": 15823784, + "in_reply_to_user_id_str": "15823784", + "in_reply_to_screen_name": "ryanlawler", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 22 21:45:03 +0000 2014", + "id": 447489157892292608, + "id_str": "447489157892292608", + "text": "@ryanlawler a properly working DNS server will return the answer shown in this screenshot but an evil one can lie. http://t.co/nxA7I4ikK1", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 447487235290460160, + "in_reply_to_status_id_str": "447487235290460160", + "in_reply_to_user_id": 15823784, + "in_reply_to_user_id_str": "15823784", + "in_reply_to_screen_name": "ryanlawler", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 22 21:42:39 +0000 2014", + "id": 447488552201641984, + "id_str": "447488552201641984", + "text": "@ryanlawler DNS servers have their records altered to return the incorrect answer when someone, ie, lookups twitter dot com", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 447487235290460160, + "in_reply_to_status_id_str": "447487235290460160", + "in_reply_to_user_id": 15823784, + "in_reply_to_user_id_str": "15823784", + "in_reply_to_screen_name": "ryanlawler", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 22 21:41:57 +0000 2014", + "id": 447488376871321602, + "id_str": "447488376871321602", + "text": "@ryanlawler but from a definition standpoint independent of whatever's happening on Turkey's network, DNS poisoning/spoofing is when --", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 447487235290460160, + "in_reply_to_status_id_str": "447487235290460160", + "in_reply_to_user_id": 15823784, + "in_reply_to_user_id_str": "15823784", + "in_reply_to_screen_name": "ryanlawler", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 22 21:40:53 +0000 2014", + "id": 447488106053517312, + "id_str": "447488106053517312", + "text": "@ryanlawler The situation is seemingly very volatile right now and I don't have a machine in Turkey to examine results directly --", + "source": "web", + "truncated": false, + "in_reply_to_status_id": 447487235290460160, + "in_reply_to_status_id_str": "447487235290460160", + "in_reply_to_user_id": 15823784, + "in_reply_to_user_id_str": "15823784", + "in_reply_to_screen_name": "ryanlawler", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 22 21:28:00 +0000 2014", + "id": 447484866519908352, + "id_str": "447484866519908352", + "text": "Ahh, the future. When importing a 100MB MP3 into Audacity takes longer than downloading it from Estonia did", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 22, + "favorite_count": 30, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 22 21:06:26 +0000 2014", + "id": 447479436410359808, + "id_str": "447479436410359808", + "text": "RT @tunkuv: The International NYT in Pakistan, minus @carlottagall 's story on bin Laden https://t.co/eh9Yicb1tK [Photo by @aysharalam ]", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sat Mar 22 13:23:38 +0000 2014", + "id": 447362969618640896, + "id_str": "447362969618640896", + "text": "The International NYT in Pakistan, minus @carlottagall 's story on bin Laden https://t.co/eh9Yicb1tK [Photo by @aysharalam ]", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 18639738, + "id_str": "18639738" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 136, + "favorite_count": 49, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "carlottagall", + "name": "Carlotta Gall", + "id": 234087403, + "id_str": "234087403", + "indices": [ + 41, + 54 + ] + }, + { + "screen_name": "aysharalam", + "name": "Aysha Raja ", + "id": 16433464, + "id_str": "16433464", + "indices": [ + 111, + 122 + ] + } + ], + "media": [ + { + "id": 447248979278168064, + "id_str": "447248979278168064", + "indices": [ + 77, + 100 + ], + "media_url": "http://pbs.twimg.com/media/BjTyk7gIAAAoZDX.jpg", + "media_url_https": "https://pbs.twimg.com/media/BjTyk7gIAAAoZDX.jpg", + "url": "https://t.co/eh9Yicb1tK", + "display_url": "pic.twitter.com/eh9Yicb1tK", + "expanded_url": "https://twitter.com/aysharalam/status/447248979425001472/photo/1", + "type": "photo", + "sizes": { + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 600, + "h": 804, + "resize": "fit" + }, + "large": { + "w": 716, + "h": 960, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 456, + "resize": "fit" + } + }, + "source_status_id": 447248979425001472, + "source_status_id_str": "447248979425001472" + } + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 136, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 22 20:57:58 +0000 2014", + "id": 447477307721388032, + "id_str": "447477307721388032", + "text": "@DrPizza as opposed to him just dumping the whole thing to BitTorrent which was surely within his technological grasp", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 447476388501934080, + "in_reply_to_status_id_str": "447476388501934080", + "in_reply_to_user_id": 11375732, + "in_reply_to_user_id_str": "11375732", + "in_reply_to_screen_name": "DrPizza", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 22 20:57:36 +0000 2014", + "id": 447477217124450304, + "id_str": "447477217124450304", + "text": "@DrPizza what I mean is — didn’t he give it to journos specifically so they could make the call of what should and shouldn’t be published", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 447476388501934080, + "in_reply_to_status_id_str": "447476388501934080", + "in_reply_to_user_id": 11375732, + "in_reply_to_user_id_str": "11375732", + "in_reply_to_screen_name": "DrPizza", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 22 20:53:51 +0000 2014", + "id": 447476272529428480, + "id_str": "447476272529428480", + "text": "@DrPizza “Snowden” did not leak it. He took a very large cache and gave it to several journalists. Der Spiegel made this call", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 447475555089514496, + "in_reply_to_status_id_str": "447475555089514496", + "in_reply_to_user_id": 11375732, + "in_reply_to_user_id_str": "11375732", + "in_reply_to_screen_name": "DrPizza", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 22 20:26:25 +0000 2014", + "id": 447469367673225216, + "id_str": "447469367673225216", + "text": "RT @TelecomixTurkey: Erdogan, your move.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sat Mar 22 20:10:48 +0000 2014", + "id": 447465438562500608, + "id_str": "447465438562500608", + "text": "Erdogan, your move.", + "source": "Twitter for Mac", + "truncated": false, + "in_reply_to_status_id": 447465381142466560, + "in_reply_to_status_id_str": "447465381142466560", + "in_reply_to_user_id": 1480638702, + "in_reply_to_user_id_str": "1480638702", + "in_reply_to_screen_name": "TelecomixTurkey", + "user": { + "id": 1480638702, + "id_str": "1480638702" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 318, + "favorite_count": 162, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 318, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 22 20:26:21 +0000 2014", + "id": 447469351894261760, + "id_str": "447469351894261760", + "text": "RT @TelecomixTurkey: We are preparing the deployment of obfuscated Tor bridges in case Turkey does try to block access to the Tor network.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sat Mar 22 20:10:35 +0000 2014", + "id": 447465381142466560, + "id_str": "447465381142466560", + "text": "We are preparing the deployment of obfuscated Tor bridges in case Turkey does try to block access to the Tor network.", + "source": "Twitter for Mac", + "truncated": false, + "in_reply_to_status_id": 447464711886741505, + "in_reply_to_status_id_str": "447464711886741505", + "in_reply_to_user_id": 1480638702, + "in_reply_to_user_id_str": "1480638702", + "in_reply_to_screen_name": "TelecomixTurkey", + "user": { + "id": 1480638702, + "id_str": "1480638702" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 557, + "favorite_count": 180, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 557, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 22 20:25:50 +0000 2014", + "id": 447469219228450816, + "id_str": "447469219228450816", + "text": "RT @TelecomixTurkey: We strongly encourage users to download Tor now and verify the signatures.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sat Mar 22 20:07:55 +0000 2014", + "id": 447464711886741505, + "id_str": "447464711886741505", + "text": "We strongly encourage users to download Tor now and verify the signatures.", + "source": "Twitter for Mac", + "truncated": false, + "in_reply_to_status_id": 447464348383211520, + "in_reply_to_status_id_str": "447464348383211520", + "in_reply_to_user_id": 1480638702, + "in_reply_to_user_id_str": "1480638702", + "in_reply_to_screen_name": "TelecomixTurkey", + "user": { + "id": 1480638702, + "id_str": "1480638702" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 265, + "favorite_count": 68, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 265, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 22 20:22:33 +0000 2014", + "id": 447468392669544449, + "id_str": "447468392669544449", + "text": "RT @puellavulnerata: http://t.co/lSbUUbT5tH The Ministry of Truth there should really make up its mind whether the recordings are fakes or …", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sat Mar 22 20:01:04 +0000 2014", + "id": 447462988983726080, + "id_str": "447462988983726080", + "text": "http://t.co/lSbUUbT5tH The Ministry of Truth there should really make up its mind whether the recordings are fakes or 'illegally acquired'", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 54666727, + "id_str": "54666727" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 5, + "favorite_count": 1, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/lSbUUbT5tH", + "expanded_url": "http://techcrunch.com/2014/03/22/turkey-blocks-google-dns-youtube-could-be-next/", + "display_url": "techcrunch.com/2014/03/22/tur…", + "indices": [ + 0, + 22 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 5, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 22 20:20:28 +0000 2014", + "id": 447467870331871232, + "id_str": "447467870331871232", + "text": "Poor Huawei, it just can’t win", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 6, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 22 20:01:56 +0000 2014", + "id": 447463207670923266, + "id_str": "447463207670923266", + "text": "RT @b9AcE: 87 public DNS servers worldwide from OpenNIC. Spread these! http://t.co/6zZFB7zbpw #TwitterisblockedinTurkey #ErdoganBlockedTwit…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sat Mar 22 09:55:34 +0000 2014", + "id": 447310610393759745, + "id_str": "447310610393759745", + "text": "87 public DNS servers worldwide from OpenNIC. Spread these! http://t.co/6zZFB7zbpw #TwitterisblockedinTurkey #ErdoganBlockedTwitter #Turkey", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 20208431, + "id_str": "20208431" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 140, + "favorite_count": 41, + "entities": { + "hashtags": [ + { + "text": "TwitterisblockedinTurkey", + "indices": [ + 83, + 108 + ] + }, + { + "text": "ErdoganBlockedTwitter", + "indices": [ + 109, + 131 + ] + }, + { + "text": "Turkey", + "indices": [ + 132, + 139 + ] + } + ], + "symbols": [ + + ], + "urls": [ + { + "url": "http://t.co/6zZFB7zbpw", + "expanded_url": "http://wiki.opennicproject.org/Tier2", + "display_url": "wiki.opennicproject.org/Tier2", + "indices": [ + 60, + 82 + ] + } + ], + "user_mentions": [ + + ] + }, + "favorited": false, + "retweeted": false, + "possibly_sensitive": true, + "lang": "en" + }, + "retweet_count": 140, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 22 19:25:54 +0000 2014", + "id": 447454136414765056, + "id_str": "447454136414765056", + "text": "@PythEch I’m not sure what you’re trying to show me?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 447450551719321600, + "in_reply_to_status_id_str": "447450551719321600", + "in_reply_to_user_id": 94548658, + "in_reply_to_user_id_str": "94548658", + "in_reply_to_screen_name": "PythEch", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 22 19:15:13 +0000 2014", + "id": 447451450680279041, + "id_str": "447451450680279041", + "text": "@korikisulda I have a feeling we’re disconnecting on terminology", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 447446867052617728, + "in_reply_to_status_id_str": "447446867052617728", + "in_reply_to_user_id": 600961272, + "in_reply_to_user_id_str": "600961272", + "in_reply_to_screen_name": "korikisulda", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 22 18:55:25 +0000 2014", + "id": 447446464718180353, + "id_str": "447446464718180353", + "text": ".@korikisulda DNS poisoning makes it easy to redirect to a political message about the ban", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 447445294918414336, + "in_reply_to_status_id_str": "447445294918414336", + "in_reply_to_user_id": 600961272, + "in_reply_to_user_id_str": "600961272", + "in_reply_to_screen_name": "korikisulda", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 2, + "favorite_count": 2, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 22 18:49:30 +0000 2014", + "id": 447444976860155904, + "id_str": "447444976860155904", + "text": "So it seems Turkey switched from poisoned DNS to actual IP bans about one day in", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 39, + "favorite_count": 14, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 22 18:45:59 +0000 2014", + "id": 447444094101762048, + "id_str": "447444094101762048", + "text": "@PythEch cc @tapbot_paul to answer his question", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 447442205255663616, + "in_reply_to_status_id_str": "447442205255663616", + "in_reply_to_user_id": 94548658, + "in_reply_to_user_id_str": "94548658", + "in_reply_to_screen_name": "PythEch", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 22 18:45:43 +0000 2014", + "id": 447444026510540801, + "id_str": "447444026510540801", + "text": "RT @PythEch: @0xabad1dea I and my friends can't access Twitter without using VPN/TOR. I'm not sure but looks like Twitter is IP banned.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweeted_status": { + "created_at": "Sat Mar 22 18:38:29 +0000 2014", + "id": 447442205255663616, + "id_str": "447442205255663616", + "text": "@0xabad1dea I and my friends can't access Twitter without using VPN/TOR. I'm not sure but looks like Twitter is IP banned.", + "source": "Twitter for iPhone", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": 126030998, + "in_reply_to_user_id_str": "126030998", + "in_reply_to_screen_name": "0xabad1dea", + "user": { + "id": 94548658, + "id_str": "94548658" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 9, + "favorite_count": 3, + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "urls": [ + + ], + "user_mentions": [ + { + "screen_name": "0xabad1dea", + "name": "MeliSSL", + "id": 126030998, + "id_str": "126030998", + "indices": [ + 0, + 11 + ] + } + ] + }, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + "retweet_count": 9, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 22 18:43:26 +0000 2014", + "id": 447443452088025089, + "id_str": "447443452088025089", + "text": "@pa28 @KateElliottSFF perhaps they’re confusing YA with YA Supernatural specifically, ie the Twilight Genre", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 447443162097651712, + "in_reply_to_status_id_str": "447443162097651712", + "in_reply_to_user_id": 17372555, + "in_reply_to_user_id_str": "17372555", + "in_reply_to_screen_name": "pa28", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 22 18:40:34 +0000 2014", + "id": 447442731011678208, + "id_str": "447442731011678208", + "text": "@KateElliottSFF @pa28 anyway I was unaware all those YA novels starring boys I read as a teen were targeted at girls", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 447441117907136512, + "in_reply_to_status_id_str": "447441117907136512", + "in_reply_to_user_id": 47034934, + "in_reply_to_user_id_str": "47034934", + "in_reply_to_screen_name": "KateElliottSFF", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 22 18:39:39 +0000 2014", + "id": 447442499578388480, + "id_str": "447442499578388480", + "text": "@KateElliottSFF @pa28 isn’t it weird how being well-read was Manly until girls started doing it and suddenly it’s “boys are too fidgety”", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 447441117907136512, + "in_reply_to_status_id_str": "447441117907136512", + "in_reply_to_user_id": 47034934, + "in_reply_to_user_id_str": "47034934", + "in_reply_to_screen_name": "KateElliottSFF", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 22 17:35:16 +0000 2014", + "id": 447426295077806080, + "id_str": "447426295077806080", + "text": "@tapbot_paul also, telecomix + some guy who follow me together imply the ban suddenly got a lot more effective last night", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 447425444552269825, + "in_reply_to_status_id_str": "447425444552269825", + "in_reply_to_user_id": 18247541, + "in_reply_to_user_id_str": "18247541", + "in_reply_to_screen_name": "tapbot_paul", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 22 17:33:55 +0000 2014", + "id": 447425954701660161, + "id_str": "447425954701660161", + "text": "@tapbot_paul it’s political, so probably the most important thing is type in http://t.co/BqkHWjDPy0 —> get their political message", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 447425444552269825, + "in_reply_to_status_id_str": "447425444552269825", + "in_reply_to_user_id": 18247541, + "in_reply_to_user_id_str": "18247541", + "in_reply_to_screen_name": "tapbot_paul", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 22 17:31:03 +0000 2014", + "id": 447425233897914368, + "id_str": "447425233897914368", + "text": "@tapbot_paul probably a question of what filter technology they already had installed and tested", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 447424856158531584, + "in_reply_to_status_id_str": "447424856158531584", + "in_reply_to_user_id": 18247541, + "in_reply_to_user_id_str": "18247541", + "in_reply_to_screen_name": "tapbot_paul", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 22 17:19:52 +0000 2014", + "id": 447422421541617664, + "id_str": "447422421541617664", + "text": "@mike_913 :) https://t.co/4gSKOJsDLN", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 447422277257158656, + "in_reply_to_status_id_str": "447422277257158656", + "in_reply_to_user_id": 102264133, + "in_reply_to_user_id_str": "102264133", + "in_reply_to_screen_name": "mike_913", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "und" + }, + { + "created_at": "Sat Mar 22 17:18:01 +0000 2014", + "id": 447421955877400576, + "id_str": "447421955877400576", + "text": "Maybe it’s time to find a better place for the Broken Microwave of Science than hanging precariously off the side of my computer desk", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 3, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 22 16:52:08 +0000 2014", + "id": 447415440135188480, + "id_str": "447415440135188480", + "text": "@demize95 no, the idea was if it’s less than 44 bytes then it’s automatically invalid, but I was too lazy", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 447415257644810240, + "in_reply_to_status_id_str": "447415257644810240", + "in_reply_to_user_id": 137133048, + "in_reply_to_user_id_str": "137133048", + "in_reply_to_screen_name": "demize95", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 22 16:50:52 +0000 2014", + "id": 447415124840968192, + "id_str": "447415124840968192", + "text": "@demize95 I was trying to parse a wav file", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 447414939284537346, + "in_reply_to_status_id_str": "447414939284537346", + "in_reply_to_user_id": 137133048, + "in_reply_to_user_id_str": "137133048", + "in_reply_to_screen_name": "demize95", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 22 16:47:15 +0000 2014", + "id": 447414210671435776, + "id_str": "447414210671435776", + "text": "Found a USB stick from 2009. It has some code I wrote.\n\n/* insert check for filesize > 44 bytes here */\n\noh :(", + "source": "web", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 1, + "favorite_count": 5, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 22 16:28:15 +0000 2014", + "id": 447409429231988736, + "id_str": "447409429231988736", + "text": "@fuzztester well, I do concede I don’t have any ideas handy for an oleophobic coating that will never wear off.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 447409252031037440, + "in_reply_to_status_id_str": "447409252031037440", + "in_reply_to_user_id": 172725404, + "in_reply_to_user_id_str": "172725404", + "in_reply_to_screen_name": "fuzztester", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 22 16:25:46 +0000 2014", + "id": 447408807862620160, + "id_str": "447408807862620160", + "text": "@SamusAranX @Kufat do you mean it left a residue that turned all the pixels into little prisms or ?", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 447408637552889856, + "in_reply_to_status_id_str": "447408637552889856", + "in_reply_to_user_id": 37647087, + "in_reply_to_user_id_str": "37647087", + "in_reply_to_screen_name": "SamusAranX", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 22 16:24:38 +0000 2014", + "id": 447408520229830656, + "id_str": "447408520229830656", + "text": "@Kufat though I imagine that once the oleophobic coating is worn off, glass cleaner can’t make anything worse.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 447408056343998464, + "in_reply_to_status_id_str": "447408056343998464", + "in_reply_to_user_id": 207691003, + "in_reply_to_user_id_str": "207691003", + "in_reply_to_screen_name": "Kufat", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 22 16:23:42 +0000 2014", + "id": 447408286242181120, + "id_str": "447408286242181120", + "text": "@Kufat cleaning cloth, as prescribed. The official Apple instructions say not to use glass cleaner spray.", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 447408056343998464, + "in_reply_to_status_id_str": "447408056343998464", + "in_reply_to_user_id": 207691003, + "in_reply_to_user_id_str": "207691003", + "in_reply_to_screen_name": "Kufat", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 22 16:20:57 +0000 2014", + "id": 447407594039410688, + "id_str": "447407594039410688", + "text": "@Myriachan given sufficient time, resources, and data…", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": 447407329948884993, + "in_reply_to_status_id_str": "447407329948884993", + "in_reply_to_user_id": 1556497868, + "in_reply_to_user_id_str": "1556497868", + "in_reply_to_screen_name": "Myriachan", + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 0, + "favorited": false, + "retweeted": false, + "lang": "en" + }, + { + "created_at": "Sat Mar 22 16:17:41 +0000 2014", + "id": 447406771649667072, + "id_str": "447406771649667072", + "text": "Which in turn means I’m not imagining it that a new one just feels better to the touch no matter how much I clean an old one", + "source": "Tweetbot for iOS", + "truncated": false, + "in_reply_to_status_id": null, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id": null, + "in_reply_to_user_id_str": null, + "in_reply_to_screen_name": null, + "user": { + "id": 126030998, + "id_str": "126030998" + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "retweet_count": 0, + "favorite_count": 1, + "favorited": false, + "retweeted": false, + "lang": "en" + } +] \ No newline at end of file diff --git a/spec/data/0xabad1dea.model b/spec/data/0xabad1dea.model deleted file mode 100644 index 90a22ea7753d66e04fa0ace1416f62802da62a5a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1503684 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
i)P_Au5 z1%_)|#3WZ-SQJXkZ+`kSnd%XIN=qRSAx4u9i<}lDnT;{WtnpwJSb$T=n^^+3U^JGeGuU=n1tRfD z{uKRykP;0=;VXT*ki0_UwN#Cn?yyCHXk>NVUnaLapOGkSpa7)1l&L@;ceuo?oMlUv z2)!_BU8*1lomR;1^RB@7@Xz!g+@g%GzB`+s4`0OqqB@|OYjOND0-a*{Qu(ZwLbj#aHD{GWkz`QNM~VLAyfP5|$?Jt{BS6*=VZYT3SXKSUMdn z3n=IVsHtoY5wOd1XQ#ZJqL`h%nkyx6XzJB?1xyti8<7U$gyHK*V5eak5MwHFb8VUv zhEy5=P{*LwOmB$)lYY;xJ%>+cc+~dtbOaO>RnnDhV^$isH%bGy9$&Je8c11+Sd^K* zJEf|#R=^3jFjpk6i2}To0C<3f9%+IKZjd3X)8!Dzuxf%av~vrt6qbOjf;PE4KN3Ug z6Fx6p0+fjimZ8FfG#YZWQImqXXn=7EN$5a1K^@qOi~_D~0B8|^fN2ASz{=#35TQi~ zdShWv^Aou9#eD^MQN`WaaV8X$cNGU~0)`g6q&Qa@3U~xgGsB^J*7+2cp4l$r;#4=o z0djHDe|KbWX2=62%C?OdN0OBA8F@LN;R!r79Ri)#oRbGskSf^EjvX&v6RI70^r?d{|B8xWeZ%QnJH)!fZj$ z#$nSIr8nalbV~9Sz{RS+C$l`On>cZ@?RE69_r}r%;m(3lI@Fzzpf})@nZO7Nk=2nA zXv&*hWXG`BJrH~ysG8;Fg*0{UUAssiPM2fE8@i-phO<2BALyk65+84>-bNp^O$`N) zPIay%K0%Xx4Vcs3;L{if!`U0sq!hA$s2ZNofU5(Y#uf0MLvWZkeuYue@q6^QfpFSG zt3(zPpxXCOECmbh0s>MA*IAyOiRZ?ImdowcCWQ)ChH9kd1-C)CZwH7$wC7Tf80Q-A zb9Gn22II`8c+pVEli zSB<~JsAMG!V?>=FNZ6hY1rEvMZ(-KX{KDGnKee{8YcUfX0ke`OhD|aGP73WI`Mocs zk^2wl{RQuhhlsPL576rn&>)7d(Udpe&_dHkUZ+P;%eeId4O;YPzW3obzO4RC!%rm< z7E|jmE{UTlLV%100(q*mu34`V44b9y%EQV22{i`N0(@3P>6mSB#a{TxC33(;9=v+f75=P79{k*3wF0ED_<#V|@GZc7S*U5;z-WrrmW_*S0#+VHInO~-6p%#8 zmPh1rVN)sYtZboXTk@oGJ$pW@%gJS{Mv;=2a2hQGkGix6FD%#xb@K%^j?}(oCN}cB z1J9cY{Ogv7foi({(=L5vn7gcSDjO<9rgV{yaU^C7afr$f)1Q85Q00g>KcB@{ zthGSqXstse7>5V*{KSKjp;c;5pd|GtT=hBd%QpO_$~+a)E^a6+8}2vsN-}dPvv%UP+&IFbNcL#a|LJGuWB?bAp9%tOCX;@!S z>xh61=?)gREpHU+fUmn6t7Q8nr9$e1ziPiKlPV^!G2MJ~`)1x-J?>AOg>CbdxVdCc zOhY(yc;|w(*7!IQsCLsjExSGvzf;G}Hqae-w@K)353YeNp*{k7-_RR&f^{0G$z*%8 zKKh*RdLLS&){lk_T*8IS0dWwnY`NY>8Vt~Qo6IIKZ)F{yNl@NFw3{;8;xUwW1>>U} zM4g?FRN^|*L-o-ZgR3>bm#bWOA3M)3u!t!}v{gGSw*`!Beh<>rlv7yJa$7>4{1;1r zJB^U=_k@yJ#qz)>b(kv>CyBu*BG$}LP1CR&IRKi;#WiGO5W);ORm1@9t$XD2@{8z! zR+Y-lV(1`BH4O2V#z<4+DV}q*~h{a``x7H^bH6CcZLXS*9;s+ES3`E4`k0 zw-ZLyIWUE69A-M1Z-N<^nrjJ8w9(6qaa*RK!%Vu;eK?ex@A4v>eGQ)X3C={L-#nxu zta^clm=E&PTqdYX%LDW&B`qvt_3Hbm>zP3dDT;t{aA(z+_c>iv`<&(prEqXyuJ5hQ zyclB(_byEbxkO^*TWBf@+Y4QI(pN4Q#O3Ffm|McJueL<61C>xrn5j?Wi|8!&UYGc`^Hmk4|vi0pEv;(-;EqG`l&{#e(4?Hb%wKI+#Xlu23Nf(!6u9 z1IN)&Mtx(ZHDdb4kVQ*q*_FG+z4HlT#)bP?!`o#l1Y=rlbgo;C4u%as!9jYPIt8$l z`PizH;7y>;>=TxPCYjGsxyO)($~ZiqI}8jLD#*;!v{vukQ)YJGP%ScUH^3}+72~)( za4YV8pc;>uF;gAby|J)^+&~9?HtNxWP&1Z6{~O{JWlHSHj5;u4U;Rs2p`3P@Vji-l zG8GE^m$wmKX4x^1VB%V`1sJzkR*{5YOK1NQ-a zmfusof^+5fvD!0%u_t7Sz`TkLD-Pg_mZ9B;1dyasu$Hl^X2Qd$Lx<4#dc(No20o0Z z(I2x-it4mhtCtsB;=WJLL@*1P`U!?~G|JJLk7=`B{9u4Z6cZe=akYOESP6?F?SBHmhGhz>d*nkoSKTw#jlu zZ~>6bFieGUb{pX?Ak$WmqXug4oIC}-h_S`OXFi)>(o9pi@#&u8atH#SY5+ofXn8e} zG)mH8!ZqA_YY0I}Lk)ov~Uv|9bVZAiRd4JCp0^YRkf*)nMvHIkjuf2IA?;b6Wtz8>rA12+j^P8FJ zC_nj`*KXWMTa`k|Dv=;T6iA#p5Aam)hQD=^TuRF<@CKk@znyUCea83#lTu`ZPP2k* z-uv6JSzDPqkwvE3pf0(Fo9#|kU|Lp&tS%Stp`@3;5NqHLo^Btc(dzWoqLXJz3&R3W z_Xcz@kr-g7Ps-9G?y}>8$pkZ)asHORqiylUa=T)KRh$iA*HovH0V2a+i{{{a` z#{qq0>eW+@+;fFl=I9#A55wqFY*+mbI~ZyQ2N^CMKtKl2NE~^JccA5DguxH_K>)Io zkBhszo9gCc6j2{DF-`4I8k+8mi>hxpAW68y=di&Gb@R!aNj})E%oP@v1y50)jJ!> zPlw9iS;Krj^;lXrAMWJs*4yj554Z2@zlt|*y#8bI2SG!Wx3=!TysK2%d`SKXDXaw& zjV7eNzrK6>9{I<9duwZZYxnNE`BAu<^}hb}XjR{9`L*))#`X^1d2j2B>uE8--`2}( za(6v7Ei*>Qc>)fC+%JI$Qt&@>jcmc^AuxN%jtX7cukOP<7|I=uy{MOoPfCGd99ygO z=JlqVIJ>8*n43Zu!|mI=P-A^@vhuf(^8_qZ)n|p?`0lAHgXnp?!dRb;;ej$+B$uTh zqVO{s=RS8CdAQ3orq@WWRKT5y^vQT4^d(%dhC9RH(hRYAC1seu7P!vXx<(t-%r2!a zWuQY|2sA;xIvkF)Z~*NXqEh=h8lF&&&4e(f?d$`I3Z>3W96n^xh@_hQ?o)CQ$=VoC zZuZ+nsyxL24Q3VThL>nm_nQ(_nhLxpt2CIt>ZT0C$p6ITgK}ABee0P&=leW)0*f?o7xZ=YnGb9PuyBES!9_N;w95&a`+?uJAO|KIBrD8Zy-Y2JyizVl9AU^{rfO6Orpt+1#Mebm)*d^2kPh3`#OK;%hNA z@WBJ4%Su*25t{jWlb<&3n~{s+Gs7a@DefAk36)3?ApZp+pvT--VqTkGki$*Qk{Z6O zb$@3yFB=&pmT+Ah;O0!b2i>U>+%-w?=fmZl@n{ih@HjE9c4&8KU0qW5acs6m+(LPZ zU?%SwYN>*$Fro#dvjtudFPV9*he}4p#*DqE97FX)?&HbdB|A1>PdNxx_iLDalk(^o+o%RG7={{ZNX}c=>h7J)zm#95 zi-R`wXk-UaAIJ&u3uadu>j0YGVop2cP*kjBWHRktbfX$hwNWMba2}onE)9{siK|1U zuY6`$Ozf~nRe(TOgs&(JbCIpC8mGo>L2bf(Gx?ek?-hh^5Xr>_m`0Ja{16jxwEjq( z!p;mE+J}k%cAKYU1@hNY?=$A~d_be%x&sp&ae=V{*WkIeRvA$_j}^8^Z?$d-n&I*u9m&S{f-Erk62>1_3nn3Tyc;yH`)(f4m&(9%D~Hs`X1!90lDSGWF0QLz-riilx3ROcs@W!|RRyzT!{yu1Rb6jKr@v!@ z5+G|4AB9kGtQv}6;lcZ01Ppty8DMs1)I8GjZNsPl14+t7rstHqSAdzTo(vmM#aAMw z&wM@~_k(i(3Gn&jm3%>ziC(pX5;>9gaca)v7bIFP9`!j+!9=IiZ(jBTV+i!wk%|Do zz8>B@*m|_Soe!_Ak=JYT&or<}{Q_6O4lcQdMwaQUKeg+Quy3Rp=|Oh{QFz`z;L?I( ziOo$femuP^6*73iUxAVMN+*nJ#`OTy3<33FYS)o5pahyH^o!0bfe9UJEJM@qVD-ym zNbq+*aSy7oy%s1&LFmvWc^Cwe!#r7Kr{VkgCuTKcE(| zq%gcy#s)YVlpArQ37v!`X$+C8VvWP#4OkyMT<{$kuWi18#au?cQaX6^HY8p7PWO1_ z*2BB`7cZoA$5oo3#(m51wUkpycH9q$h;KPryVPaz$UM8bT#w&mDhVCCGPyN7Q&Smh zxVTsseK%Rkpe*br<{;7r8aAS*8mhmada+Ee%eunfRy|m~zp)nHpk}mMLt14^UB8y4 z@MJ>7P9_oTX!&Ss`(E-d@iUSu+xagtn8Bexn8|}wR^RSY2*xDJj*RH@}q+Qf_`+=DT2j46PVBwS~eS6Jt*ngeGyvf7zR(c%NLlOv9BagzBZ3oLe1&!hAY za3H;`3R!vFuBvY$HfH|D?H7MsKfwB|t?9+L^e<=XWpt1t#=u7Q)-+&fC_y5}p^<8s zB4`H>{bpFI`88m?JxYpt6`LfRLhxK{Y_BQv1+AkOF`K+KZzq5@S0@@i1n6b9H1)GX z7WD8s;zt3+LQfRjAo(laRS(m#ur9so<5ZL+LI*QZ1~Z561^|F~rp)NJ_Hs8i$STjs(kg{wzs1Zyat(bF z0A|HmD1m1pJu=u{NU)*JF*c3a%TIjvjnDnKvR)e_=8q07 zHRvj?IAkymHNEt3$P{f}J~)W9FM*sQpLwmy;l7SBH39URDKOOvY7D)xt$Vww59d81 zufF3-;@(MK3p@-%95t_&#+|`DGbG9A4)XXCXh{Vo-ptOwyFVmz49=++-@J1(Ghc2e z_5rAp)b$!;%okt1OY3+8)&&VOhH|_rAO_s1F?-(trlSDX7n{>@O(up@W@^Au{eka& z_#6M)|NHgthIl&1>tG!tVOy|Q=+kBWma00UndfI_GADr&rAjpN z^Yz*ow-~W}kBfP1GN)14$Wir027-Nekt1&XyEu>jx9 z?wOC%7=ytFT$K(g(DSRNCgyt(jl56C*`l1XKSVT=sqJG5vx=cVD8Vljw|>e*;-$Xe zAy<0CFG4R zL>(&vT*ox}6%-q2W^G%v!e|(H-*z|Bt|`*4di}<0Z~Zr!2W9T?D{;<9NU!}3=s8b1 zhWL_C821wDQ|kLvKp|R)Ero7>f~j6glCpBr9dej!9KhS!Wrs(-(}SDH@i5i@{mZ}o zSO4ZK`CwhgIgYXc7zSdR?lURp#qC8Ij3IMhn9p03S$(sR%c*yez`(7G`E3bGj+z<7 zBPk#WG3(?Z69kNu@TGaFc63!jiPFbK$G|t$a@HSx>o>6_{nye*zw?Xu7ykYo{mqYj z@55jJQ~dkiUH<>S@%y+S{10V$>D~kPd7Up~(1XbpnsLWm2V8DTJ!)AuG*I*jfAutL zl{;256&CaOVsC$0JnSC{Nmw)ypu;W;YUMJ<1S@E4DLblgOU9ZKDWoYkKQ=)6t@L3U zq6Pmfe~c_{C*SBl<{2YuVlvpI+UkKVE79O%L@Agz-AUIX!{<}l*!R61v=J3z9B$}! zkjhj#jTh1^b!%|On=HA-^mt5eH#MVE9=$}Ekm&)QZDQe}<~D+&4YCCx=$c!8)iw(p zf?9i&WTjb3_gi5)59+;{+L)xEs^vV)*~sSSKX-B!i64r9i7|gbH(j-`zlE($xep>o+NI5&{)lk07mKqMytpCj?Fb* z_;K5Q8*TvLv5fMfeBbM`gQ&jOhsZJ%wx_$yNKyc82|29+9|R7`Z~cY5Ryw-d%UFd+ z3g~(eKyLo5%-*|akqYL02v}2Dl#CLt@n~bzC9;+T1o?eZEx0myn_k6569ZjYGFIye zJv!6CZCsJo2ij2M{MP8Fx6;C;UE*e!7~}d@w?BDG!z(>Rl$fjQE0XJCi=~qZmjY2Q zg9-;Q-uWB^gujJsfgY510t9eJJvjy>g+S)TPo$IOk;+{o6o+7eQy~<|0_8JOAzVOG zb_L#_-+RTmHtu;Ae27h!HPg_HyZl7vMhp90KGA)~9z%#B<>O~<_erf8-o z<(F#2Ph5v@E>M7JnCOGSvJ!M@4u|iK+2RPcBXfz;%4$TA5S1QEZJMt@Q+45&If9B(y%Z05Y2~*uP5Nlq{M*;=pV>5hT^hO zOQ3h-Lh5GYBx0+FQR8;DZwzG zwU&V;X0ls5JK6z@VcR1lBvli*%NOc>!25QQ@XfSr%o|;rpy;kEIE7V>P!9{KHs75cxgSCVc(pu0*qH)3n5DNy#_Y%j z$jYtn*evBm=0qZmrgAQ)pMMl7up3Oc}xyuUjfR zw$S(&l$&{o#b@4r^M(?W;ioZ<=vfm=Q|6M>KSa8Qc3UHJE(a5MauCH2gr)cyIqU59 z-lzI2MqR5hdkYy<4TL-kKA57o3rJsHarqTd7CMU2t7a?y7t44O_+* z7KdRbD?n&oTI7S8r8~1N^R*S!gr**(dbe=LSSc^QiA6OIX%>+f62n>s2-B4RlJjn$J|JH!DRVpsxpB~xRyRSt&*E+ z8EwWZ5=>E5iAD345w5mxq17aE9hw2HJQ-xHI>ywakLO4N&Rw-O8lO?C*2qF4-=fJN zav1jz4KaTgvx%wUP!EY1bP%8D&MOpj(X+8=rZepjivDIdg}+iOZatzjB1M%h%RMpy zdkOcW;xb2LI-O!70k7Ho?78m+#@ComoD)%@vvMo4VT<&X?|CF5yAVxayHzy9UdZ0e$g z(k=Wt@27RZE+qg?7>Y}#!IFnY&ieh~%F6Mn8fE_?%9koGpf0`S8dYPU$#mb&+?@$L z@gtyA)hI0`WFU|XtU?HEWt9i*f*E}*VFatM+ww5SW{3edHfUL3jb{1|E#1<=P%Mb} z0gq&!H4(I(L2YQv0tMjrl9Lm!u#6_g^M)}rJ%#x&7{d`d+yb&U__MmgJXlld__uj8 z<*Jisry2~=av%`j;So=$883!aSIa%bF;ugdFk%grRhq+}Ia1_mi;--ZX5gv#8cG0L z#z-kEXalM~&^jVij(-_fTCyO=ueQ%dXEKZ@zY0TlxV5P8_`9G+!d0_dv#Afi!z3VU zK5z~boZi&bmtxTJCSF>eJjH$BfQI)!FkNx|7!A^hkkhPv75msKXDrc(++-d)Vqh}` z*YdD@Bvy2uq-6fg?A52;eXj_5N;N`>XxT7g5N;CnJitd|+$3r7rRn;x;oCrSFeGk_ zelC|cw{~?)Ez`QBa0K2zXL@F^gm|#KQZd%6l3~qf`hwKZD`^{H<4A#EK$$*X^=tEY z!{DqYk|1BN3GK}%hsy$j{Z7>%39snHQ4g5o=!Eiqd{Z{9H-1dL!e9@-p9bTYA z!bN#~;Qi|UXvMNXVR$zZXx3hWB&V>VOq^Ou2sS7&<3ujqS6tr1^kfbFK|YiZGb5M4 zA}|FZE)^3U>5Noh8T2`PpwnwkGeoyVAB7X%v*A_=qEKc=HpHd}Y zPj4?b;qNqw(mBRP`)g?J!YQBiF-9^kB-O`wat-w{+ItU>(YylNVqD5~E89B2$=n!# z6XQHMTro`$z!LKN!2F&%yu%r?ox^hCBLFtSoLJpx0P@XMGm6)5-1w2a(76Yo;&!Ms z^#VF~3zfsFv_8~KJa~UUgnIBFEc40R4|?N6P%(d8e8a}XNxvi7le?IT&5VkvwE4>fjf7S$Y^SSiOzlAPQCD=J zzg7lFMJS^qn;CArSlw0jhZ{|XkkZd4WmK3)d4NwemC}BK)=~!*Q`ap5B8Hon0Q}8Q zgqC*<5K?IeGtW)1z9To@`CNfE+FIliR&_*;4(*#j%A+M}m{-)i;T7FRp=Xne33FfI zdm|NPU~LHwHQ|lR5ix9p2|ip9Qr(()a?d2JxVf`+OX+oP^Zm(AxbqFug;f_eV*vDV z^>GBOPhOSmY1}i@@NkOdch?{2TYbjf0z23{Yj+>se`oy`#e~agfOlgk3d9N(i>asr z{7)^e#?$2`Bv!-2nGOU~x2#(@=xlF>LgS*BCfkCOz<#r!cgS$P$7 z;eM(>;e2-9-Pv8=R5sXN-`U;TUeEuk9&Byg-`$aah)J$C!_|$(Nag1G_S(Do3%=%v zrbIh4Yzk#2!aai*Tga7P`6B`F->)Zq)FeMwV z6p|0v)t+5b_gq|;2`qD>ZQl5k*N4G@6>v+kRz%<4;uc7fZe3CI zOlW?&4pi@W^gbY4elu6=v%Fmxcb^YEmQS@ch7zQTT``P-wiW{zS)m|lsV@_95!Xl} z#{ib3tw4%TmBbQpBqo3Ib{3eOx_)tPY!oo;f%%eh2TieS>eWJtauo;)Wrn5O$lRvF z7&!=CWipM{*3e>8Hj@8nx!_!@&?MDa25tmX76}vz;!(bN&ZyZ zby32ED-2dGm6V^N-RA{r+VIQq>M!2l1;W(sj~^#FKG+PkPg z0g7UAw2i5>!OQEQdw2zmp95k^V*UT*Aul91W=Hb*y{sk`j*#TqB1^^$UMM)UP=JD$H=l z4MJX^y@M&N@QAXFE>z*5c>8A_>|ZGodbD_{;@rgXKJF{acX!_flp z>jb2LYt}NUiyN16SY928;byukfWb`j?hm6~4hAd(C^rX_MLl=tMhr+xA}Nf^Lw8Hj z;{U&>`0Z#ls{08@WeIucEFkhcVz~%0OM1whZ~Gs4SGE zGFYR$Gq5DOB`u8GA0a=GU?h24<$K7ls6@D|*30?o()=0Z(P=92N-|qD6i-^sFJePmE2E@uBO+2$pL>C4eyphq)H{Rjra~$(Xc_t?U zG7m9eaQ91G14}Yms1u;HP|}Gma$jGuZ5V&J#h9rp@!*^a1H>3~QlfVxLn%d#xepaX zw7lxMNOA{XkV}E*J|&z|?iBkd*mA@JeUZ%67}uDQ*>wnDb^wr6n@!IIm2 z8DbVj0Ktu%r)4Kqppd}GIsnS5wM*EC*b_mV(Df|4=sHsmLoSjP?a$n&yS@!GZThn< zF&kuuss`CP8I*`iPZ=p+$8Ftcfc+p30BI7`2V3SL4vYdYzZQWncwp}AJ>AvWL|z8b z&Y`XwSPZ02(t$`^fGf&W)&p&tSTE^;(33HT;YF2H@Nw>mqMpEfc2xM_!5Cq}bB!1# zDX{1iF`ASDGpOhd5+otIFf6rwh*NQ#6$(zKCCPy@U4M=yWxDxGcVfd+st5PhS9jL) zuN&4`Bj{!~qPK$un179&{B?O#PY;DmMEk3TwAIOU~GEhYla2k%7>nmZEYBVCx6K%2{E`!2(sfvmkq0GBd~`8!j<`3s=i^Y28(Z`gH#PKZqL3SEau4(a(P) zb>)5I59ANxRuI?HfwwtJb%XpBm*VT-ol|gRqgtU4e(8H3e&zQ+`sTk*5B=I7r-!2Q zYaUI#i7p5Xy~)pfQNM*W_BZ|lCB@%Op9eIu#HNggEb+=={ul+AU=sNuxiwiqon!-_ zh=U3CtZ?}G0_AF>K8#R}iCm$*!!zdB1xJ9?1bQc@Jgit@x}vdKGxWcjx>P_2W&(;s z_x0U7Ee;^4d0TKMGOwkf4(`0jXieU$XIuttY_kAvZQROFK190A zIT-EF1n;PVY}Td$Gg;Ws;!1JbavgD0WtF;4)CHl^b^CkydP9#;fb7fbm&?hLOOyVc zQm4FK^2ZK@u3}E2nzl9?TedA&ranAKnchXq4fEL(NYiXq6E z>d_-cV3Z7rX8HmgsR;}3dTQTK4uM{0D*2Pm?o(b&-%O(gA)E&|!{~Z!fj80xGvQuQDn}xfD*ZiQZCbjGyc`@X_BXa+OT^jAtQXK*;(d6A2p67f8ju{1 zOoj3~5Mgq;7vD(Z0;rHizTh}13*;5KE?g2{NR1MtvoB_n8PiD(EmZduAGwA$X9AQN4f za4?1At3~GV=-q7coUs1}; zcxJ~>NI>sD<0Go0uHePzRtR3~4WYOQ zCX`0!Rk{4nu4P9P^w+*A-%6h1-5Hf!Jvm1c4qs@C!mXFk)~1ER#?S|K1xSs{Lj$ug zoE>n|c7}+D&rqUt$>6tzGK+46ELcyF!S8B?RLcH0k%F1~Od;2?{4YptO5!r ztA-ckY@g>r;QBE$2cFmEP6|Nn^vzN$A5Xz?`K8X5#j;NhYD`1u5A?GFfENeKjPss7 z1%jHN_nfELLPXK$PXc?Ho`!a@WbDP2TDYa9I%oLMA!arVl0jSO`US~T1klVlBG*2( z#zD#20rfRPLCDQ;{fUPg+iD+WerdUL>}fga9y5-&JciGi5XNh7_6{&Lf%~~W0StaL zz*q+_W}`?s!o=Ua;p!E^sjD=UBV5F4B@rufm>*KD4grNxQnlBl1Y_&b=EEEiODSZF zmdsEFPL^a`G6V;nhShv{AhK!{JR^XBq;9N!G_vT8QPa_&ax0841T zQyhIu(U-6hKf`zzT^K2Nul@ z9f(+3T)=@g1FonouAykr%y?2P+Ec#s7^@icSU0%J44;E@(|2S*n0u(@{!@cM+Sg1# z;F08#7?ho-hTI7$W!Jir3bB&&0WDc|I+Hs%b>UFvjPk2PWC1Akp;dWNhof4h?y7pA zivyAjoVO(tavYs%3s_46kr&|mF4mv)DUBQ2NGP9?S=)^{Ik=N4S$ERgM#(PvZDacI z2X_>gNe)IEkx8l<0B2^CMvTiADWc&dV~4XnwyeHO7d zCXa5T-%Wl){|S~!c`4j>;Ah>TXUt7IoDAO0DW?#HE_ZN;CAnB$3LJwnKU&6-FTz+B z-6bK`x}>IBaT>J|CxsBtvM$w~wY&cC!ZIBu z=H@l5xZ0C;URCH-53V*X5xxAzczf_&etR=Qj?h8TaprjkD_Bb+(hz?pg8);H`|cvu z67NiOP&~4}#a+9o%xDr^7ApKueX%$gIdVh_9=6yk0sp}`24!Y+xhu^)gbZzQK*O1^ z2Uj{!&}~yG<&DgYNKdqp;5`W;op&{!Wt2%86aW28ppIWq<}@iXWt(r&r7KG@i9N^` z(8eBkO06pwTrGaU*+#ghbzmmK-szu39PYRIn5$|ps`lklCl%4`vl;yya^}I8OF(gq zNmKbK{G=_!MP)Mw!0D0z_4;wou?#9A1*lJ&Srzi}BBs73cZ#3qAL>`*q~&sV{oXyM z#R3LdMFf-JQ*q~##<+&MJdhJurD>?3H!yP6XBHb(!*69=n?Xaa9*M*CUdj!@(>6c0 zW4lzYb`{v!1ppr;pf-uDJwJ5AP5}79vGks*w3vDh;P{ZX3K9~nymU97C;?sBUqP{j zxBrQ}NbbYsZtKYms*y^m*=pn(&8D1%(Xkz5i~uw@O>BFjFLMn*h18J~Xp)Ls%7qNI zBl@xp^c2pSx7c@}>5pbGX;~{`-L9NICTZ9Het&u^A^y|=RQX@|6)*mzzUp%~@(;yN z*lczZpn=ErSTv~kDo5=4NKF)kB5FtPLT7-9mdBjKlN-Nwpdr03&T!gsdB&_Uc(JCY z@D^7Qtveg{bYC=iQy2|rh~PnR)dy)66atYPf+ z)NSV#503yjsViXW3{+d*6-MRSb&kzmDYw;4`i9Cn&f7X4?Y-cArkCBwqb~#!j?`*U zG33W`2hi-q;t}rJ;3YevLlp9L;lU2WQ3PWW%n}sqRrlRG(c4EDv}2dRN;;IaSh&xi zkm0Fa58EfM!xtRlj$PEJj+vH6%Ie#HMDDyCU$@3Hl|UOwNiM2RL$6NZH;I+#;L%GT z1jk{?8+(9JJs!n;maC*t zfT`l2$fV{KOoNH?Znmc?J$DC@-40Y)=qw1LT~j^2H+49=b*-6#8?2H*#E=cyY<+4 zXX$;qQtfjUsU9O24uYxnq}lAIT2fEXOxwW>iYKwUMT)~JHd|4GMx9w=ou&??CUx0! z>*_rsVrJOslqbc?y8iT~k3VTc?AyEHIOjN4T1|5o6>49ZI@L=vTR=1~nr{EOc~d_) zChmWy#WjxJwl(Rh6TkUFcsx{3%oKV z?)WQvgYGA&-eGECrUhFc@xwpB_9{ZZJ!yEj*$_TdR(Z?3i%U;S&}!hYVf!L@xBLN^4FGQX5LI0_&_-UB=>7C}B{C*<&DWZ;1c9oQ|Q$nwi|+ zBYz_IT7TBUj;+dD2jRvJ=5jN85$ShMeB6s`LXu9h;*ii{aO&R)PR_w4I4U48np z5Y3Db&KmmoR;OLs37S0QQ(G5)jfTHk|DnS*Fq3uji_E#EOf=)ABaa?UKD}b<;ZSd? z&zyPl%lEqG4w(G@zNxw5=`Q3^dUzi4e?Zl%ZuyMHyZH4k2yuw?rTyA7>nV3Z4=P-{J)8 zK;(yTAtj`(vg`!Y!dE}?R~4-P?tD#by;Zd|HtuE=j=rGi(l@6%3*%KQsPI7L$S6wV z&ARyX>k1@_Zs;(xma}b6s@2N*7kg2KjC}Tp`K(vwjuL;9uWBJ_k+X_BQe|OBgVv1# z1prGqe}&g8%9bpIjs=)%SZyJDCq4?>tkPoeTSS$Pybu0M%wCVq#*!mH*acauszxb=NDmUoUH9n{Yo(k(mSxaZnG8HsuY^N zFtQ)}niT;6G?i%(_h*EF36;te<}Daf+sE|J^J~|2b7vk8e>Q@xx|X0z?=*(Luer3UUS1 z3oRKBL`{)@U5+ZX_SLRB;8X|rN07ndhAM3UNU3KH4f@#D7U_>8=PT9yBntstfHr!l)>?czXOeA@3HjN0*q~J@2Vn}w*-v>^^`Z36KSL0|fQo8{g zD)EqV@M?HsF2uL2_J^%i1NzRYPdC5K#?>sQCj@fR;2(k+k|sZJotPr&4fd}uRi$eu z03~{w%7|!;oQ?eo!Et%o5hu3Q{A>6>7BIU**o@d>#Q#!>X?Q)Q6|t&$EwQk<hH zd*S=cimYY&Oj~AhSge(bv7E#r0!i6byi*@QN=>F(g0PQllXS4mn!GqT39sih+~{LC zX>>CmoWL>~1B~p^DkhNo8OuC^7;HNG(i;II3i~+UJEnOn*tfPcqt|F`KRhYKlmj54 zlVKWd8Vx0V*reb)!Q+oADWp*DOgfR35U~gg#Cue1aQ`KQ}VBkjug{n##S_rWXGM~W*q8S5$91L7JS)mhj z-D~q?vL*&Cjk@;~+9hd!ZJ|IGjh|i-!gKNiY|+wj`KA&KCdJ%F$bk-?JlOCRPF|AK z5G9hR@y(YX(de6jm@M@K7C{C$atP9z~!mc-mZpV_WuA!@N<&kXAv9eDZ>2QSxgH&Dk!5So>VdP$%PYQhHLyZyKgd!y8mI!_ zG?eke)IkOKkF5)tjEO-OBEaB({F5Yq1X-Z=CnGup$V$n)m8MAMh>mQy!xDPKi<7JE zHsv^rqt9URKeS)kVbx%3oTmB%20TthoAPT!XB2^riqAggZXYPrk?Y3w39vu~2E^7O z@09*3dUSX|gPS&dP0_mb;dA+%q*2*Vq|Llk(04MU(KTO9HsFvSG&X!K%Q4(|j0`e2 zA$!U(0q~8k))@SJmbK|h`rDtOa5{qOD-OqGjbjy;rqJ8q5^GiqOb+-1z*FU|)YPnj zrPuluyK?aHBS#(wW&sgr&QcpxBX;-Y(xZ}A)2byVPxi=hsU*NU@bY!)D?-f36kF+d zc6JX5V>C_ho*ASA0<`U2X#+1FOL3LL%z^3ZwPy~>tZw2a-7($=tZr>QEv17iCN^$F zm5`=7HBXE^Y-2N8?X_maN-~z{_h5ZP%O=?}er9ckeJo)zErzz&8jA7n+lsZ95_4Hv zn_p}r^NthbK!rXFKuYrY?mSWry1TG+91%g3#g_T78=xuKv@^3n+E}>pgH@%{2HTf@ zyAt)C+l7oa!itb3IwuHvi!!v`UG94F01iA8qDniH*I|lXN1aUQS7K=X;VC-jPQsUF z7rYGRDCsq&LWVQ@)}2C47Z6lNrBk_wA=-hY)D!DQ$A|`TAFS}MY+xM&8`6+{hOBuJ zmD!;T;au`tmDAv$bE+tY4T(^rI3Y^%3#IRgMfkVMDpd)KT8}5j4am)pU-e9yP?96~ zMWsQ;tsbxK%oGP<3u~#v>{(@5uZm$vO5cwpwmw@@wLw@>^Y@#R`=lcSAA;qnLX8i_v7}zqYcU<{IJi~r~<=|aH2ND z3niqn7jPQAq0~gtByBW$2_#p0Y?1G|hn3S{@JuIYxIsR^2UF7j*W*DnaG}gB^US$i z`3eH+glpmme1PC+&CY>H%d-g47MIY73KTc(A&I^sTrYB5to0bva7(d&lL4Q7{+TbT z=V`E)d~sm;Ij;>A7p}|7>IHToyuuLa^%i$k=q_aUvI=g9BoJ6?@<1L!} zDnyiqPTaD>Jr*T(176{qvPK?Lrrtw}_Sy~UBB?1I;r=_%`cX&G_eL+#dWnh) z7=kQ(7czs?m}yLTqvJ^hWl|nAJbfiSGrSe`NV7*<$7eXWvZm@NG8z!?F3%g;^V(h$ zhnTKebA#BvULLF#a`*CXwQAVRl}yx!(iuO5IbGwf-7U*VmMLY~d1Vxd&BkCj^dz`$ z|KVclNr7Rl{v>WrbD}WP;*srWU9))1GC0)n1~K}d{^#A%F}9XPsgh8arB%!fR#c)S z5y7NbJ&pYd((I5JaC?10L{5x|f`N9gvy2?(q<<)TUXQw-*X`H&fx)Ic+sJpDrM>j1 zbH;d7KzvL4>~Z&~-|b!p{BU^i5h9qkNM^G9wuO;B9gzf;z=!VWKv?euQf`oSqFLvGlLsYF zTXTb@Sr-vE9P)8i6jeI;bYY02t6g2@g{p4U^|o#gt`y`H?uR`g$=9JI{m2G`U{ z3vrd*T!t_Udps+~wR{h}64s4JzdCau(Hg}8zpgHquV}SEO>R(Bm`B{qG~cXTlE-^N z@iTgw&FuSYKdPU4Oy^qqoXTxlzMJxmguk!o&wNz4KJ zNc*kxYuOMp)YTD0&iROO#=Hps$|;bxs2)=sf-s14@Yt6MlWL9gk7HWTZ#Q?>;5|sd zuN3-m?rUJf9^U^B@t845M1z!9zPw|M-abvKqGh(4=bbCUNNumuz94%lB20$ zqr3Peab|63Y@<=qU7qT}%Uig!FTo7$#Mk6x*UT0tw^Szp(QTi$Fwdq`T9uMDg2&6` zUlsaY47pB&B8^}E)j7Jt;-9p>J8d|`b_(_iBTT8uF>U6eS}-W$d2uu>OuI5&jWP-R z{K$t&N_=U2elh!RF)KP3(@$l|YbN zBZJ%PUYuJ~tYKl~r5i2EqZU&Q!ZZa13cIteSfH?VZqn@`$ERym)ux$Qd(9QB<*Oxe z8CP|XYP+2$3t++#te@eW5euQ|UmZ-oH)6)x2+YPIZ;%@Cobj_C8 z)%QpE^>RT_Y9XGkrPWiI46PKvwyg_9r|yXZ01-;B$LO{A+TfP7piUyk{uklLj(>@A z{ibsZIG-WMV^(xXJ2`lD>Xv#JsvT|wYqS72nURieyjG|^=mB&{Wtukm1n z(>~rKCMAJIE)Ex8mF#n0GD$nQEB2uYFNNXDjXT3$3b_=DKMug~@TmeBnoXS1V)+e- zaJ1`FZdZ-Or8?C?fU1Dr0PdF)YNN5F3uF=nyVek(leSiunS#OpB#i-J-}OB3@Y<+8 z%=i-To-4h~0)&+(lH-UOI-m6 zNNUCLE9*neB{eRt9m}zp!{TL7%qZzSXpLqJR+*xT%L_I3Bwn37I)&BE*=RdPdAgdE zdVra;9$vU1p$k~N>pQkGP8mBFl% zZVu^O^h!^!*_fI}e$O~tN2|GMc-8Q)2qR!u;F1CqS(Q>~D~&PFZ0+_Oi)B636`G@* zT;Y6N00_w5Zlh1Ls+nBH_NmIji}{t+CBr0Pw5(V#PfFlTULfQHGKC^L7jUJ7IrZVu zZGcu%yJGhncA>>eAK7iGb^M`#cp%t_Z|208UTcJ1T9$2&quB>uZT0`fmS;8jCAv2i^urlr4pC z8OP&l>!<~{P@C3Mg?}rK%b}LB0i1~Nj*eX)^FP1V!{^UFlSt8iRO-c;`?zHV+gNgy ztu4wK?pe6Q@r60<0R1MVLi1nea&dH;;3B&irJKDzaqnVVAmY(blyWrO-sG*j6GLxx4HQy(RicOLUpBa}*^v6svbf82Qt~8Qgo(_U z&rWFaDTO;F2H7DD;L?LR54NxNSr9Gc(7V;>Gv%=&?$#L$nC~pWVKCG7l({9~kk}H; zt#y&&xp)I|_&$=_Kp2NZ{BSq1EeK>&A%7WUtZ`eDo~aisH#@u}#oUBuy3UQ2??agi=x!p1@qOUTO;o zhK&({kic|}w@@AN61i*(pEuh?g566A)-#a;^KIC|Ozq7DXtNDsY>XE`nBsd^HDhq% zun7WctgGx1&*FIR7_e769Odkce|30)81+N5aY^4R8HpAymu!@kI=px(N2@SvPb}jZ z%EXL{>}5ROE#0qk-8)AE@!ei*mx8ut{-r#~0hSVg+#24%x_p9vG^S>|%+ zNF;Q7c4AaDWbA!*G3V(vW=Bx~<;&5&r>`THKE2o0t?>Ic>1f*Sg}*?0MuK?$!+caG z(D0LwK62&)R!op~E?Hpz0@;&-D@8yNRUvITyoYdkX|l4U#`T6q$Ynwv`7FF83X{(z zn8!UHZ-Yg+?_$xLOrF%RL0)gQE-3M{uC28XDu-QUPMkD~KZKXwhHM1^tLz zN0gLW*U0slxFBVxpp4>VtaCU)8Co1*>$j&Cc>Y{|g~K33DRpH*eNwQr=?_{;|MacS zYQ$o~(WpdUw)fLpyKjy^#7%VxBI|0ARH<_4x=iWmseItJCOLuXl0^F#o8gAdd{CWFxjn+(d55XNPn!DnWJ4V#-2bOJE zy&K;w>)NqOYh9L>WAw=Bo6eQCPu{RkzI@3W z`F}P(+lA4s7a=ZWVnA6ZXT>brHkI)a7hLFeeR6aRnTOk;H|?|5rQ6s8WYI_Rwf&Vf zw2FQID`+=+WE+cR9yY^QVc{Zymn4UAsD^jH`22nwSIU60k3AmA5Rx->sc$Q8cTpGD z5Yf@`xn>n~<4PWS7HyAx1d$N1x^GI`_JXt=hKthYHwQSN`(XRB%sZ5pp>RWK>Gx@T zQ{G0infO3HtRGz=TP%F>JA#%AMce2|Z4gXG6@R3pa260mp?OQE5gm)!Z70nUwQ1nu zu2oP?E-cQb6A}12hLC8nel5j<9Wem+!ei>UG;|->3J4p*dQ&ij7{~?fn%a)^=t~rk z?BLjsWIzU41Y#s|kkpF`>Y^czNeaG_lwEXCZ?+Er$R@<(<_ei-6e(>%eLS2DL+Zxg zL(Tw|_8KDN_9^=m`me+=eUkYh6#wLHAB^Jecg7V9D&hof?zsLX9w<9W+El8iMtSfy&^>319N2t zq1IKFSZv0LV=YJB_46AaVr^&<{`Si_WTEjWh`|2$xg17~3d%crFxX`yoO~R(J1qmf zYFOLtuip=mK(N@8K3UQPoVm^M9{%|gw*^LtWB~VXEla6(q4I+19u+Q($ z@gvLSd`FOLh$rNGG^I3g2joOkX;xJnaq67GcjYB=Y@kzoM zGt_7#x)#A9Yvu{QL1g!GfdOloMeA7!tGJ95<&qlPYwUSXX#hl}ltNT#98GOa(r=3` z8(v)Pwc-Ro`!UY}q!R6tOg4xH&;_ymYjMAz;qJNY9ZtDljbz5+cJC+{UvoFtR!d2j zMC$~~wPwNt-ZuWUz_zDb)DA&8b(+rPEu}86uo_$%mqj@M$(x0v>E=Zecf{;f z@Sww7ES#G7lgC{eW+rVwxD^YL2SH?)yN{QB88}_YWpxqo61UQKkX{~8KG=51NWIma zD(tyRv#~?br(>XT79z^|x01b`DvOhe68?DNTT22>O)Gfd&ffXDFa4kHMn0r$tJ;39;G%RmT~2Vx z=T29xSRlF-PHsK_aO1-t`W=mRzWym9@Nx&HoGI95+LsKwFnA*qJVaTHQ^$#RQWU)V z0uC;>WGm*S0?H;0JG_V@q%hmUlo&)Vg}!&@scK&-xx?*0i~Fyn3?zIPmiX|U%$wHx zf+_FpP(6e9j&i*~&=)b>XC>~n;xgFarx9j_PV<{~V6+GmW7$g&I{dE;*coFr63y>Q zw!`4s$ePF_MI}pgHdr>M$4h3ZU3$Oe9*q_xRk>nY<#Ay)qyRS++C~rqql)q~Km1)D zPbMkb=h|9x#8Xg{Ro)`owO6=;ENjoQ8>2`TWl#EX;6(`NQsYgCWH3Z#6r`)zvgiF& zp0(WIQK?quUGA(IHg84%9^)$9w{!!C))Ld#|BT+m8Y!JU^>d*w>02x$DPIGE_k$J- zIx|QSL24b;=1W?aU4KuyflJD&(G@hJynWlnu-#!h#jO~x8fUqWaEAYPZe`1UuNUX! z`XH>iG+qhaPCM5(=srhVWL@;4ZF8l|GKLFQR1gV$KQ2_gVuuDMFBT{ryK-c>EGIOe zlQwU!G>?D0c66L1X@+<4$Itsyy=m)wW~lW$nt{i~kSw3k_X9Bd)rEV!o!5+I-P9j8 zGo7KKm(bNXju<3BoUoBYZ!lA(YDb4vZTjh1UiAuRSsF8?nwv*PaAESUg8Mnr$YkiR zMGMj{gH`QjDPI^<>Jp7Aa-X6ArelJqC`a57mLQ4R>qzNo%}XwJuzgKFFK%^HMAYc) z@SATG90{UW0t320aci)){k)8U8b$UkYO+w)5UTPZR-*d3-y#! z;M+#5cgKpbT+Z{R|I?q9g7TmLo&Rb6chmI~wlfT_-*y)Nw>`%)wUMhV;6^R-${8VL zi<*R5<=`n!n`&@Ll#hXI7*S;{3piCQ5xjFiifsnkpZE@N%@RFNU-)`Z0{9_3N9{2o zZ|XWzHjRR7vai8*PmksL-28==h}bxCFJW$pu!4zNU24p{erP@-x7n?-M+EP|N{b0< zew0ihJh~uF3u5=uyxQHUj=_E!e!BL^>#J%85rG+ZFAjlL4Pbdf4>6Sr zRG>I0eXB&@o%GUe`I3b{y?FG6ZN?m2eba5Cwoj86Y)@v+JS9O?-*~@60+k$WO+Oi% zRbcK(0GeM1n=<$NPsi5tbpLQoaBYRq# zemZlHT%!uGLKsKDePphr-_|_%>4e>doIrn8{N&~aM)=!1#&hpTurJY!)8}-$gX+sq z34M^P7kC0nHRYOT$b|RkHrle~KuLF|1F3Hnh;Fa>Bu7ZH#tnku>dvK`xmIzy$h_?8 zPDsbsOA#{-; zRF*Z2ldZ~l71BEi{AH&Diw6ZHZPm6^y2_nQv0nI z)1coHhs$dgXWQC3k>f-m^y!JL?^U`4-ys+^_x;n;vy0~Xq9ul#VPvO663TrB;+p`P z2!xDMLXGzSe!Fz7A`aCbs&VuyW*o=C6yf1nsnVU84-w^&0a=_IbL>@=-_|H}X5vf` zs%~?bwbOubO~kad4UsHs%`T^3;Iz#q);=wEd+M-?P!xmJCmtNXNn>q75=5EPlUQWi za8bZvN#85GnMNL`K$RvDk&Y3bg`EYv?=L7qVWKZzyBgqO8I;sV%GCZDns}N_9Z=? z%yt!5C$=L)DCMa?AX1g)hKSOqT_WqlAGmPNB^`eJ^G~`*g!FE#zx|ODm1{y zKmW){a;_D0R@FZ=qjK($=SV49L(-qLzmG7k1nd1Cc~^@Y8~OjaOn3x)oQ^n#$z4yD z(St?QH4g7Z-SD`#2|MkS8dghF=z>cR4QT7&saOysDAip@Q1+xQIzd)>4!HW+lWz2? zc8hUVdf%Kk{dttg!e6F%0bsE)xwnN#mwmF$9dKZ6*E#Uvc_@J}-k`%JNT)^CA^w)W zT2y%)XrMzHvdT?O4?K=nSSyoVyujBQ;f$kT>^fq7(#wvL{quOoM(pU(Aw9w1%vd2($#$Ll#~sIx&%tr75*N65#cD> z#97tR+cT8{4}R%qn2M=uJ>-@&7sdT~n z%4F9SUIcJTI@Sjc`Z;JOx-?=?hNfcG@f~vm2tBva6?-SA2JZCh!(##X`-_SZA26|0 z|3GWvNGsqP`=b|kbeJ4GEeJ+UgUwj~BW(wfVOVZUpNiS(wiTO3SI%Cl(P%`qrtv<& zPUu{ng0NutB6SNsZ@n%9<}20?2wLFt05e}}^@dLET;H~Ixn3(IVI%BMZAPU{0S-1ot(JHmFVTx=i!?=p2>9>rK zg^?vhR7+U*C1o&kT)1Sxh(COK|Dn%P6PlbIT8wnw_KMM2ZQbR|wq_QMrK60zp{yTA zMoiY;kT91Z)Oo4^jmni~4GwaW!&^8DZO5j&;0s|Q_YBx%t82XOVH!W&nnMMxzdux#Rv8B{#3RZ(toalyc>bpma5kbEE9$mKcM8mS zE!%q_?mwR2!;*R?amf7?+zc1p*a2HhyRM1jXD9>|r=kII-A7h;=9^f&F-?}5wY>;u zm4G9W@xS=@yHR4x&rHom4wZjXh;4ORdf74zw}%(|Nz_+&=^a?%%x~j-29mXmpyLhN z2QKe}Pk}PsHajiu8y<>d{7~X>75zXYx0+)_BTKGg_y-?-^m}dLCornn#c%)0I29|7 z9g`Qdn!(#dWTYfg5cnzWf{$OQ_%0(%@R*x$N>6;eeU)oA15n#>XnT;OxZhNO9mQhz z3qmwUDg-BXeeLl#L!V7nAuPtCPCRAjDgOk$bP{M!cWX=5bZ5wrnWfRxHv zE7*Yq1d>{h?}m6*7S0;ZLNVg2so#=zWmV!#T1Y2pU_zo#o?(;5hoDc;<&Rw%((%+4 z!ty%CHG0Jpf##uH&;9p{rREa(vlm8WyPM?)UUlV@TaUgLXz*{o!L*jNr@6QtUA{e&4LjkoppSf0 ztY9w}FKpIfCfnn9_3sE+p_7BFFnr@vIk*|P6;yHTOb==wdy}7^T);t{KD%(lX0Hy` z1R>0i7h2yU;Nk*icrw3IBf}*S)YomCvQq02;|#-v>Q185n{XuLLwVmCz&Fz*FCziU)DN~xfrcL4?Ex$fIu)_NbsWo~v?*}G6vrWb9 zDQqXP=#!57QqNda)K>R%^@64V4Xe{-)>o6~yVydSCgVQeZ4qwlzR?S?=w8i`hdPpQ zTHR28W7D}BnAsDEpWLNlslD;Ln3@gfCwIty9S1k&tnm#q^mRSWYXtVYC7Ac;?PyJD zIB66olBnVTIj$}Y*9ZK+bptkw{c}$vmlSYr$&8jOY(oTCmVt6Y(vxJ~CGIfdWJy#7Sf}5& zYQ}djF=J&54-Qo(IfTl|7i)SCb1${{ji&_uPA^U^G2r5E`m~i)cmUNl;4i!RP}Pu& zURir5#vL3xZCx57!U?g*8(XwPJ$)gy?G}2dnBrPGFXG=7KZ}4wVyWS3mYN>F83;c@Vrb&XnGa;lSP|x?fJJHWJNTFY% zHvCp#P?!SU)4#`OwKY$qlJfF3Ab4;MlpswWOskRdi5EuWincQnt)soa)$T?|VlmRE;X`3Xvj7Xc7^JAm!O#hkG17KRhJft$f`@=6dHbkpHpls{3&wzCJ@g5R4S zUc}5}{UL^st1)7zit1R0pQg~ep64Xt+X!b^H((9p`C+nDCbFHk!J0DR8uL~cS#j}c z_0j@(A&rI`(5tt1#3aYy*1~QYz4NK8g@|ScM+*1E)$YV&S41Jdx(C^wH)E@H7onbX z?$Qp?1&0S)-RMRK)GWD~+PC{<0QFFt2D8vb4?|}8#oFe*N58rM`KKFgHAc6xufgE0 z{E=e$Q65D!#yyxsf#kj-OfCD6p^dQ6aJF_{d5;5gj~^vfutH=r%K{pf$3-OVo|+@q zMps=f)ToF+kXvmd?DUL2=PdiOj9&7J#gCfVi8w%s>#)e79U6m;F9u-FP(Wnl6-rpK zaM#{xaoB3yX9zITAE3y&m%e9+o^L3$an!7+Ze!_h{yW{+ ziCYiWbk0U^e-KgDfMbx>Z;m^K7>+M}GyO}U7p7~73hH-d8GHpar+sG9itBx`%0G?)`QbjI=ER5}zti}1hxQsRi={>>T5*-0<5SxCz2Q;NP z0CD8=&BcbYO9?b*GA;uS*;GEWJVSu~zOglM35ril zYTT?V73k)*2_J8;dg`GA3F2Z0Wf?(U!;Dh(T-Q|Bam&WXSLu!c?%viBq$r09R-MOS zMHta;V&Xd64o|Gz2tv7uzf{ua97>u%tjMJ!EbL%Zn*L& z$y-@<#AoDELz)0sHfXSmlWHUq^Y!17$Rb@8yeV2#(!+FWO#9C@@)VpKpcwtWZ?{-Z z^lbzRLcNz9o8dqr7ChJ&Y_vcDGV2dLtP*#LTbvthY+{egE9w*$SMWttdwkMCz1o@v z!YLH!q*vHDKq31l!)_r%<~n8Y)#-NoYi3dLvH$*mV!!;7I;*91zx6#W0>VhQAvP^i zq)6;Mnw1>2kZ+nF{~venKoHYwX5mX<$JNj^2g%40AWS8EA`Ux%T+)I% zIb%4V!cdNEveVw?ZhC8Cb-2!%Of;5&bS5rOpM9?78a>yY!Ua`8)RZ> z8~7$M%W-C@LpoDsVa1m$vcIev=~XF%maNSn{g2zSkGt|%6=xaw+g&;Y?nSZU^8Pus zp5Q7K#n*U)+AdebqS6YOphoxUpD3v~AH<7uo8Pvu@X>A?2^V~_*$QU;bm*eZKK=aH zos;GgJ)(S-tH7E!z%m&b$#Py6(h8YC8E+c+S|+Vtw*p6tli>IZbHFpM1D#?c{?yYV z?_9URV~6is&BLbwp)C1-%+enysF6h6k}y_v*$dd?b&E_^whE9T`Dvw+#OQZIyV|Y& zFS=W6h_^=(?MO1DVg@XodHLJT2Kzj$K9dC+6TPilX!nG%@4i!Cp-zht%UoyMoc^!ZJ^N)Y}2mfw+KNhzDFdPh0lX z*5U%NF(FSuM6BifeMqNdBu;>ry^2g`KTWBMI4$}z1uGWKPPpRkUhrpxnv5wJo|6>q zo&d1(Drfq}ib3OuqSei`ardbL;Vmbb2OSURrr_6rG zK%Wb(mR5Pb4r0hGE6_JmpN0%h)zu|B!=8?=Qu)YYDn+a$o`bf(aL!0>l(xU>W9Xa` zRJqcatswoAUl0~kkv+@wQ6&A3?fRjeiH==q^}!*#=O%QT1*5KMZ#y|X{A28A3EYnM z4Lsz>aI5_Yo6r}H~_yuR5!+1nrH>e@7wVwzCdm0|Iis@oQ8_AfO!^7-xX zwCF3%h6hjxO%nPwwHr5etweaOxw^XUFn@Y}=|C=f8daU9mAqocqh3U`XBQ&cdA!leO#p5%QqPq_|{hWRk zIW()AYf=a`uH!H|fIQF-vIUtncDdj+K*~kord}AAkIyhR&=T?fyAWA&v&ZmJM4tp` z1>-=KwR8iR^*vA&b;a=Ao%<*efGCkTvktsVk3BOwz9ifu*Ey_#(nT>MR*Pn>-xVu* zh_5V+im?vH5gKp2dV7B8vFsc^E+0Ndo4=V>?_P@iEy@8rbx?Ctj=cAcAi!PdpfVt_ zVg1)5cosT--Y^~d^9>bH7du_}eDRzqp?vVs#Wg zxS$l}2;9wHiD!(hR9NB4e4zR1x-Geysn7D0^b8|W;?iJPa$fdeUwCmknzYOA%*BE$ zb^O#Q8^S}UJ&x)|g@Ia>H(;RSdl5KLYt zV;tN;==uznn+VFpQoZX_EMjv~JMXds4{wNSZ)imc?M*Ze>$!+oP>Fb~_Jfj=`qjYDS1e;@Zz{`WXeIx_4I{ zK+^Q=D?9)Za_Z8u$a^xk#v=}vOusQD_J>DJ@*5G#=k8NYHi(pLxe<$W9a0}Jzk%QT zaBI;gEqpn2Zg82mXO0x;?DlN5)j))B`1?e`{qpG0;t2U~!ujdNOUqrqQT)R8bR+Y5 zAxBDQIOkuetw&~L`sjPlXT)B)5ON6?1z(NS42kL2z(<8Ms|$>ljDm*_myP+R4Q&1kmxm=EY8aiY)2bR*A{qOt3HZd zIHEd5GBXct7$yBOp{)pJ1Q;>f2?Hg!%~8b0zyn)dsXG z-a9r`+{sxkfh08$nn;k&wJYcukwef1EiD1Oqc`82j)AdtvH*goU9(ISx+|FxVlFg6 z%B0W<D2QRH3SESsMHxeZ@hya!%Ln#k<9EyT*YY9WYH986L^o4K? zz$lW&Gr9+X{PTlsE<;v;8>l6WTzr(Eoa{x&iLHh0ALC2M0OomJ=~%nDcqLw#A0Fw= z&~R~&0f#8)n`JXwa`X@2kDQCh%p(4-9x_whD{qra7H}C&```_XH^$oYV zNB7n?9&GrX-gvzB*=G-)`G+0O$Kw2QIx! zHb%jpLi`$+($FT|s#~aJn1&u-Q(!u&cr$5Jy@91qKJuyc`Wp1w667{xW|h7T$r_ZV zxgDhwU!D>gRB$%$PDDHwe>XvAaouwm)jvp|i-gKaa@pMY{u9$~pCW0VyXCs{N6nta z`5M=xPH#PQl9ry{ZPSPlj1h+W8UGz@Y~tgFJH^}%_dkZp-BS54=4*s6>Il1LO`Ea3 z;X6nw^lXG1=1UomS!wmU_cbBfgi7>kH-XYCfEC`b9!%dd3vNek_SAZ}URz2l3d4AH>%=h*0 zgs8((DNnQj3a(I_l%?E_O(0ptN+cx0*1ci@$DN&6OJ#lh+sIoZeMM^~= zyy*VH`o`1t;*MqM2tDFUAwwV=6sA}y51nnZR&Ne><y~QQV7uJAT0TEih_QI{h!I})4 z>JlS9-N5M2Aj7{TA%jCQqyhHB{$X3*5O6cVyFl%MjJH3Sc9=Qpew zZX3Nmk#n=?lcieXq39gJAt6UxWk|} zQA!>$<$a*p5G7JLkoyykcO?hLJrMTPcG66}~FR+w;n`d3?u^A5!`!W2@8Km)s-f3%S=Nm*M&W-LZF%Zo@u1`EJlOE-I(jOo; za0tKH+;*1$=WqX|bW7t7y`+a?<|@Z;APjre_LMCit}9AUTtge2#&!5aosew-5QDfY z5~Y_w6$C`V50~yhzYSQ?IX4z{3ZgC7R-<-CUGKyQJS)tS|&5nD`ev7AHZicO$lJ9U|gzv4XRtyVjp$)=% z2klmJ%pRI`LX{)kD0H3Wkm`w{go!pY)?>vsMkaY&3iYmjiWZ%L9!hNg@E|DYG8`no z-J%911)xFn0t1o~xlbiy==sb=QN{{Om~h{dc`Tm1wY?gw~RD6ISj?l~DNjvnG<@mP(f2T!?P{hQ*J5ev=nj#(LDSp+D?nC3Vbt{e@~wdg~Z2okrv zIXt&EW07D6uw-l`j*DSnimzKjA6R7m;;I=9X@DanEA-cz3a@u%-V%UOR5n*H^UF9( z;+VbgbHkyKO2e9N;D?Bye1hxl(DS)@fcj}E$ zF!7Bv%?VM;Gz_z5>G2oso6w7sL000LezK9-B7c__K-f+|(d003ZC{4370KNiI4uXi zN2r3Imq^vAkDx^ctot}zI1)Vq$dFH^$Z#h?%`wlBak98ULUZDyBk`!QP%euyvodQX zY5|SDadz<*Jnq@nM!1~3X771usH0pQtW?)9V{DNa9$iEzU!%S#?!OH9W02$o>oZm*7gC%87f zcsjVg$Wp{*q8Fww1Qfl;cqD$y=5VAhZPpd7kAgT_cBncRs(&zzo z>yu7>foDM1&bAaJ#!65jjMf+O)8;!M$MLZoe98t*mktS@PpKom_h z6T=FaQwC9*>EgK;FIvv*S{uKXr5ZYBIJLiaK+N{|_pCH=`H6vzu?S?ej<(G}@JIc) z{qMC8%?PufK)s|OhqmO}2ba4nW9g4k9jkYKtCF_pLrbcGEpSRTxQ$|hsupJ?tPlrL z3p&+I+nh2QmdC(gT%y^su*}lBpA?v!6-o4!k*Bf%N;}=&+9zls`woGs*iLv31wlIi z>Cm3p8HEl{)2#c|rgKw>6SIOV+f_@(OLI+(rfd=RrejM{WF29kgg zKH4qy=1I#}*2;HTtkncg6R&vX!@}AiH(Xm(i&Mg3DZkX`V#cG@#B1I_#Iru+m`@I* z>Piq~?rf!wvap$2eohIdL*XVLY~15?ou#{j zbC}@U(2EizGG7s|+WF;r`GSw^;#JtJEC0{` z{9pdY{vZEqk26401_(=~J-0N0KuBFFR$P;VUJl4w)mXi(tdJKy@4e#7Lc&4>l<_&7 zM|RK^YTh+0JguL}e4l%Nq2E^%4vf=-ih+(M0Vx<@WnIJD)W3mS9U4E#IyrZewaA>V=J!Jq1MlRac4%HbWXlIZ=DEZJ! ztl01U)b|Tw2dEhTY62Dp)WNo2YJ_oyO=v+ErTG;Hc$kPVV;=(%q7M~^FNaaZPanG1 z?@Xo>M$x&aSUVES4T5_aQu{$8Rks>epc=5!80hZd)eI#6+1E*Gbxz zrIcS{0|sjB%eG>@gt0u7v@@z}Q#ix4&V7$4>w0m2_jKf7yA6^WMD)Iq6$ZghPIpQT zA=cFqcxRKl2s1{9Svl0b6w<`Z2B8&Gfo6 zH#o6XJ#vZ{urlwpF%DlmTH9-&GZ4Rg2|)_lK4upIt~wO-$m`g|QB!?S@Y3)ML{aDA+r?A>4txHOYfBR4yU2&*d; zsf!N|w%*?9n%!P-4n?SG4vO5r9P)U7i-I(lBshE)a#F84Jk#-`5+c-r>$&2i6Keik zsL;dcYh^PaZze9(gY?>d5{cG%b-vg}&4*HZLm(r#*zXE~O*IX)* zU$K$EJ`Q*2uGJnnp|HYW#_eAVR3*jD=Lk0$;yNRm*N7raeH(Rh>Y|RE#r4~BfP|iB zry#yp?c-=T$(B^Ys6n&_STWiF%IeI_o8MGe$d6AmuNC1jbUWri$3mxt46^7n3drf~ zMw6e|)zG?CK+jmvYUPa99&QSCrg;;5@c|kL+fQdPR?WJcY_{eKZB(OMKmF*VkJ``6 z@VgwHzTMjsx}e^&?=_0$JDgd<;JP`5=)Wjm&cM#mqoJ zKX_3zrH&~{Yxob4L|QDP2av~BOG;4D7gxLV0M!R4^esz&F)|7_o^+Y_I~$1#AmHUy znI^`^4@;4Y1wE+{*FC1JrYp>9I}uk(k)C9y)$rk)qbMVtKuYo0Rrv+V!2RrB{Geq7GkCJGrn~1uT!viW5TTiJQN9(>C(teJ<9I6y8PDkLNexNRCuk{%8fgoQ zA(%m=NRZz^u+WezU;Z9XjjXxXG0v@iZp|V( z=|yyhTJ8l7EQ1qQh{EoSK>6Oh5$TAHR+C?8Krq-xclv|&!-O)KomW40gQCRPgROB< z4eRLQD7=)uR4l$W4nUN$<#@uC$YbH-@A3zq-h1??ZDcS9mzI=G3|T4O;DxaC0o{;% zFJZ?;q3H?DCetzul}p|_!u3rWu92viUt0uay8iAq zvLENtA}5G#|IQ3_SjV%Vk7ZU&?-&x}bFPcQm2(DJ0d8ija{L-!DB^O76Ys81L7f45 zx-C=~Ji~9I$Ew9)ILhr{fJmA>HTp6HO8d><_>RR)DVW9t6~gp|ZLicY^f}`cAR;Jh zenI@bDx*~u0b?gx6S=+PcO3}}>1md7^mAQMB~h1AD0y#$uL#!hyIT$NPEFSSCkev!KriCcFqb6K{zf9phW~PA^Ns&p3IXA=S;f9@#x2W`Wg2g!o!aINt=jHnWc+wn(jC9loDst zh{hzw4x|S_w?=VTfzQx;4eums$tM6o&dKxpixAZ9rxD(;o;3Ug)%*VITN$YdU%tc& z^O%PhF@`DlK;ByHt@g75O0PRRF&vP0_#2&T(FSq@JKb#f|K?x(qrdkb*{^JE2DjE7 z;iMG!Ftriz0w;?5|U zMtO9f&#R!nbPT3Yb`!KwfCX^xCC)-y4=V#de6{D`DYWdA2JnCSFEgRqNC}HgxcTBu zLxTZyMN%sm!06SfyEN{Yf+=1J|N!F8$=Qy{pDF@!1M zr-vuj2}ElYhjWbY9UUpD4cm3f$S+O1ej3&|{(8iKf83V2JbRN?2MOVwykPvn%#&s3 zwbq~RWnnU8#0|l`M=x`3Ta&ib#{_S4>i5C^l?wyw)E2N_9byo#27qgW)ZsN^M`BtD z|FR_G(RMPV#ezU{phYsWZEIcba)8z?86`7JX{O=(xe%2A52?GEH;V?F5-Wqx1*%(q z3QL)BqMj-6^10vL$p*1^A`NXaQKyjQNMNe80DuLk2DW1UA{(l)5SAy>f$eP1L>xvC zG2~Q9&E5dxdwEI(Plz!?)2^&;7}v@jh<1F$wPzmqehpY*2ME?P7-wRafR99Kto*c9 zD##e4Q7v`A9%z{S;PKnEb+oIgiZfC?g=~gn91Fkgnw6DMTpePF>>@e5pdpK&=zuZw z*|9%pDBn9B6T=TWsrC*%T$X$Mc;_B*Wnbk?sOGgP5;H`~06p!St@L(bnk$cwz=oad zF19Ph9lGed*QAWa%<=Z(<<)0?2I`g+94!BSd$j$b}ab82_Ce($} z>h2Edt1TE}mudC0n7KwWfg8nQ^S(R53zr(L*U`OLn_V-P@R!ThS3XjmjOpRQNr|sy zvMHB`N*W4%sOHXOX;@Kn#r=4`(X4Rk&K+M<3=88tj)p_VGGh4wx2Zc0pRg>KLCZI%-;l}X<0(u@#n00Jvsj^mf&#z7(g-N5f z-w3Xxp@~RzI>7KVgVm446YYG=a;~GbOk~HV4f^4cE~5qbxwcpeiS5}TEFhrytbOAm zT4jDA$zHJ=of#M`m27@sqs*B5(B5GkgOiypjEzilC!1C3Zf)pbU#i8>m2w#etDpR= z4Ie(4j*0raW{%a-H*$+Y&g zcyHUH7{lmj>x~@3VXB&5ci4r7;uOhdKAD?Q)HWHpqlt8G0Q1R*jK%g5}jjisat7>rFnZcC8 z8ZMhqNfBM053ESdfS`9Ml-HDdElL#`nfP05gr++**6QKW+eBH{FtPG>7z@A3XIP;; zcjFfw<4T)5JgLQ)^JOZRK)YT-5!22zjBn`^gA46d&(%SxQu5Va7P=wq+_q+j{D|+5 zVUN5za=)rF{xxf{8=(bOBd%Xrkf-}SWX*~!r;wmSYf0yWk+Hb4y2}Zn=qky`!Xwbe z8B5`AvkR?${&7r6voGn!IRZO9q9AH6ut(Y;>Pq`*%t&(XEXSj;9weWzdeJN%1^4rHe9l&xJLPU&@(S$n#Cc7t?#8ZOYyCj$Oi9*Z6bqX zW-r4vZ_>i>OUw7+udlqbgDr`YFh^EQVObX`n33D#btWcw*Yr~0uji&@&X{wh%$dKNc)#+-LxVl^O`WQ^p5tqNG)b0KxNl$5Ov&^fKb@*>2EIx z^XS;wZ(A|Dz@$HY13zi|cUe8CMWi=pR=RRt;1Tj$bRBT_MDx%Oy0m&--}bQIt;Yuj zr~jJKw4ZLaf-{Pr5;3uCflC8`%Z`n!XyC#fi1ie*MB+968#AlNzc@VKl2#s*XMZIR zjE>*DTVasvGxL)i5zNU~#_X)^&#OkFie`Oj_UIf%vTPnCGXo;?Z2jT-gZpi^F_BSu zN~8^#!(dYjGx+qWy+4R(HvnfmO-sBzj*6K?pJY9W|_ z77PJ3t7<5lXY7{JW}B}R7l}ynI21#+ND6F$3&5WQ#udy2ne@AURC7u z9Wnf}^ViX}u>f5Q0b*()NIVO!w*)9=7bk~A-7Y=T`2YEHrW#Loc=1Sw1bSu5YFlzO zAu0rbB%LaKQ`Q(CUlGu}Q|Mf4d)>N!mh>>+p`Cs+}~(F!Pabr#yZ}LN|Yo(c8dW07e^*MpY%e< zonz1@24pqvdtvsUoLy0ZD)ojjAAUM9)1$ZKvm|+AIW0uphH8#TC+7`{JN)|eYqumO z4~f0*OL_HEsWAw)LOsOh;#ox1Ld0+>UBFEs#eKsu?-sYiGWkZ2Pj`q(XqZ~$Fzt(! zBG^JZzl_Kazk&q8*FP9y;`Wwmqda0GBcaf{WG9emmdO_CBkd+xU-^*o-qZ;?37AJl zu<7sUFJ+2__#Q0+9agVs?C6d4pYE2)0zh{o5>aY!iyf20nh-@Gf6&g0;h)w|+Tx6@ z>wwDy7+c4WyP%sdT$J(G@P+2wXWI^>o%EQTk-cl52<&DHfDR;@x z5`hJ*&Sr6Rkgu@o7qSlm4-E5s3MV7jm?8ijD+TQ4#pyP9%tSH7@r8sh4X+77-J~rk zDmr&3gaSP=F-qFTe(?P>jxbQmP8D}s(Pcn4!>Eco9*dZ;IBis=@E{OI-+6yL^+J}U zY3~Y$DAAt7y~~|;(~W}}@Minuja?g(B_0B#U?#QY_^#`*&|cTbTnr{i^30XkP0Ium zQaLE72~h66slB46Jf zMI-jyDEOHY+KpqZ<<>FmM+>fftmqu9Rm*n!@`fYPE8ieRpw2J_P#mWwCG>dz%E}IX zQ>BsX8Mw9+Gd7fi8z-C*Xe`0@M$gKl6lFRz-|O5P%{AWQm&LD=o7WnY5W-MN%@8b;>mp*WnHZ&`XSl%#UEla#$5CxhryD&~1%uP@ zR&+=pJQQoOwV$^^6sbrw4${8N@^pPUqzB-F+JcdH6h~p@(V4K&*?c6{k>H)5l7f!N zNscTwth*z-HiZGreYcL@lKkjWq#aTD3km;bMfsTW?1uCsRLc~jeyT-E!-kD_W!Ezr zu(YQoHN}(`#vL}_{}4B^n8UyGD?VX$U3UzJ7Ov39CaIatN3D8lj02*z4S5(2t4W)o z^4-Z0k(?V$7$SddMAqqfpIDE_oVuFD zTfee=wy!tGrbU~{iA{KV!PSYpW>h|pcXhtkj`QMbm8lmA{S$vaByzs_VGPu`-O{hS zuons*z$VZ3Z&?Pq{W!-?@Q3ZUS;7_OKBCrFQcy!*g8XdBxb&lFy@;7Y3pHHFRio|C4#JGMvaCnem6c_LAcH)2dq$eG-}yC*5?q^ZU)mW}l2T3B zHz;t$RG0qdzh^JBz!5zQLcN9<306?RVYQMSvJFUryJji zvOHljGX*j-Z3Fa}1TvKB$Y=nWgC-&;A5+ygCI^?+1SoRBpy#e&26hn2xO(vVC)5Zh z^D>MZfa?k}x!4$5SX1BVeV~S&Sv=4eDkY z^PlACGN@E4slppm{`z;jF>-X49&2Pd#!vph$2gD)Y9Zn);l~?2;g_qNo-ab zXj)3vBfW+sxD9PbOWdS#AchsDof(6vicJ|nCDp#3Z$MG)3J3S2GE7o|_+Vi|N$5;m+}Poib|XWGwew+Np`b9CaRIK-T)Mvfpi{ZPl{NrQ zx}ykG_T?V3HcGTZ#^DiL=DjUoXuNQXTLB_YR`Bia&TXneO2=MFBn z+;DAOkB=W-EC~0|BH57Xqsk#x}3O#FJ=+wJWF&7^-?RcK;y36n*jZk(x z#`;%VLR?Rlu$`a5t~xx#82WuVbk}OAFWx)1#SkUvie`4V=e2<2^cTZ<>1}#30pQRe zwrjD>6y6OLyJGRu^U2n zH)Ba9suF9yvPzRwP+Sbst-d+-JuXG$NkV?ESaW4?9&`(BOKf4qEYs>iPkW^Mv34a= zdo1aQs0Yj=hN{v;Vd?oVeKUF)ylmD}BC2Dn9uh>k)R%`;k~*FC8)BF%W08VpKD=k3 zq1iLzk|WA0fAL$9z9v&6_cY^anBO#yZUYZxo^r*bkwR`znHj*H5QoEE0AKzD2~Jk2 zhONO0v=3B2i-@dlMxh(&HC=*Em(DmkC=lkm@Q3(#z{Oj0%72;WZ#K zI-=^hS?%w22>?}bE~+TQ0e-NVf=IRcxh0}AG)6YaUgQc2mEGsmKumWyDQtb*(*Sn;K z#0bpr@L56CqJ$?=^>cr5Sz-(CpPzQ+4i{QfBt=)-FEc{UPvDJT5)o@ZAX+P_e0@?k0DMkK&>F zhxLQD14*dcFxZw)o-j+8xuaRt4e;@=_l%}ck$oYvX@HNn4O2?yZxs}}#3KLQ)#cDw(aT6`@Lz}mz z%*<@L8<`LcVM+Dzz0>4t)_j1EhtW+4R|+ghV8eJli$wCk;|>;FBF4$t)}3*Wu^I#m z$V9>#U4hX4WEU94m7=WL$0>M~v&$>Vg&R22J6(}PtZ!~=9-{H;Bb4xA+Y_3`8>yg9 ziUNiytfx)bhsObbVyhe|m>~Hu zT_X%+`lt>2=J}qrvg&+v1@m~73n`-$sgU&1nNgCpZ)!&ql?OV+^^E~FHwb?PG_-X8 zpl7U<&*owT3UZ0$Rre~$w{$AhV@WQK*QpSD-x%yx}#DE6&|JSn*cn>43&)cxQehS;9Pgq z`fUxYXeub!NJAlsWmJcX(X&ecW{Qmf8=}-s*@!&IxepytuF=Q0cjiZy!Gp4n>A?eM zli*K2s92Wa*ROW2M~gJP5j|nk`v|*aK=jYvYh?}96WWdOgy&mG`G&{Qpf4}!jjqCo zlz3)GN6=fS7=p`Mxa4B_#?%HS7Dz~^*x3q~#fsA*>7v9)r4PHYn>%=4(f2^$jJI}6 zDmoFk%b3!THf7NVhWe!k8A(SEA8_z}D^ghM?$#L%e)hE&wuI&RuUV-R-q#&a0$pLr z>u^6BZDoQa=g6XS9ZOte86VV&BJqFQh{%&RutfW37|!E2hu;LAc}xL8a8_Z(N2wP~ zmvknyKBGRrh_LmV^UikPVrCxhIAYEE+x(In?caH(Q)KPXx#OKO>@r2^NN2#KN75eK zSL~KJUhiTgC?@&nQDH`Ny*zzn6uKew(iWXOF=nooaWJED5Ce~4=x!JdZ=qqC9iHsd z3^prJwlCi}3J5_XWm1qfbcj6lo0r=-vAqjG&zL+1=ij$YGAi$SZv%lU9v|byOV-qR zr%w8y8DGSDi%mk(%QjhdkslC4;*Ov0osv3lBN&!IOIg(MQ_KgQeyt9X4I`6;kA3$FTE zSSE3Da_7&kg1J*~Dmlbh&gQ%_(2x(MCtQ}haK~!93j;v}Vi%Er&NgV! z2S2&4N6{0bwM5$Ku{D%e&{2a(-`>F3;H+9`B%*s{y?}~3k_jV!vH?Ia?1%~B1Pn<{ zT)HrqZd`+DDJc4!E>W>Oc)0nvosv-()96+RD>7yPlZ_fp5eh?}`JvJWdU1?8-#AR^ zOn=vGO}G1g<*}Qd;Mg3=l>%;&Q?)DP$0?NWs1A5*`~2!!T{4m#PnTY)5`*cg$Lr}@ ztQIcsf6}c9ntQT-j8`mQC9(nu)12aC(tR#8Yhd^wSTK(Gw$LlE<=B2_x_iQ%!p8Ke z7`3?H9SfbuSwI6@h@?FvGSxw^Iw8Y`rfC9?W3xDI7*9sNbY^aQTrVZDEzb(PW13|W zQdxsCIVP;DjiGXXfK%Nb*9)4a9T4#VwxDy$LZC|0d7lrh@%J?UpIjQ-+x(&L$4o8c zpH^pTmtoT3k!Bzb(8gGVN=C=R5Gk8LtU&>kicT-4e(}UII2O>QSh$0$W+quTIuR!i zu*iMQ7`~JH+dc5P79(l)_>kbv#p%AZkUp~zDu$cj5ehn@?4S&Ep7Z*QTM2!8eZ28I zp4KOe&xef)(6|g5i4dTal39uCnw@#U0A@pI2MJp zjq(NY_v;i&zqS2!mFshD`}Bte2=?BVSvYV> zjgrdJ226>B6JZM>Yx6Mn^33c*n^4VRCAUq^e{!*P4x-*OUSZu$y+$l>7RiI&JnX?i+x!(&QGi4SdN>ZRtKm= zcez(EG%jG@MKg!pp`$z>;!^Efuk2J|Moy~Y<*6xS1yi(mYOBdyAS6agvAg}&S9-GX z>Mgpx{T26g^l7%|08kTduI945hHs4Lcp~p&bdM?!DY&1u=NKCE?&*m@3gg|=EANTG zg|TeuVfS`}FaIkv8jf(bI6x)@bPLZPh3&y=M6$~)ZDA_eD1!?fy|D3FUkOCUYD7}; zvdi~%jA$>S4scaqhNboUem}AoKuWg=MZBYHKrfMTY-M=uVSNoHn<=Yc0AS;EI{OV9 zSZ%k&K^n3Pgs&R~77fV+OI`r#NYbQ8k!S4@5sN1WN`dmQ@$)m7+$0dvolPN2MoQPS z*xX%lRof%$Pd4~$^MT*5U3$OF-_50;e%k&TTUG{ZJXwC}DIJKFiTG%VQEQ8sxJ{+q z14`&1J~!5l6J3!+g~aTqJ2d!A+0+ls=4h-lsV=QCWF7cR3_iB5X~i&JUR?lk_j}2K z*xGGN%a!|<=6uGhG<(eVj2gs``MYi}OB?6C#1#VjJh2>kT$}iHPKYWroPhp& zSH`0<=R1ROlU)j4nK6Cv;CXA~9=|>%YvvChS#3evAtcJu{YULH#2=21{3DEAS=oHU z_|wm}?ti|~omSjS6{{D71x#rN%FI{=k=_V{jUik7J^SRh+{DP`52InSb9J^8*>z&N zxYG1Dmj}e5Yza-X_7)7GSapcVAe$f^NjENevQvw1Ct|9v3$-zo+8{SDymiXD17yO9 z^C=l8y0)pBmEWSL7yA(uRJP?>AgoI!H^eK^Ks+|tKq_F27)=cO-RE3G%(Is_GIl4N zxi7!Z(OGwC2ZV%3f#oC>^l-~E4VAEuM;*?~=SJ6p_EXpmB$0TT9}mPsNZRl?GgMP( ziDG^;3lY$*S+RxiF5?pb(quX>;Wb)%((JDvOmaAD0R;rQK{v zfNl<2{ACbGmRXKOXD{0UybSvACOqEjB7`bG?bX7d7Rc?$a9VK7vA`+n_dw6!Ra9Sb z&!zJR!GzW~4kMy-jglG}uUDoRn0){F`ZGTc76qn+N!ghmxI||mfyM-ITnNVmXquOJ zQee{im&V)f_&E9{8>f&TXgSP!?$Y1*sULd0K>v(j6M#zgw_yCx2juYUl zZ%tj!@d=O$U7;9ye72u{C@JZ9TgR@l_WV;<3_4ZBhosw5*$#peI!4%MNy&3c8bz*L z2^r_#v5?5rSElcsay9k^g{sVL+EZEeF6IPw=-*ViL0iQP2&T@ zIkgQ~Hb2~8Z&IzHGYl_a1CGSdB1IN@W%g&(C7M_ELwl}eAcvXcA5-rdIm==_>O>3; zrrO3s3yrg+wkkxcQ(e~fxpM5YfP@R6sMx!w0cf-5n&j7OM@ekdu=HlP4LO3q^&Y`_ z;&0w=4GWm}){+0!aD*o)QgCqHQdmS_P1BQ(uEDkm&FnJil@AA3fms?`t*`2c&DRZF zo?a#ESzN{bQJ5SYkz;Ug6h7d=Gs!;M2YTGeg<(9wA`0?%ibpZ!Oo7hVNnI5392pV5 z?B*y=8E*iQ((Nc;vz~v-JD2);>(A4+JVeCwH69rzuoE!$xt{WrqIH0_={Dz0NotKD z2R|(p%JjPpD>u7V3l0lpbgPZ1JPEkkHMx?PBNn%PZ$)b-Z^X=a=?v{}@7+e}(Y{+f zDd1}QbP>7V!9G2FxOVSBdsgU{v_O#Y5#Eq5tZOM1KPX%J~_lXy367=RcFZrIOrH8UxhJ44dXL9x&Jso1#&LW@$cO#V;XE?d!7RJ_*f zNL!&K$_XVgy-f>6WT-?y>@Ae#)I9n`wyn>iudOomWK|lQF>%UwoXF8@qOczH3c-~J zmO!?ifcf4G1LL{5mfQu|E$c<0*5O&Ox=MhQ2PXv{ma6q`4lB7_jj;R?ud06l85nF_ zG2+?kIc?XIXhJ(a!^R>%eJM_aIHLo zlY6Jfrk&d}>QOMbV_cI=EGBbuOfXkw^x)w`Ddb7lmqghR=&ezU7}$HeovOp|C~KiL z9wsr(bmL^}jE`t!s2{A^`F#SN8CK!@-u$7%^tID!q$41;x=TWI?P-^~31o2WKtxO4 z@46@$wZvdGGAg{;g~;p;P*OCDu%W2~a|tjLN+E+zbN(F^{qCJl1g-=ujoYP*FvS?z zy>eszUy)H*S%iEY>_Z7L9nv`(QeWxuUCdW`0zKDqvT;>doJY@Kk7`@Rd&W-+q&g#9 z-`jk1dgs1jAR3L63yr5F(_Mf}prC%0v8IRzOrO4lGYHSNeP#T(V;lABau@E9z1NOy z>9Ai3ceSNA`byc>CjzKKkL02#wsjY$mw1dsu7JS;0(gh^9-|U)BYDAB3Ka4pOYT z5K$IPyK=DmGLV)nxp0N6AhQb$2v~(6QkLY)&_z^k&kPJ_#NTdf%^`GTW(=QQ$)Apg zURVPP~xSe9)=%+Q)nNp(Av1vLvWkzEtd3oI(MkD z-A z`p4;+?w;$3ep8R4k#(PED!STqu?( zwA|mqgK)tx>$(71r@gi>6Qm;sh5t1UY#y=U&p+})8saIm(`e}kEQ+*$4T6j4387ug zmqNMSD#H{@LB0$(BhHWCp!`4%A+BBN|2bX7uf`zs16W-4F~Nq|j@W@EaW0m$Rq>XR zMr3qEKMSvQnY2e~O=Np9tq5~S)L2slj#T>Dj7X`Ikj%N5R6K`?Z*7SV6L>rN?C|8u zui@zFX+ozz+j=waRENc8uW#LD{UF7}i5IaNoJsv5W|4K}kV9YzwsRoaGq|l%rxEw( z_K(|N>pFMj5x)M`+c%askZS~OFj*o!lgFCtD<+&&EalG`-bjlr z|2%n#bjp_y=(NtAZM(_44}NjF?b8o~NvCzj>TMrVA*gk|_6cH6`+fz6{4t&y>GJ^v z3;y`P5=^?fNUhtDlkj`~k%;OI4X@sQdBeH{Ip>P43o8 zb`oD?C>5hfz}fUyhvx?%>^)`__xt8!%p#0f$oDQ~^kudu7q|2>tWgl%gaYUucs9@)< zEz>QG$3VO8th_CRkkb_FrU*k-)hf6Hb|JK+@p>V9H%xW=kLHN|E6ir_T$Lb zMf$GKslW!b&(Mns)V*&Fj#auFFFuWo*R|MMm&F=alu_m(W#9YCB2 zG>>WX>l^LYXJ!+%Eze)R-2>Cmy{)?=w{jmw#wS#+%Q+Sby@Ve_y+WDIZb6uyGn`RH~Peaq-0h_Oh^6CjG43%0$y?Mv3;0 zP0i~;0mgO2vQ_kVdH)n8*uB6fJ<3nFc6`n2g)k#}Zb{pH@9bjlYWMU`zvO(SnNb!g zkUNo4Kx3KwO5yzQHYXObJZv}3Fj6;flW~W;;Iwe4Pa&^2&Dwd?hT6s=~$E`3n#76yT)#P z{E6Q+R0Wo>)?-a%S_HYnGOvb>7~AbWgg!2UMOt1jTKbo`R9C4-PvbGW`WmEa_K>%I zgI(xOYuXj{I29C+NoL988No6Oeo7V(SHsTJKKEwRD?*~OXs<(}`sPO-GGn89$gq@| z$5Iyp)KqZvxUm24mnQeKthjWc??wkxe@eHvfLH;K=`MkR5{9?J_!`x)RT8 zMnM>3bPI-p$M+353>qp=D9`l$CDzfjS6c+y51pKTZ7r3wq@e{yho5hJ*aC=_xQ>Oc zJydTPYwlU+ddlrF9H=xBG@#gW=}>>mjH(-l=&>=j5yp5jGubN?UB;!l#1uOATlHSQ zGx{*Axw4^b(TZS{Ld}Fw34@UU_R(1sp)Wk^xc7tO{#d%O_bQC#yN?3BTRBixbHHHcNyWjQOGFp8UvF1d1VG{)X z)UtJ{MAgR@^|%-!P1f;Okc{|$xqG+XI@2sYtgedtJM2wL>NcDUUlhxO(g@8esk(cn zyFHl(b!N9DYD89RDwV-t^B|Hfo`wghR2RmK6Tk*yJF$Bbc#I?+Be3BF3F0^oasqPG ze6Bi~xqPlg<4j&s{CpCi9q3M;okgxC4@1)GrenD{jB^hNba_LDm`+^G_%yzK z$QWRqeCx~-fx@`ZjwG|U|G)nAfAz=s&pv5sP*vk~`zKplm6IG5OQp4(Ry*f1Qc0lE zAt5lM8v~ZKFg;OXXsl~$z9f;9)e@y15KXx<19&l*azGXwqk(3j8DdqUU`7lT*FS>q ztdDjEKwuytSs@yR8u{44n0FQ%oO;g`%yb6C7ZlCZ#RsBEMBdN2B<3kuNdmny(tPzBm1YR1b6dcibAW&99|gFWJT3SfhgKEdm6u|y zqTErsLbj9Ff`f=^{-p5+1%I)BLk?`a3%Fz7^8SCnxAOa`A^cYO(s=dBiwCRsKiA#nO_4n+*eu^=4QMha#^3whm9j?lVW`#Ex;(1UYrERk z8CV_P1R!NwS_DDjUC-=mCqn18W~1mt^9NoLlXoX4Cztr2pUs(0;#~B}Pj>OY*xPFx z_*(hip)=lNNk&hJ%`(D#ie+>1nn<7?JRIm8R{dcss!*fnkZoOVBeZd^>kxC9>2#Vs z$@ox*+=IN}kdm25;*xbxf)NS2sk%o7Gv{L6taf%l;!8m~~gqMudaYy(CBOm2kbU?x7b9537VF`tx z*?7%!sfc4RgJyxcT}QU^6*KIxGNY0Av2;0&-TwZ885wm}7Ce1SNFx}2tXr(_qB=On z7C&3x^gn8|TWeSD`e|ZO+TC-P606c0--D@u*rW$7rPoGlOoS(z3B9L(imgF#q`u4A zVaNhS*NZ*h0+3sxO%01n+ee4*PK$yn7_CocyU%y&%(MpS!`7HCeZ+?3)iz5AjcGrb$1YrPPMgP@Pdy7gy8ptdE-bnZ zu;rOUQ%W|ce|qwjkp%h%P`V<96VDtPnCM_jeTx^=m4gtCHg%ElZ9b9YcP3h+>#q#| zY0#qZ=m0c1!YQ(TkW~FtsTjk-8(~Wz4uf?=B?JN!I4`bt;A&drn-^vKcK0KuCFA~H zLP2{mQzZGRfVwN?D>Lb)K?m=QREgrv0md1zSrEwh3d?Yp@ie;kWUc;j5mB$Rcc)R# z+Jh)BvLU+5+hwp%`8k%LS>GNvs#6xAo9-zq2|I_Htv>>oSi#?v=i>0XqfC|WX+!W* ztBAs46pAV7-~yZ|rs$}DlXf%X#)5bsbD&Rz(Nif>3^H|b#6`}a3NYXdh+m!Y);I2F{KrWYya)8m-ntf=sIw0Xj?3{J-OZuBl1 zBfJ3Xgm+MSMzfEebT(_Nf*r4df-XTF$cLFBlh_d#fY5I#3&uY-sO!^3_5RpCp< zi3mcv>dh@%0c(PP0oREUzWTPDAJbB)Pc$a$D5;N4hCd5s;G4-2#UXEQ9layiiQJo9 zaV1w$Vz4s#

ITOlp^94XB+)rw1vR=Ak&$p!roWJHdADr2=#=>~#Y$qB^eRdauZXRpNx}8A?D4 zsMn4+&CeC{SbTJZ0Gds+keSr}D!7yGu0Q+CWv6?-zV>X>{}JLmcVNhk*CmrT*}cv#@s1`nhE?_<@S*@z89ti- zk{(*J#=ZsIAiz)nwUz*5^|(+i8PqPJNB_$6=S*j6)7~=IrUin#{r0#HE;dE`7oJhr zJ7e6-30Bcr-pdIxjmzZjnFKKPsA!izKRI^gzOd?oM7(AHys}x@Ff980YdsUX5vbv( z3vWEsVN{zJjw5AcXmwt^(h+_8|AvV)u>T>PEy89@$sEE~zv+H&!pN9I9xNXc|M&0t z66-qUppwgVPDnI1f3h~LFSrgZhDmOhQMk1g!T`3=ihQYWNmm(+Xl+MM_>7)E_VNKq z!u+am?P2w>0XZ@iu?-AS#X?wI_Zri@|NQb>=#F z0(UxS}q16V&7>zGO-T#@5t<)W-D2)4VKt znPx&@mY`g(#uY^V@bx-PZ>2uONIdiMl98x9cNrdCyZZCte#i=|sk zmv(7c=aX2p-WjMG5~W(CIcH@I@h)J)tKu)<-3HC>X!AliinMD9Lvo)HLsw+>QloyN4VL|NzE&nJ8=$XikpM2HqZn zL4nt8aO?W9R6u-!atoN+B%QVLju%Eu=Ic6aC^X3Lj?dBE1@dGtuT!G-mK^Q=>1`s-h#!o?rX!&nia50DUdDQ>T>a8oC!8k)9=7hOOU>+6!z`2j`Nl+(0hMX>jU^{X7pHVNG;UR{+8A~rkpIkoHK$?zbM~4-V!UbIh3OkK{SAwY zjCd0iZ7Ma2m}EYd&U=od5c;|F4|b=5$3n_?FL)PZm-0gz<*<8r4^RzY4%Gf{kVm7k z03oCGe6(dYt9>Ma4T~`aeA6$DPN#0pH{|M@`_DG~YF%7LQt!f2TQnD#ZBj6}zdSbN zt4|siAa2mLvm4W zO0q&tNzB{5%_sMHtU1HJ_D1lC3VNN2St>DZ!_R=x1B-&+ra6T?*Uqlh2=fnm>=~LK zN@B0jJV&Ft0YOCUAM)yZuqJuKC68my`GqO3q-@Y?by<#@m^y`Vu5#4+)r=jgN}2G! zfeaDo*8yGLX0r!76l%eOXmLT~@f0U8bWE#T-a-$PSt$!UfC?`~-bWaD5r32i^qZ?c zeeleKewNdG`FPzm(Aq}*q1k-QAN!~4&o(xhB3^p&;L)1>Q#kw4>XRq+OQX%l5B%$o z*4NAHOl_|J^Z_2>e|Y}cv+@e7(jB1cJ1hC6stO-i;UARRoIw4!t+L3C5_iL5;Rh==uqbOpa6sJGIFZ(n@Wd-+!erqS5Kl)}l--#} zbhRL*&b2?@y@WI9u`3=#_;^;u0-8YA*f6N-tLm!T^zZoeVfj-=1~;&Y!B%98piTKO z4zELg3{6n$Kn7k-Y}>@LT)FeZ>2zhqw~0BDILxV_Q-OQ!rUiav-*F5me3+6AYS5e~ zjE!W*q>jd1sss-T*1$11 zo=2Bu|1+&#Bnoz|KSTXBPjR;1^sWpu3Y{-t>%hh)UZ)up`44e z#*b%yDM-?CN-GmBCu?u<7B3t>5#a(74%FS>eT5hMP<_Zb5SAVX&~Lcv&1)Hzx>v3W zM&i@PWOxK48zn&Or@eYAH>9p_ob-%}t69Q`wZxeyq1#DoDs28#gi%lZZMH zZTv_K_Pup@QwViH(e0G!rMC9w)drU%aC-P-8M&F%4lV-dAmz#EqSo~4O`VdS5sHgh zw+LylE-qFO?mrQU$O!sX5~9F8Z=n2Vb`6BKXQDdnti;Ugt59hTK*80g4zkX&d-C-C z4N1kPPK~A9J<6N@sv~R5$ZUZPxne+GuP1ol4YjPSfve-mkj%n&S7@JZY+Rr?pXxj@ zfRy)e`of`&AZ-UiS;kv&y})=F)BsX!M=Jh}uS)D7pSXSudZ!RioMR1qFdQAHWG3i$ z;~`Z`Y=6j6`dTW?k;~AYqE(M?UkH~XS%2+A>tc>EubywhE}K?4{9@TW)cOZM0i=h5 z_AejvfD2b8*VW-hpdyJWXOecQz&MuY(J3V%cXLS%^??*=3onH;<1m^aoNjOKAN}?f zJr?T*u0tv3+}REsHh`zqS!d@0pTA@eh?Ix{(Gs_M1X7hE&PdtzwwkK%*O9=T?q=-- z4FC{H3OPYo*|%v%rBU~QSQjXBc1jIF@6Hj~qo(T7Hzb4`@$=j-o0;@{cSsTvV-(VV zthbBxLTC?aiubOPHk{gGZHgNOtyo7lNGv@0jd3vU9J&!ifg1n^R*qLU0T~?DVdz}^ zhHD>`Bd_te`u!f+1>8k6(NelzX%U3Z0Q995*WCi)NQH7*5$*UP(%;xCH~L0i#b$r% zzW1Zsw@=+XhC;928p>q248iY9Uv)^yuM(ne_Ww#xm;deCGWe>Nfb)TkXm^0_OlD3GP3Z5N0^qLuY1%^fXVr#VY-Sp_xHG)}=d2fS4FUPOk z__6zgu1_iKK5)(AUX%?zCIxw2OH@rwdBn6x+Ij}UF!GW?rgOOZe2pew#MT-dV`8Ho z+`C(!5A`lPhuRQ1mOXm>;D@}}uf?cq%isRcT5!Y5g!F?&u|f$-MdljMmDT3dCy(a6 z<4S5;bBaR7aF>@-k%bTURV3!$2!y>^xSh11DUw$Q4eCj@rimq!Smq<4C2pnzC<{YZP~ zhakQ4i65TS)RS>^v`-@N94226Oc`>N{6hGz^PHGPgSxC72XF>ZjJ?7U$n6VJ9-NyL z_lFNnZzi*aj&NFi&{5npUOhv!@POPRVRVdtGDSpDW%oMvy5%RhBaY7lnS-L=i>+EV zY}H?JnanYruF!oVI%ElNpCflm343@LalyvE^~kIuVpu}5rh&#Amq5cDQ@5LOG4sS~ zuj5)EXyMo2zY1zm!F0FG-eEY!o?kzLI2+-)SLTMqXC(8(EbEZERkkZioQ;KyTODV^ zqEY2iD@zM|!zB@U4LV+mVKoU48X8Gr6P$*!8)2hHLzgA1eAq)S&jS))0B|&ui`BDK zAjJz)ra}XS;GyzCEE(x=3n<~jFOFTEMl8zM+RP(!=qoU+_TVPSnUtJRE8?xQJ%(tr zTst>Flt12HYwc+ktwa&^4zkQ5n<_bPmxFCPb9nHbA&yLHco@VO1fVt|(yv=(9_!Zx zWdpY446|D#S_~>5yg~r-G8BtE+rrzCD6-BAZ}gN*%BucT9(z-a~Z4hBlD(FB`NyN3hZNIhh9L2vTwY`={D$ zL7_*s1qE&9gGA5)CW3T$nwxA%L86@q{2*+4J-oPJ+DB*8{aQh4ea)Y`0Xb~`km4dR zy>ZGY_4(1Il^V)usA`v0eKY!e{WCwdJ7-8t*PjzR8eYt+9t-^qbgio(PCxlE=`IX9 z`pY8CP=DM{ETLSF)Gl2S!Z>c+Zd8mNzOIXb)ZOB(l3z=%1zP68X`9ida5xIC+UH@w z(R0^~qt9uO^N7a5it_?6zpu0A4Gu~v=VDXd+MAxA`cpZ-VB$53gn$GkPmL2p&co_j zDfCu~`-WVJll$l|V)bu6FN6179-V*iK{dpo($Sg)1esur@K2!jR{N$fK>OL|!<8S@ zMVRS89=#dBiKbk)CTnrCv&zR}*2DPaw8Sdh+ZF{^q^{-`eqKZQon;9Sr=sqdfWY0d zyTUG*zNjMvjzp(78UUK+N)6JvXYK2| z>{3H{l|ney>X7)!1Zi%<&y#j;cHeP#66Gc*FtM6n*oK^PdjZIC@$J4aQMk(kjNc!z z{CGrRu>|J4pK;P~?EcZ8)&-T97wdu3bWD~rC?jOC>qof`*HDD`_GnuEcWi&M`7b>J zX9{F-3ZQHKc<9Wf{gY$c&G;K9h$d%<_@t}^g66wlBFe8D?b^*NUyfvmmT~fG3cwe3 zryxoSSYS1oCpi|F>{k@C`P6h8U={A}egdDG@)ll$43ux(9FUXNR~l)G>ygY_0eql6ZA*Q@)c8lk(FAeBkmofLFe&=ff$>24JTjxe?bK&yeA~RpH7pON2>apW++Q~D+ZIfKiy6#EZvli#~263$X+44pksVNd3TZyJMKjIoeQ}}W&AG~r) zB~&t!*I)VHwT9`hM<>jTq-+76$au@oqtj_Pe-!%^kH95k9%Ac$(L)jR#+*I8FIz?0zsr!NCL+X#1l2E;B5;K(~^b8stF}A z2Lu{XFE6SvemIVP!w{YU?SF$B~mjStfCajUF(p!9A7+1uZcucMu zteGyMfko+)z&l+gy9LEgDz8kq$S|ZraM&9N-D}t@ z-5P?!oE}JF(fE&stmnGx7KaFde}FN+%7qd^>P1*5JEyojc)#jy?+!LE{kIleTYO-x zT>%>5%W|-O@gDd%VOWWw8YpCdh8RX~4yWXIP=ui^FRdeO&%-{8b((#q#Ar~w_W#GL z+h@o-`+@3LanfLP*+|WqZ111Mkw_+Z9DE**IsCQgDXVraj>pEg=of=!U{f z41?)0)ZrFR8mj*8eEMpa@`&gy5-MjNDn!tE@hK{>03K2YnpD4F(CuT^n0B9j_dCDy z-QO*BB9VG#Q0#(BgudE%ACzWPLRl9WBR7iwt4LZWTco(T_^1fi zk74Ve*<)dIEURRx*oWYBsNavHJT`J^U{`z_saj$}DJ+Q=I@E&5o*2%MqZzai;WLn) zqRuQk75b@AM!K(Ol_obW9OEN^fevfZgLugsZN8eGRx2$vI~&+1D|Iwfg8ePvS)cus zew+U_-KTTic^;1;h7F4sr6)4{GVm!B`Q6VqAJmcH1no_~0@$c-G;DVCCZSIr@li!1 z##W>rfhP`Sj8x_cJX^mB#;_9iFD|$0LviLgVUV32qDL1G0cOf5xU^<$>%q|;VWguA za#iIn5=<^;8RVN%utxZy2ABvRA(JDPv6|eR89g|vPk#L4AJ?t4?rk!-lkuhacfSQU zCN#Ba;<~oN+*xEBt41fDiYFv|>E6llt6ezYk-I`D!NV?QoUD;)N|I#FNAUHZ{-XX8w20*=o0Z0* z)eV10iVF=uQ;#2uk~>c&0utRl>y+#pnziNea%#hP+=NK&^Y9a@#UG%7dX5}2nGcM z3v@yO(?3%c0$@gT-nDFdd!UxgJLV?kQfa1%BTtCVZkq9cV)EH@a|b7CNd!eHr< z?h`~f3qrI`tGW4(rwTwU0+<$o$OSMH+Oeor$abg}ixNjS?Q4k9?VceF_$4ac>m#jN z9VS1mVa@sm?1ICcmFhv#tPXEraUb20f6a4nIl3ikVXhV=%`AtRfU*9lK%MFUCg_rZ z4nF73ykXi0ANDQF)o{n2!ba2{K1Thr1PRRs0EVT-fqilRrG>k7?zBv(PdtYM?}sq# zGaU@TsSs^FKLGooUnpaA7C$|hD%O27Iw&&v0__Wqk$RzhU?7 zxt3bgf5p;qyb*U;3_1bdBHqcp*^g)J$eKZ#C7r&?Ya~VmJS)}lkTJ*v+?QGSEJYyD zss%N}w1Z--!_vX)XK0l8iP608D|&~mB=xuX)7hJfYdH-n-R6jb7V3M?Se9LLK|`#? zm&E;BM&U8}L%?JUg-M~oh>>6MZ9p#6+J@O$e3KM6$HLPK z^H6P~_lk%{4JnwP>O;6VGK6Ey5#$|7Ya44DGIOFCi0we7@?NA*`gP!FHZ~sDm$bKG zoqb$ZyD*$~&r^>R1Tx8Mgk02NN+ipSPH!1LcmHJiWqq!d%Y}|k21-(nM*zH!#l+~cfHrETlAqB{*fS4mN zN7pBZ+nxfggP0z?5!|-t`v_XQ1Z30G(l0C?7^r4O@#bDTp%y3zbL`d>YEEdcH2?k- zAu#CiI+JUqf&}T=u$Pt;N2xcl)xM5itUa$^0GSv%i^>1uNUS(I5R{4afd>x_uummB zNQD6(>brE6cM|qI^>a!!hhR0hTRlE$?ZTNp=U5`B84X%ME_AkQ5k77povL{17$B^z z6BVQDwr{aS8csO6G{-D@ODxO~H#0!`Y1f9C{R*7r;zgA?yrRL4?InGgP_pOn)u{32*^;fY4su2FT6G#liQY&4i-T zbMiaQhN3m?2Cg_dZfm~9FV$vZ>2nlK?w&!#sDC}89X#X!>svIxeoK}^X9dj^m$vvr z^%ERj^Xct7-?Lv?zqJwShU%X|t?2v;_^qs>9!x*maCYlwuHCeF9wH%luisiYsI+l# z{nD7yrI6HBhp?1p7J_uWVjw~AhU?x7DJ?%N+XN|oWOk|*hp51uyiV}`X-DDx?u$`@ zE=mJID%L;rjj7{3BkAV0RaHeFk7W@6*t6z_=y#M?4H^A2Jk!94f z$+DreGxMDS(iAQ-vY~#VWdC^H581XB}^> zVq6jIGVf!Jq%R#Z_zVM>{7d_IVH_nc2JM$*_aei6EH!=i;X}F_h%i@@0Zzf+1hx(t z#nLIVA46);9QiF;6I0V@Q78MCU_F5*sCTDD_BQEGj#lY}=;QGGiKmmYXfDCXQinCV z^iZ%_QV54J;cpwN=vbtqA+?ufbq!s+xQb#5BXW@c#(>r66-#u-217=?!Y8kdjCnT6 zMwb-1{~)$Nx?_~NcXqgLRm`o4k{=<*_1%R+KtVsD)=3ToQe3b@PW zB3c;JMgC^nBgCj%=h2EI2=h}7tRlhz%O3?SlpF1=?z>9UQ>TIM?f@z)M%^Ltg~V0; zo0fy)-Kei5Kt_6E$|(2om(Lp#HmaVQPt}Yj*y7KO@AIXKN?3Oly^njfXc%* zv3wKj)xRt;FdtiM%Ah_KAOFOY+YirtCC$q0 zR(FCQq+5QBKQn!giD1xe?nFFheN-Hn#fEt49>M~ldn);8)ul^Z$ zP|{jIv7lf5TmR-){|3#K%BmVdAi|RxA_B1HR0BOxzj7V*!$?&O+2Uv@XUd6g)oNbc znpUkG58qNr9k0NUr{ytoRNSvRLWJj}&6a z8v#J@fs7>{02MR(F(w!o3geF@b75JK4FE zcv&$5Z@=7Y9WL&ZISjOcq`}M|_iU37XMTV=X)dGg;e>rWK7VHvN=${v0AjiW;G-QqTDG`g57=Tt z?hfxG$cYi$`c7b100FH3km6WG)b5SZj#6FM4RfDmaoMIle>+P}+~;Id&(I?9X4?%= z-;{SxuKfVMVFd;nmjBTItX8D?&^N3>vCKIq2!DJ>4kk*#h$g?P2vV=?yd9Y>p659)(-1X1PamSB0d+8S z@G(e~jTkKhO^i6p@sSqM%)Po^S($_eNq!n~rlkjf!+@cCzEj_54wA8crF1Hqf*zz! zW;}CE1XG4LtdVQLf1weHKMs!3Ebmc=1L&fgOJB}7r5WAzG6r* z{JmI|Fl7*;d%|I#)&w?DscgH{K3CEjrLQTCz21Q4dNX2fBDN_ z{GG4=i(lC2?f7&L4hH9zDs!~QPOQLvi|9)xL1^ms=g}V_@uC&t3F-qRevDesm!Y|- zhiS=CFqeP zTk5xU^8%#1Rod+<6GLxrjra za(#k!V}bSZagA_Ex{U|-*4a4|@jYHRD!kzbV;T@MLQoLFX2dE)P61sAj<2+-O)G4y z|D^bjfPl2$7)^so5e)D5##01eYq@jqpqj#{jr}U0?%$ z8{(B(fxjPCHMCfAS8nf>4qXr*zdW_k(DgFJtQ8;#vt=S$UB}MBr31zhNJ}-SDCp%S zmg-%Up+IQ?%^g^beiCx;2GHezK*+~$sFGu`|M3!CSoK>D4PGx#4-ohBldi$1Yc^C) zXI$9w5fVY)kN(IO&&qkP^lr*6RC`<4P>dVFA_Ozy8Pdb+s4uvXKJQR+G4ea5i)dv?a$vGZJoIN zWmO8R$2*@ek;}cDSPDLw!;6I|*0MVv7kM)rf(vroT*>bTyBTWKv|D^^lV~>g1@nZl zfDkJ$8OhF|?G@jakZCx(xdp-$9yqPO@ywEJA?G2R2vGC5>#q>T>()b}Bub7>Anva8 zl}?pj03?*DP53Q~=B@n6B{hzrMEjS!hf!%KiJm-048p?jH86t|LI&n_urq;Bud+eW z>EJo5FLJ{47RU(}x9$!`(SLY(pm;vCLwhrH+c(wq#pSv2^zL`-i~Hg=P^TdjX4sbc z7Gx>sYLOfY&(eMP424>ywjH_r&3!Cl#noplG&Fah1Cj)ZYcy&Hj{{&+3e^gN)R> z9)bAENRu8Px$?*T8d^^U=)2H0A@Y={YfJXCS8O?-)*6sKs={y+q2 zwxJ9%v@tzDPzKQ8<5k3tVBK;*uAbpIq1SL9!|Op}SGw^^EF6$1nE+Z+Yuw-~12ydu zoOUG*Im4YcQHWcYtosallZ%@QA0mw~m#rb53rB(|o-Y7h=Kka$G4wQVbBX{;VZi^v zp`*DSBZQ;v%dhIlB0@XVKJ889A}AofsLieEkwZUcJ`CP3dN~|g8jdv3Fz~Ej!vaFr z^g5m<7OlU32}}qHPIZ}Zaqgg5qLM>8aEX!to|upj3mEL#KI81#?nKUtEPcT)e%=WtWPo_Xl>H%+m@T% zA1TXi&=3B`_QBaUXh|?eL|UpQ!Lj?+ha1sme(l8*dxkN2jviMU`3Rn9eQqIvMZ_~I zrLRn68(C7f9T$UAxPA=VZ0QPLh!EoDDHtg0N4gitd64!ZRvxl_*Fm z;+x$b#Ddu!2m=zav=x(SvAjg^%PD;okWJlU`u4Rn62mA~hg8k-S~7BSOE@{lxkVT6?PCk2NKy#vZNIra$3jm`;H>|j}3?3c-v)w=nTk{q#w z0q0uiwhT>(y&WOW>t`Y2(4muQ^&*1?1JhT227(}6th*vkE^zmuE+QSQz+=i}#F8Z9 z>{3b3Ac@uyD+NSEB<27S^<{{OO?=31^P?hQVa-);Yr#+#kXWB|bc|d%a7#KoI`!Cv zb7cilE{fM*UBvgl=g0G{wT`Sm_dwt62@(MLb4&u{UKbgDE5j^=-Zuh$!~p%Q4;x(P z>6+($$g|`xlG(XEwIE2nV&Ga1)JeI{TqdUbCq+)JSiO0yWH$~*{Vu#Wo$uVZFY_mA z+0cW9LjUWcBj$v;q&4X3US9-*%3P2?vvFC#u7#eUv4VzVX#T|$&!7?ZQ-@!PgS5#g z`lgXC!7@4w4@QSz=&xupwkvC%7I9}02zo*ZeCa#B2&GUG__T)rdWRXaqhf;C`0)wc zr0Dvfy^l|H$o9yYA5SlLL|s{8m_JkZ5zv7gsbB^PRG{!&_U-H%T+x%Z<7LQQ;BP?g zXCW6t8WOit&QV}fs(4VaBx#9$T{euyBdvX{P`ewc>)tYV=YLeu5!PqpiP+P*W&IJT;{`-cHUK{`LA4G-3-5TU zdsqPxhJqdCwk<#qsdb;rY}ziQKQDMoPcBZ1H_6<2N(9Fo%T>-gp;Wslg~}C=yMbed za|kb*;W-N%%U(|vU;T>}V|t*r+H+(^ZpIRq_!870K<*dO7hTz(m?TP8&>*|YgU)Sx z_YCw?^_Sg~vXlG#}h4|MeQtVPDGHvSjU0uNVf3sX+Lpo&H>RzEqol zL1oeh4aRRb_TB(dZKu@bB;hoz6W0Y(0sYP;EP49mTCou-=lt~gozm>6 z+Wp3(=TAN<8saSIhM_WYnFtp$20TWUVRGDW0Et{1kK&}Np4kHG3gh6reiNV~6@ktx zC)zq`0Wf`DPJ7(|tIwf}xX-W-r5~I|AQ5w^N(YC3?@Qwas_FIzzkB=X-TLXppG@CO zHxjGT1em#_-Ed{wf=zzXN_2cwLUjWjKbm%X0*6wU%2zzb%LWuG&*xEdUQ%s7|<^9_$qcH zdkSSqyd=}r8SDi(GEnJtMmD5R{iWUW-4i(|>F#Lu)b}>3`l0ot1~ln*c~i{}&?bk7 zn#n2xxxksQlhwj^{f#rs;=MJzI=`sFR|6|P+THc&8`n2!oQDUrF~=`09oAyio1%K0Eb$m(F=Ogtty7TdEA7>&Epq(-B z?s$oee)zk;Rlfp)FxX?-ahjyDfEfVRp{V!Fi#TAa0zzw@9(K+hdkO(;@9m?EsXiKm zrD@uGciZ}hyfn!!nY=uBeSl^!2I3 zd1K?r2R5j}Pm)f7L>0L2b5Amqs{0-jJOuAroyp{BrKXa(V_l%@pKPrFnXdoP<7Vjf zPON1mF!xopz|C0Nv}OhXZwgWmz_9I4_{&mN=n@Ol%f8QfQDO#}uVmuWX#mL>s^A#K zea{dm&7Iq~T_hU23G29VDPrXmgKMnv+5ci`U>Ozf8A2BsZ~tScx73BKefN>z(T$;| zd}*kT%^;w~7Lvm$1rlAqS>{#93n^pt$Cb9eb|x8giRP!#8^vddL!Ii{`21vX43i6d zKz9P+=QMZ)Baju=FdvmvjI`B&1rZ1es?e9kR!PLX75a=~%9B{Ncw_0v}#*O?9%-rfytyumq%()mbr?dh;dyC5@Q968-{yxYhtuc8$aD8 za_m9cYFBuj@ikE4AZll|MYOk&Pf?tWLQS#A5y=tiNb5ri9U0FIRWHASi};XP9-aBF z;0dd`KpuAtyZbDp0NiVh--%RA-6{8+9e(+tQ+1A>?r#y>_Tp zf>X;`AnZS}PuSfuxwmgUV^PXkzk~3h!v1kJG{z-cKfo8M76X2jhh#z^E_V+89_S*NHlc-%PfC72C6gF2dc z2frByx`)mT5bx+d4H2EPtB*sTL&bQB0%FdyYhXvV37Tne0V4krLkS@s!7TP|!f~Q4 zq1;0#)L_mq{$`CpT^`^Uh;KlV7Ksbmt)oR%SPfw%BKn~o4moe6uV&PRob;JJ@4y6p z!Vrzt(;}Uv-8@xOzFaLJDV-IXAO;2>(eJqN4R%d9 z#n>n~0j@OYDx%B1y8Lh*Q`9$E2SJgmR}`-BdTNZ7bc2D1ap{Jl=w8@S2#F&+!em1U zfi0~12^u4k04yh!qNzv&aQf160WIFG9*Dp~rE*!zGq@Z@%2x-W1q(Wz%if|vS{0Oa zT6tc5QE~|q@sm~tb{WmMK>$pGJ5*C8v2}Us0b1h*(x!?iHH8FnLe0&TI8oj4<&hu44i2io~D zib?+a+h6|&|Fv({Gq>h4+iO=^XzDAY)mhTKF@kC5=jv61ST2a}h%B{n8tkpUfK%hP zbcpT3Jgk4TP@@r7<;+6WaMhrOp>XX58m^%W*|tJ6_~qZgB>uZQn8c^}?+5tLCiFx6 zXOFd;`P+Z_%fI`-;J^PC|NRU6_utg_Ve)_XU*o_3v;Onn!H@qF{`)uh@BhGm_UZqz z{;7QgxR0BXQnRtadMeebw7kJ{>1bp`#v0J1E>FDltE#3tgyV^3g~9 zc?LCegTYZ^#P4_Bv^7`a=hvkJMS>kp>@&eT+OvI;KN85jf!=u2+Fl+`>^&kFy`7`_Ib`t;$#Q*+w9lNGs=(Q#SpgjtrljO4)DdHR4 zby!dcFZjcvA|YlGRtpS#dPni+2K#?lzb;z?o^XORQj!P!BSa9zQS6E*42B@I(P9> z&*|P|ooUvIgdKn8VQJut`K~tLYjSM|KqzdRQ>Ga081)Z8>3YV#KPjFZ7C>|V?%E4m zg~9^?v-`|-dW~Ar#|W>6Lr=$xy9`r^JT$NfYxDK+E&0VjAtETbN9{PYu;%O?+*+~> z8D8ZHo=@9NIpRg^2b@vdnOtiK)55BM4rHeTCOA6Gl3OjiG5^aeo(kLJR-}rYJ-xmDV=JJ+nNI zbXelZM>%q6*O0F8hk~A!Q|*w>+xM6%Bo0^o&mPpB8$DXz^qFYaE^gZNtbU=LgFk%&^Rs(cGojL4?@tRTHLn`X~cs_HhqmfQigPOql%>)t&BPyhE zVx%7l?vT?mAXiaEuoMvd!3w?baY#jFeOWSex6Thpe}`KPDL%gzdR!Jqhwo}q!xY7; zi)9#)R1z~()M3&kH1e-6XoboU)KOQZfvFHe+~S!PFsxZta=U%`V*S}89~tNi>rV?j z0X&mf=t>V`x7%d<>~Q7xjnLfp=-;jX{|27=#}*>_V~ctIE&t_*<`kWu9~PgatY&4^ zkN7nWYQ1cVXrMpZb$0Azic7(1mEkU}7AKXDTLQh_*+n62sIp=KXcWr)XZ8xC(;s~< zew2hSvK$SwLx8kfDd~j(q+nr3RQzm8Cvh+oUag5p-F3R#$b;acioi^PV`5JTn{lMrkD6KA+CIg+&oP1SIt&D!a?65W;mtQOb zr!_*DyUssU&g2~Z#Sms9qE{=^SvUFm+tOHszTIXy{t5XP#XGHbWY$Sj@!Gf!|gfaXRRY=zS!s@LYqTh^6zp$qUh z0a?1d4iX`tg_##z`Z-1pppWHC>%d|$l9`^%1ZPlgj7v$@5K5`b1-;fHEXp!;-aElu z)1Tp1B0vacM+=9S^*G)16`T^^!9`qWhEEUzFz%}*cm)>+z*k7<5j;hj<-7*GVD0oz zfJu`uq@ZqRSBsxnsEKYP!5DfoCS=FOnFEcuJ6essxGtHDiO`fuQGu=VjSZ+S%6o-M z6nQQsm(XlLYotXS;7TIrVzpnsCh=00_<&$_i|Q&ce~NW1S>xuF3fA<2Q?G`VVaaN$ zV3fF*5EQq_QqdNfjtcJzZ(hXf&z1(c0ao_5B^ds*1M9uEhhoH)xSisWfr5MI~nYVC})$x=%tFuJn!^ zRJj1?kE-J8F^MHeVMb$iEdH?FqD_QZV(7@Pz+X35XC1{%KC1=q9CL9K!G7yUv7Z(n zHY`{D#pKqlLD#+EtfLR&l66sqMD3ghqNGRA^5=*m*C(}j>D2XiXZ9@}{47t`E!DmI zNo~>RUVn#Ueay19q|d1>(EUt~wM5=PmMoY+q3u=_8ie+;))YLTv9Dv!qz)UhS@PBv zj`IU*{?S8F^VJVrGh`Hy-G`C!18XcASJu~?-G#1s>d86mjY@L~ZLXft5UEBOP|h8PX_Ue}ym{Br@YJ3vV043)mk~j10rQ|<8AQ#JG@){xH=eaUF1zhK3CIGBo-o!kz6&1_ zv#h!raif$VT3qJ3IdnoLgQ-naz9>^&p!9kMNMU?j&JbJ75){4C8otpy4G6ODxD|TTBZ@j?Pc&hwyW2NvZhCh8%%*>mAnvA45z4AN%;@ zYQ%u7q`!xoSpBs*oGfkV3}}Qd2AubkrURe0-uMG5gve+t#T;U1u|gK$yG-l%mu_vN zJKmuc%(zuO+|O8dbO1Plv1U+ccMAY#HNr#P_r)E*yK%oh8A`b5G|jF7rqr*qbd{n) z;E-1^q6<)!_3N_6uK56!_`oKB#l9{t?oTb#9xCdnPsGI;xo2>JZox#1;Jc1%hy_IM z6^@B7?Y)Q3>rZ)UjSsfI8{s~_d)T`^k&ib49M|hIU?t3hL|8{ZFX#6-C`BGW+56cA z5Ds+FA|g7%I@h+SkS3k4xPKyy-c%Xw%pn_W|*qc+T{-?p!oN@K|Y z>RqF_Tlzc%?DYH{Zd_3FM1F-zG(;n{yTSc)CISx`-sz*SbirpPkKeS&SJq3;^$2xj zbwvivJoLbb+$m{nP*50wj7w3Zta`y(QrD+p?W!o7EiR8;JtU0BHs(p=Aq;75Ii=0$ zoPC_3g{7Z**kIeQsXO8>T-t?$hCUV8JJ&1S-T_j6bfLq+?qFaE=t%`ONI)dDp0HO` z|G5--1cS0J!i{2RBXn{pdTB4$4Z!pE*_7m~mIJ36yN0N@b(ple9hyv*qm>`pJt!5F z^+nC@p5jbl*cb>6C0dpTsvqO3_At=mGKjsF+nKsgMP6jmyVxz$P>Z{`jeG0b}CQfW8u~j9p4lusvk} zS@@k9G;rKraXQ<32!_a~cQw>KFA<=+1GvWuhRgnCc(wjfkw-U@t|JJ1Y(Rx=3rN&& zBxy!0cLliX-96^9K^l*p@ zL~#GfKQ1$~-U~O^>ICvd(Hw#2w*ETZ(-Oe8l!E!+qc;xEBg~~U(i4rVqU1`HhA+EE z0b#%Zcs3CRB!pYPn~%CqzIPg4>~HT>3w4CO*S7e-EV2Ts%KER!P279&*}b*ZC-v8e z{GRRBYXsI)b6+=N|M>D8p0rzD-7<`L-aYa95u*0~cq-lWM{!rQFQ>4ld{m{p%vG_u zBQF)Vm9cw;QqI_7kTS5AEcGb^@K6$bG-sY2k4QbZX^kDM`l-mY2iAcqq}e|@s^%Ob zX``3>eiE-n=MaOKDSYRJI@7?DPu4AZ4G<`3V%)~M_hFR5TdVOB>mmBcW5fxqAmL0) z{lnWd2DN1{UFcYSlL3T~U`eCZ#mEJ7{TuXLRNXP?@JsPJ-=P|1#b0Nm@o^=F(HCJc zP&l9ML=l44BPN6xJ?>-Q>_|)-3~2mf*94oleLfayv;(NPsGXwy&P-gX`}&{!nRq$z zk3aW+So}bwPP{*oCe!*GNwC`-gW#r&tqv%CM*TFJC`&xp#XgUVUv;-Aar~{+0(bxOi9B62aXgC z^(hQ4SNJ34+YxjDY(cQlp_Z8-U5FN!4qh*ty>6VI2ge`z5Klo2@1}!9EXysFuoX5l z41nrqwwXuIC0(Xy7V4of!=$M|m&=6RV5~1~dv7U9I<%JI*rc7>M4KsuVi4O)-ka1e zwGYB2${1?(QfxV{x)fc2^NEDUSJDzG@5ASgzjyogO0-F93;({an(?K3^e=rAF#{%` zK-uRmJaQHb_x;x~6m%~*CNo_scjUV(*?(1*SWzXhRRwV+HF^~Uo1gJsL6>Z*H~?<* zHYrh38e({58U`&0qcRDEj!aw1o_$dg(Zrza6d?hSgwhYoCllG!YD;}#_~pAQeSn`a zAIOEGLWmlL5xq1bQdFF~_1TnQy+) z)eS7IBhBM?zW-ZQk)yh(g`Qy`Yi?pq z;w@kHTb3I)d=yq0*R0!ce4`a+U#24e4rSPCjuR8>mNWeeFb{R5Io=VT;cL$t%qw^Y zqqV*w1%D0H7Aw}HZv`Qal@MyQbuwc_Cl8HJcB{i+aFT8V^d#iz(u@INkQhSQd|(4A z5Y<&Ke@4!70YK0oZ6-8AN<0k7AtrY(4^iebCD6J5SuM%0lb`3?afuKO=P+W#v6($G zc4sP@lo$?_QR&>pd#jsT%%SY2`KVO0NYw|MlzFtwqsh0>x$FuLi*JdpCe&L5aTa<) z8E8k_FxlD#x&DD}>=5!E;jp-pA{3TkQ;0^*2?};6Tb7dW6)dj5|BU#6oTN}_8b4xW z2=h!oF8d6#e6su;X}pN-$KV?D5~J_(@azC;xW1vc52JH@{Z~4?oy9sU9|Y9V^1YLj zumAKH^;3vL(Uh@rzh*PqZP4q{{$7i~KDP}C1|JDtN1K*1l2sjGxhzLQxekXP*0HpY zHZ}}qII3q1%jnPJS7s`UbqYZii%j_Ta|9_uI{_2485;HSvv7LzRAGk!p}6&*@g+3o z)cT_W6Zz1|OiN=ey%o6wgahLS?4jzSDPY1U#dk-aZQQNjG@sCFexlTolG7XdP_AOD zMuK)|M(ZqtO0Wqo#n=mPIJHQU%QYQ6eX&~KkGfgpBJ0md?y$hTK~qmsm|DI_W2m)1 zxzy+;rQ09CAUu?u1Zo^m3aYYT!SZNx4FHM!(nR?UA7c&8QuC<9a$5k z(n^-2xCW(#mZYb;BP~R#I!<)Mt#Nx!0Daaio<@sNr$EOrq&M|V9cb--(8}53=)^Nf zNps(!XX&{qMPS$uU5?in1VcK3l4x=sQI$p)5N z8wPkg!YGYV7uJWHj4gl1-+%Fz5sirXwFp}10}5covsyfhiW3i;G7u&4(gm@E8iPy2 zvz~f{30kFl3Va>+7V^Wgk%;XpFO%72x!};yUopzn6HP3=|YG zz#yep1J&nJmi_S7uz)ic&9K#_e8U{@(3#}or+YBzYsusgxTn1}gRxzX)<-7ZqK> z_WELtq?zr!p)(?G09TF*w#75^k|*trAQ|HD&;v9-wK6yjn1EXZrR}3ELZ>z?z;UFDR2nU0h10h9jmHdzMfnqy z@S%&AMv%9H(a90GB&%A=e?6v3H^^N5bG#SyHPjHs&}hImmkRZH!?DZ_OGY7E)cO!$ z4gtMjVV8Me(e~tDmOTNYWVF1>VgtWzOzx?jQqwyePsVLQJgIYtp4{87cTP?m@=(p+ z*FIl`TgT@Eb(#{Bizi#a92soaPi*XA3dX0in1XSrvoZk5j_V<#t<(%aN6GB`c@-Y;V8*1L0GCb^@**c=R$=bKLfZVQN0HG!_81gs;Z(g4?%p zC6ZOb@^q`rScaK|;xuFK=Apbgtz=|KZzhE^0mxzR5}@8X`1gu$6zmnbuu;@5G0L{6 ztGWZSugr%qEv9`N|J3j}K=1npS=!Ws=9=1iq_ib!wk+^yT53hS0SBLaDO>=!Q=~iU`h($|h0~HKjDkuU{qDu6b7loIU3)!dL@z#@knJ!}#^? zyHYUe1Jvc8&~3mSar}Ti_&!k+E_}98e>3#t!u;r7pg(0LkgyW-{@+9Ok80!0;bT0- z2rx>gLq}i?8E8f?S3l<>GJBIQ*dbjh;vg2-tu}+9o@BEOLcVe_+vR8?#H9v<_u+*L z6qhY#6@bGe@aY?oL5c#NB&;1QZyf>YB5NeH>+U{ZnJyxZ3>g&o;S%anii0H!w*HcPFHq)=n>7^7xdwhd{$KySzf&L5-9+!r7255*VxlBv zLV5Fa1jsY6S2cn5UNOtRu?tmK`%TUcw%bIwlz{N|d30DE2D7!--Hu%vRiokh?QWF< z%=%O-x~Z6ZXzjmY7xTRTv(FY9gIfqI3g11#ck5HQbzqJ~TKT*_5ZS?{7qAUbSQp`j zkR7C3r@r(3@ns4OTc1R#d5dH{WKKy(cu1mCvx#+junZT}hsD52b$kdPxhBK(AxH9@ zXKPHlDU3v3D{9ABBJh3}=O8XDA*J<4xrYBIZ5G%Me!z4Qd;@r8CmGj!V?u}3b|ZMrDrtK8K;kM3=PlPbwu$% ze4s8koaoVgTB7M9jcWfHgCC$5<0SQkpiV`;G&W_7oF)=Sy76#@`RNScsBYhU8yIfA zJ~*9JF^mF>I1iLgi`n>!Fv=-m&vB|5UWhRYR}`d!E_!;f5x27SfCP`tTc25Fy65-?$UoS_A6+8OO?smrfCkzI~I3s(Sy*Mh==KP3>6L2L{s5q=e)Myl!h{^;7H0P+^V}}+y zyx~!106}7B9x@4~5?jtAhu#hk!0*DcsSbiHtH-lFXEuE65AK>+@$wuQP!LdNQ30 zD`+sI`VBcg&C9jT$Fo~-4cH?~0%L)h9=@@S;2o4sVlV{LC_ZHv0gJ>}(ZF)Hn}+i9 z*YJJgpCM!t_xsq&TY^-uJA{$8?;buV_D=|*=y9>(O8>x~X6AMK^iClOT^?Y^>JFf^+t@x){qF3gV0wUbRP* zhoQiCa-o<~!U0Xy4aVX_5rt2+OJ2PYACA2^>cK;miWgD`^Ry8&);PQY-HqwH&J>4@ zRaHH(bbH18bUUWdS=R3wR5TS$FfS746nWt@3wYL5n{z7+D3V)4>1kBx0GC>d=vWR9 z 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

#5E=sxd|+$5Up!Hav+OIn3># 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či8MZF2N~)Fe;-CqbT?_I- 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Μ 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

;qa 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

r)>-%)YBtmR%pJ%CQ-x}L| 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 diff --git a/spec/model_spec.rb b/spec/model_spec.rb index d305b5f..24a1b47 100644 --- a/spec/model_spec.rb +++ b/spec/model_spec.rb @@ -1,8 +1,14 @@ require 'spec_helper' -require 'objspace' +require 'memory_profiler' describe Ebooks::Model do - it "does stuff" do - model = Ebooks::Model.load(path("data/0xabad1dea.model")) + it "does not use a ridiculous amount of memory" do + RubyProf.start + Ebooks::Model.consume(path("data/0xabad1dea.json")) + result = RubyProf.stop + + require 'pry'; binding.pry + + expect(report.total_retained).to be < 100000 end end diff --git a/twitter_ebooks.gemspec b/twitter_ebooks.gemspec index 1bdeb4e..baf8efd 100644 --- a/twitter_ebooks.gemspec +++ b/twitter_ebooks.gemspec @@ -16,11 +16,12 @@ Gem::Specification.new do |gem| gem.version = Ebooks::VERSION gem.add_development_dependency 'rspec' - gem.add_development_dependency 'memory_profiler' + gem.add_development_dependency 'ruby-prof' + gem.add_development_dependency 'pry-byebug' - gem.add_runtime_dependency 'twitter', '~> 4.5' - gem.add_runtime_dependency 'tweetstream', '= 2.5' + gem.add_runtime_dependency 'twitter', '~> 5.1' + gem.add_runtime_dependency 'tweetstream' gem.add_runtime_dependency 'rufus-scheduler' gem.add_runtime_dependency 'gingerice' gem.add_runtime_dependency 'htmlentities'